diff --git a/OMDSServiceDefinition/.run/OMDSServiceDefinition generate Java from WSDL [package].run.xml b/OMDSServiceDefinition/.run/OMDSServiceDefinition generate Java from WSDL [package].run.xml deleted file mode 100644 index 889dd260..00000000 --- a/OMDSServiceDefinition/.run/OMDSServiceDefinition generate Java from WSDL [package].run.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/Maven_CodeGen_ReadMe.md b/OMDSServiceDefinition/Maven_CodeGen_ReadMe.md index 7dedc08e..d8381363 100644 --- a/OMDSServiceDefinition/Maven_CodeGen_ReadMe.md +++ b/OMDSServiceDefinition/Maven_CodeGen_ReadMe.md @@ -1,5 +1,5 @@ # Build mit Maven -Build mit Maven 3.8 auf Java 1.8 +Build mit Maven 3.9.6 auf Java 17 # Maven Goals Mit Maven Goal "clean package" kann ein Release als ZIP-File mit XSDs und WSDLs sowie der Dokumentation gebaut werden. @@ -15,28 +15,29 @@ Nach der Code-Generierung müssen einige Schritte von Hand durchgeführt werden, enthalten ist: 1) Server (Class: OmdsServicePortImpl) - - Add a class annotation (above the class name): - @MTOM(enabled = true, threshold = 1024) + + Add a class annotation (above the class name): + @MTOM(enabled = true, threshold = 1024) + Add import: - import javax.xml.ws.soap.MTOM; + import jakarta.xml.ws.soap.MTOM; 2) Client (Class: OmdsServicePortType_OmdsServicePort_Client) - - Rewrite the OMDSService creation like following: - from - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - to - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); - -3) Add import: - import javax.xml.ws.soap.MTOMFeature; + + Rewrite the OMDSService creation like following: + from + OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); + OmdsServicePortType port = ss.getOmdsServicePort(); + to + OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); + OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); + + Add import: + import jakarta.xml.ws.soap.MTOMFeature; # Fehlersuche -* Wenn Bindings-Files fehlen, z.B. nicht im Pom deklariert sind, werden die Klassen zwar generiert, +* Wenn Bindings-Files fehlen, z.B. nicht im Pom deklariert sind, werden die Klassen zwar generiert, aber der Pfad erscheint falsch, z.B. als _0._1._1 -* Wenn die X-Path-Ausdrücke in den Binding-Files versagen wird im Log nur eine Warnung ausgegeben, +* Wenn die X-Path-Ausdrücke in den Binding-Files versagen wird im Log nur eine Warnung ausgegeben, die Generierung scheitert aber. diff --git a/OMDSServiceDefinition/ReleaseReadMe.md b/OMDSServiceDefinition/ReleaseReadMe.md index bc32231c..cb5729be 100644 --- a/OMDSServiceDefinition/ReleaseReadMe.md +++ b/OMDSServiceDefinition/ReleaseReadMe.md @@ -13,18 +13,6 @@ letzten Veröffentlichung zu prüfen. Anpassung der Versions-Tags im in den XSDs und den Kommentar im WSDL. -## Versionsnummer im Pom -Die Versionsnummer im Pom ist zu setzen, ein etwaiges "SNAPSHOT" zu streichen. -Das Verzeichnis ist auf die richtige Versionsnummer zu setzen. - - -## Code-Generierung -Der Code für die neue Version ist einmalig mit Java zu generieren. -Es gibt dazu ein Maven-Target. - -## JavaDoc Generierung -Es sind die Javadocs per Maven Target zu generieren. - ## Überarbeitung der Dokumentation Dokumente haben einen Kopf bestehend aus: @@ -37,7 +25,7 @@ Dokumente haben einen Kopf bestehend aus: * Rechtliche Hinweise * Inhaltsverzeichnis -Dokumente sollen im Kopf die Versionsnummer tragen, damit der Leser +Dokumente sollen im Kopf die Versionsnummer tragen, damit der Leser gleich erkennen kann, zu welcher Version das Dokument gehört. Der Dokumentenstatus soll im Kopf des Dokuments enthalten sein. @@ -47,11 +35,27 @@ In der Fußzeile findet sich ein Copyright Hinweis, der ggf. aktualisiert werden Wenn neue Methoden veröffentlicht werden oder der Status von Dokumenten hochgestuft wird, dann ist die Excel-Liste mit den Methoden "VerzeichnisOperationen.xlsx" anzupassen. +## Versionsnummer im Pom +Die Versionsnummer im Pom ist zu setzen, ein etwaiges "SNAPSHOT" zu streichen. +Das Verzeichnis ist auf die richtige Versionsnummer zu setzen. + + +## Code-Generierung +Der Code für die neue Version ist einmalig mit Java zu generieren. +Es gibt dazu ein Maven-Target (bei package inkludiert). + ## Generierung der XSD Dokumentation mit XmlSpy Mit Hilfe von XML-Spy die Dokumentation für jedes XSD in das Verzeichnis OMDSServiceDefinition/docGen generieren (wird nicht ins Git geladen). + +## JavaDoc Generierung +Es sind die Javadocs per Maven Target zu generieren (bei package inkludiert). + + + # Build -In der Datei assembly.xml ist vorgegeben, welche Verzeichnisse für die Veröffentlichung zusammengepackt werden. +In der Datei assembly.xml ist vorgegeben, welche Verzeichnisse für die Veröffentlichung +zusammengepackt werden. Hier ist die Versionsnummmer des Release anzupassen! Mit Maven "install" kann der Release gebaut werden. diff --git a/OMDSServiceDefinition/assembly.xml b/OMDSServiceDefinition/assembly.xml index 358dfc23..a6dd13c6 100644 --- a/OMDSServiceDefinition/assembly.xml +++ b/OMDSServiceDefinition/assembly.xml @@ -9,7 +9,7 @@ ${project.build.directory} - / + \ *dll *.jar @@ -18,21 +18,21 @@ - ${project.build.directory}/site/apidocs - apidocs/ + ${project.build.directory}\site\apidocs + apidocs\ - ${basedir}/doc + ${basedir}\doc - ${basedir}/docGen + ${basedir}\docGen - ${basedir}/src/main/resources/def/r1_10_0 + ${basedir}\src\main\resources\def\r1_11_0 / diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.1_ListeFehlercodes.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.1_ListeFehlercodes.docx index ac2eb879..71135401 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.1_ListeFehlercodes.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.1_ListeFehlercodes.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.2_Listenservices.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.2_Listenservices.docx index beb3fbe7..38228bca 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.2_Listenservices.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.2_Listenservices.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.3_Versionierung.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.3_Versionierung.docx index 84201d05..122733ea 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.3_Versionierung.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.01 Querschnittstthemen/ON_1.01.3_Versionierung.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/Erläuterungen_OAuth_zu_ON_1.02.1.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/Erläuterungen_OAuth_zu_ON_1.02.1.docx index ce11902b..e0543ee1 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/Erläuterungen_OAuth_zu_ON_1.02.1.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/Erläuterungen_OAuth_zu_ON_1.02.1.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.1_AuthentifizierungAllgemein.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.1_AuthentifizierungAllgemein.docx index 74e169bd..642c16f9 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.1_AuthentifizierungAllgemein.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.1_AuthentifizierungAllgemein.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.2_Userdaten.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.2_Userdaten.docx index 2dadc371..9f62ed9d 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.2_Userdaten.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.02 Authentifizierung/ON_1.02.2_Userdaten.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.03 Deep Link/ON_1.03.1_Deep-Link.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.03 Deep Link/ON_1.03.1_Deep-Link.docx index dc019a37..baea742d 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.03 Deep Link/ON_1.03.1_Deep-Link.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.03 Deep Link/ON_1.03.1_Deep-Link.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.1_Dokumente.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.1_Dokumente.docx index e8cab2b6..db08b1bb 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.1_Dokumente.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.1_Dokumente.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.2_DokumenteInProzessen.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.2_DokumenteInProzessen.docx index 4d7091ab..e9da83a9 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.2_DokumenteInProzessen.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.2_DokumenteInProzessen.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.3_Postservice.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.3_Postservice.docx index 59ec5483..dfaab542 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.3_Postservice.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.04 Dokumente/ON_1.04.3_Postservice.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.05 Notifikationen/ON_1.05.1_Geschäftsfall-Log.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.05 Notifikationen/ON_1.05.1_Geschäftsfall-Log.docx index 3ac30d81..305c6834 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.05 Notifikationen/ON_1.05.1_Geschäftsfall-Log.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.05 Notifikationen/ON_1.05.1_Geschäftsfall-Log.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.06 Objekt-Ids/ON_1.06.1_Objekt_IDs.docx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.06 Objekt-Ids/ON_1.06.1_Objekt_IDs.docx index e4afe2d3..c127a7f1 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.06 Objekt-Ids/ON_1.06.1_Objekt_IDs.docx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/ON_1.06 Objekt-Ids/ON_1.06.1_Objekt_IDs.docx differ diff --git a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/VerzeichnisOperationen.xlsx b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/VerzeichnisOperationen.xlsx index dfae42b4..5b1c63d8 100644 Binary files a/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/VerzeichnisOperationen.xlsx and b/OMDSServiceDefinition/doc/ON_1 Technische Grundlagen und Basisfunktionen/VerzeichnisOperationen.xlsx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.01_Deep-Link-Angebot-Antrag/ON_2.01.1_Deep-Link-Angebot-Antrag.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.01_Deep-Link-Angebot-Antrag/ON_2.01.1_Deep-Link-Angebot-Antrag.docx index 32ba92de..5f9038ce 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.01_Deep-Link-Angebot-Antrag/ON_2.01.1_Deep-Link-Angebot-Antrag.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.01_Deep-Link-Angebot-Antrag/ON_2.01.1_Deep-Link-Angebot-Antrag.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_BOA_KFZ.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_BOA_KFZ.docx index e3701ef8..a771293a 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_BOA_KFZ.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_BOA_KFZ.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_Versicherungsbestätigung_KFZ.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_Versicherungsbestätigung_KFZ.docx index e1711517..c7d3f9b2 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_Versicherungsbestätigung_KFZ.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.01 BOA KFZ/ON_2.02.01_Versicherungsbestätigung_KFZ.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.02 BOA SP/ON_2.02.02_BOA_Sach_Privat.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.02 BOA SP/ON_2.02.02_BOA_Sach_Privat.docx index 5350b30e..3ca15f3e 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.02 BOA SP/ON_2.02.02_BOA_Sach_Privat.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.02 BOA SP/ON_2.02.02_BOA_Sach_Privat.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.05 BOA UV/ON_2.02.05_BOA_UV.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.05 BOA UV/ON_2.02.05_BOA_UV.docx index 57e32127..f29c7eff 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.05 BOA UV/ON_2.02.05_BOA_UV.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.05 BOA UV/ON_2.02.05_BOA_UV.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.06 BOA LE/ON_2.02.06_BOA_LE.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.06 BOA LE/ON_2.02.06_BOA_LE.docx index a9b34c78..4902eebe 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.06 BOA LE/ON_2.02.06_BOA_LE.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.06 BOA LE/ON_2.02.06_BOA_LE.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KR.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KR.docx deleted file mode 100644 index dce71d1b..00000000 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KR.docx and /dev/null differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KV.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KV.docx new file mode 100644 index 00000000..27a2c329 Binary files /dev/null and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.07 BOA KR/ON_2.02.07_BOA_KV.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.0_BOA_allgemein.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.0_BOA_allgemein.docx index 3aa1b871..c3919214 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.0_BOA_allgemein.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.02_BOA Services/ON_2.02.0_BOA_allgemein.docx differ diff --git a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.03_BOA Vorbereitung/ON_2.03.01_BOA_Konvertierungshilfe.docx b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.03_BOA Vorbereitung/ON_2.03.01_BOA_Konvertierungshilfe.docx index bfe4c7f8..79cd1e7b 100644 Binary files a/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.03_BOA Vorbereitung/ON_2.03.01_BOA_Konvertierungshilfe.docx and b/OMDSServiceDefinition/doc/ON_2 Antragsabwicklung/ON_2.03_BOA Vorbereitung/ON_2.03.01_BOA_Konvertierungshilfe.docx differ diff --git a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.01_DatenuebertragungOMDS/ON_3.01.1.DatenübertragungOMDS.docx b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.01_DatenuebertragungOMDS/ON_3.01.1.DatenübertragungOMDS.docx index 26465955..e04baaec 100644 Binary files a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.01_DatenuebertragungOMDS/ON_3.01.1.DatenübertragungOMDS.docx and b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.01_DatenuebertragungOMDS/ON_3.01.1.DatenübertragungOMDS.docx differ diff --git a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.02_VertragsbezogeneDokumente/ON_3.02.1_Vertragsbezogene_Dokumente.docx b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.02_VertragsbezogeneDokumente/ON_3.02.1_Vertragsbezogene_Dokumente.docx index 232adfb1..dedc1aae 100644 Binary files a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.02_VertragsbezogeneDokumente/ON_3.02.1_Vertragsbezogene_Dokumente.docx and b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.02_VertragsbezogeneDokumente/ON_3.02.1_Vertragsbezogene_Dokumente.docx differ diff --git a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.03_DeepLinkVertrag/ON_3.03.1_Deep-Link-Vertrag.docx b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.03_DeepLinkVertrag/ON_3.03.1_Deep-Link-Vertrag.docx index d0e44f09..9295992c 100644 Binary files a/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.03_DeepLinkVertrag/ON_3.03.1_Deep-Link-Vertrag.docx and b/OMDSServiceDefinition/doc/ON_3 Vertragsbestand/ON_3.03_DeepLinkVertrag/ON_3.03.1_Deep-Link-Vertrag.docx differ diff --git a/OMDSServiceDefinition/doc/ON_4 Partner/ON_4.01_Deep-Link-Partner/ON_4.01.1_Deep-Link-Partner.docx b/OMDSServiceDefinition/doc/ON_4 Partner/ON_4.01_Deep-Link-Partner/ON_4.01.1_Deep-Link-Partner.docx index 6c3c11c1..62ad3502 100644 Binary files a/OMDSServiceDefinition/doc/ON_4 Partner/ON_4.01_Deep-Link-Partner/ON_4.01.1_Deep-Link-Partner.docx and b/OMDSServiceDefinition/doc/ON_4 Partner/ON_4.01_Deep-Link-Partner/ON_4.01.1_Deep-Link-Partner.docx differ diff --git a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.01_Deep-Link-Schaden/ON_7.01.1_Deep-Link-Schaden.docx b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.01_Deep-Link-Schaden/ON_7.01.1_Deep-Link-Schaden.docx index 6e9057d6..fdf4d967 100644 Binary files a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.01_Deep-Link-Schaden/ON_7.01.1_Deep-Link-Schaden.docx and b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.01_Deep-Link-Schaden/ON_7.01.1_Deep-Link-Schaden.docx differ diff --git a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.02_Schadenmeldung/ON_7.02.1_Schadenmeldung.docx b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.02_Schadenmeldung/ON_7.02.1_Schadenmeldung.docx index 9586e646..8c54ad35 100644 Binary files a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.02_Schadenmeldung/ON_7.02.1_Schadenmeldung.docx and b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.02_Schadenmeldung/ON_7.02.1_Schadenmeldung.docx differ diff --git a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.03_Belegeinreichung/ON_7.03.1_Belegeinreichung.docx b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.03_Belegeinreichung/ON_7.03.1_Belegeinreichung.docx index 58bf7e06..830da38c 100644 Binary files a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.03_Belegeinreichung/ON_7.03.1_Belegeinreichung.docx and b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.03_Belegeinreichung/ON_7.03.1_Belegeinreichung.docx differ diff --git a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.04_Deckungsauskunft/ON_7.04.1_Deckungsauskunft.docx b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.04_Deckungsauskunft/ON_7.04.1_Deckungsauskunft.docx index 56dec407..cdd6792a 100644 Binary files a/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.04_Deckungsauskunft/ON_7.04.1_Deckungsauskunft.docx and b/OMDSServiceDefinition/doc/ON_7 Schaden/ON_7.04_Deckungsauskunft/ON_7.04.1_Deckungsauskunft.docx differ diff --git a/OMDSServiceDefinition/doc/Übersicht und Grundlagen der Standardisierung.docx b/OMDSServiceDefinition/doc/Übersicht und Grundlagen der Standardisierung.docx index 872c4a57..f93b16b1 100644 Binary files a/OMDSServiceDefinition/doc/Übersicht und Grundlagen der Standardisierung.docx and b/OMDSServiceDefinition/doc/Übersicht und Grundlagen der Standardisierung.docx differ diff --git a/OMDSServiceDefinition/pom.xml b/OMDSServiceDefinition/pom.xml index 0ed9df54..9bdab5b0 100644 --- a/OMDSServiceDefinition/pom.xml +++ b/OMDSServiceDefinition/pom.xml @@ -1,105 +1,83 @@ - 4.0.0 at.vvo.omds OMDSServiceDefinition - 1.10.0 + 1.11.0 OMDS Service Definition - Version 1.10.0. Dieses Projekt enthält die Definitionen für die OMDS-Services. - + Version 1.11.0. Dieses Projekt enthält die Definitionen für die OMDS-Services. + - r1_10_0 + r1_11_0 UTF-8 UTF-8 - + yyyyMMdd ${maven.build.timestamp} - omds3Services.wsdl - /src/main/resources/bind/${currentReleaseDir} - ${basedir}/src/main/java - ${basedir}${bindings.location.rel} - src/main/resources/def/${currentReleaseDir}/${wsdl.name} - - 1.8 - ${jdk.version} - ${jdk.version} - - 3.5.7 + 17 + 4.0.3 - + + org.apache.cxf cxf-codegen-plugin ${cxf.version} - - org.apache.maven.plugins - maven-help-plugin - 2.2 - org.apache.maven.plugins maven-source-plugin - 2.0.4 + 3.3.0 org.apache.maven.plugins maven-compiler-plugin - 2.3.2 + 3.12.1 org.apache.maven.plugins maven-assembly-plugin - 3.1.0 + 3.6.0 org.apache.maven.plugins maven-javadoc-plugin - 3.0.1 + 3.6.3 - - - - org.apache.maven.plugins - maven-help-plugin - - - - org.apache.maven.plugins - maven-assembly-plugin - - - assembly.xml - - - - - make-assembly - install - - single - - - - + + org.apache.maven.plugins - maven-compiler-plugin + maven-assembly-plugin - true - true - ${jdk.version} - ${jdk.version} - ${jdk.version} - UTF-8 + + assembly.xml + + + + make-assembly + install + + single + + + + + + + + + + + org.apache.maven.plugins maven-jar-plugin @@ -114,23 +92,18 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs ${maven.build.timestamp} - ${jdk.version} + ${maven.compiler.release} - - + + + org.apache.maven.plugins maven-surefire-plugin 2.19.1 - - - - at/ergo/plr/CalculatorWebClientTest.java - - - + org.apache.maven.plugins maven-source-plugin @@ -143,21 +116,26 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs + org.apache.maven.plugins maven-javadoc-plugin - - + + reference + + + attach-javadocs - jar + jar - - + + + @@ -184,18 +162,19 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs cxf-rt-transports-http ${cxf.version} - + + org.apache.cxf cxf-rt-transports-http-jetty ${cxf.version} - - org.apache.cxf - cxf-rt-ws-security - ${cxf.version} - + + + + + org.apache.cxf @@ -204,63 +183,62 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs - - junit - junit - 3.8.2 - test - + - + org.apache.cxf cxf-rt-frontend-simple + provided org.apache.cxf cxf-rt-frontend-jaxws + provided org.apache.cxf cxf-rt-bindings-soap + provided org.apache.cxf cxf-rt-transports-http + provided - + + + + + + + + + + + + org.apache.cxf - cxf-rt-transports-http-jetty - - - - org.apache.cxf - cxf-rt-ws-security - - - - org.apache.cxf - cxf-rt-features-logging - - - - - - org.slf4j - slf4j-simple - 2.0.9 - test + cxf-rt-features-logging + provided + + + + + + + - + @@ -274,134 +252,69 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs https://entw.kapdion.com/nexus/repository/omdsSnapshots/ - - + + - - genJavaFromWsdl_VU + genJavaFromWsdl true - - codeGen - - omds3Services.wsdl - wsdl_binding.xml + + ${basedir}/src/main/resources/def/${currentReleaseDir} org.apache.cxf cxf-codegen-plugin + + + + -Djavax.xml.accessExternalSchema=all + generate-sources - generate-sources + generate-sources - ${target.generation.path} - - - ${wsdl.location} - true - - - - ${bindings.location}/omds20Types_binding.xml - ${bindings.location}/omdsServiceTypes_binding.xml - ${bindings.location}/omdsCommonServiceTypes_binding.xml - ${bindings.location}/omds3_ON1_Basisfunktionen_binding.xml - ${bindings.location}/omds3_ON2_Antrag_Common_binding.xml - ${bindings.location}/omds3_ON2_Antrag_Kfz_binding.xml - ${bindings.location}/omds3_ON2_Antrag_SachPrivat_binding.xml - ${bindings.location}/omds3_ON2_Antrag_Unfall_binding.xml - ${bindings.location}/omds3_ON2_Antrag_Leben_binding.xml - ${bindings.location}/omds3_ON2_Antrag_Kranken_binding.xml - ${bindings.location}/omds3_ON7_Schaden_binding.xml - ${bindings.location}/${wsdl.binding.xml} - - - - - - -impl - -validate - -client - -verbose - -mark-generated - - - - - - wsdl2java - - - - - - - - - - genJavaFromWsdl_Broker - - false - - codeGen - - - - omds3ServicesBroker.wsdl - wsdl_broker_binding.xml - - - - - org.apache.cxf - cxf-codegen-plugin - - -Djavax.xml.accessExternalSchema=all - - - - generate-sources - generate-sources - - ${target.generation.path} + ${basedir}/src/main/java + + + + - - ${wsdl.location} - true - + + ${wsdl.dir}/omds3Services.wsdl - - ${bindings.location}/omds20Types_binding.xml - ${bindings.location}/omdsServiceTypes_binding.xml - ${bindings.location}/omdsCommonServiceTypes_binding.xml - ${bindings.location}/omds3_ON7_Schaden_binding.xml - ${bindings.location}/${wsdl.binding.xml} - - - - -impl - -validate - -client - -verbose + + -impl + + + -verbose + + - + + + ${wsdl.dir}/wsdl_binding.xml + + ${wsdl.dir}/omds_binding.xml + + - - wsdl2java - + + + wsdl2java + @@ -409,7 +322,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs + - - diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ADRESSEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ADRESSEType.java deleted file mode 100644 index 678c7188..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ADRESSEType.java +++ /dev/null @@ -1,221 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -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_6_0.on2antrag.sachPrivat.RisikoAdresseType; - - -/** - *

Java-Klasse für ADRESSE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ADRESSE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ADRESSE_Type") -@XmlSeeAlso({ - RisikoAdresseType.class -}) -public class ADRESSEType { - - @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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/BBArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/BBArtCdType.java deleted file mode 100644 index 6a77c294..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/BBArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BBArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="BBArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ABL"/>
- *     <enumeration value="ERL"/>
- *     <enumeration value="SLF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BBArtCd_Type") -@XmlEnum -public enum BBArtCdType { - - - /** - * Ablebensfall - * - */ - ABL, - - /** - * Erlebensfall - * - */ - ERL, - - /** - * sonstiger Leistungsfall - * - */ - SLF; - - public String value() { - return name(); - } - - public static BBArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAntragType.java deleted file mode 100644 index a8b71e0f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAntragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Antrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Antrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Antrag_Type") -public class ELAntragType { - - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAnzahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAnzahlType.java deleted file mode 100644 index 12f37023..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELAnzahlType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Anzahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Anzahl_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Anzahl_Type") -public class ELAnzahlType { - - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBetragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBetragType.java deleted file mode 100644 index 530c7ce3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBetragType.java +++ /dev/null @@ -1,175 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Betrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Betrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetragArtCd" type="{urn:omds20}BetragArtCd_Type" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Betrag_Type") -public class ELBetragType { - - @XmlAttribute(name = "BetragArtCd") - protected String betragArtCd; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * Ruft den Wert der betragArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetragArtCd() { - return betragArtCd; - } - - /** - * Legt den Wert der betragArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetragArtCd(String value) { - this.betragArtCd = 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 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 waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBezugsberechtigungType.java deleted file mode 100644 index 405f1330..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELBezugsberechtigungType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Bezugsberechtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
- *       <attribute name="BBTxt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Bezugsberechtigung_Type") -public class ELBezugsberechtigungType { - - @XmlAttribute(name = "BBArtCd", required = true) - protected BBArtCdType bbArtCd; - @XmlAttribute(name = "BBTxt", required = true) - protected String bbTxt; - - /** - * Ruft den Wert der bbArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link BBArtCdType } - * - */ - public BBArtCdType getBBArtCd() { - return bbArtCd; - } - - /** - * Legt den Wert der bbArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BBArtCdType } - * - */ - public void setBBArtCd(BBArtCdType value) { - this.bbArtCd = value; - } - - /** - * Ruft den Wert der bbTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBBTxt() { - return bbTxt; - } - - /** - * Legt den Wert der bbTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBBTxt(String value) { - this.bbTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEinstufungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEinstufungType.java deleted file mode 100644 index 339d3649..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEinstufungType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Einstufung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Einstufung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
- *       <attribute name="EstWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="5"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Einstufung_Type") -public class ELEinstufungType { - - @XmlAttribute(name = "EstArtCd", required = true) - protected EstArtCdType estArtCd; - @XmlAttribute(name = "EstWert", required = true) - protected String estWert; - - /** - * Ruft den Wert der estArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link EstArtCdType } - * - */ - public EstArtCdType getEstArtCd() { - return estArtCd; - } - - /** - * Legt den Wert der estArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link EstArtCdType } - * - */ - public void setEstArtCd(EstArtCdType value) { - this.estArtCd = value; - } - - /** - * Ruft den Wert der estWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstWert() { - return estWert; - } - - /** - * Legt den Wert der estWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstWert(String value) { - this.estWert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEntscheidungsfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEntscheidungsfrageType.java deleted file mode 100644 index 1f58200f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELEntscheidungsfrageType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Entscheidungsfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Entscheidungsfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
- *       <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Entscheidungsfrage_Type") -public class ELEntscheidungsfrageType { - - @XmlAttribute(name = "EFrageCd", required = true) - protected String eFrageCd; - @XmlAttribute(name = "EFrageAntw", required = true) - protected String eFrageAntw; - - /** - * Ruft den Wert der eFrageCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageCd() { - return eFrageCd; - } - - /** - * Legt den Wert der eFrageCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageCd(String value) { - this.eFrageCd = value; - } - - /** - * Ruft den Wert der eFrageAntw-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageAntw() { - return eFrageAntw; - } - - /** - * Legt den Wert der eFrageAntw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageAntw(String value) { - this.eFrageAntw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELFlaecheType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELFlaecheType.java deleted file mode 100644 index c68d302b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELFlaecheType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Flaeche_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Flaeche_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FlaechenAttributCd" use="required" type="{urn:omds20}FlaechenAttributCd_Type" />
- *       <attribute name="Nummer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="InnenFlaeche" type="{urn:omds20}decimal" />
- *       <attribute name="VerbauteFlaeche" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Flaeche_Type") -public class ELFlaecheType { - - @XmlAttribute(name = "FlaechenAttributCd", required = true) - protected FlaechenAttributCdType flaechenAttributCd; - @XmlAttribute(name = "Nummer") - protected String nummer; - @XmlAttribute(name = "InnenFlaeche") - protected BigDecimal innenFlaeche; - @XmlAttribute(name = "VerbauteFlaeche") - protected BigDecimal verbauteFlaeche; - - /** - * Ruft den Wert der flaechenAttributCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link FlaechenAttributCdType } - * - */ - public FlaechenAttributCdType getFlaechenAttributCd() { - return flaechenAttributCd; - } - - /** - * Legt den Wert der flaechenAttributCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FlaechenAttributCdType } - * - */ - public void setFlaechenAttributCd(FlaechenAttributCdType value) { - this.flaechenAttributCd = value; - } - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Ruft den Wert der innenFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getInnenFlaeche() { - return innenFlaeche; - } - - /** - * Legt den Wert der innenFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setInnenFlaeche(BigDecimal value) { - this.innenFlaeche = value; - } - - /** - * Ruft den Wert der verbauteFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVerbauteFlaeche() { - return verbauteFlaeche; - } - - /** - * Legt den Wert der verbauteFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVerbauteFlaeche(BigDecimal value) { - this.verbauteFlaeche = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGewinnbeteiligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGewinnbeteiligungType.java deleted file mode 100644 index 8b1c227f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGewinnbeteiligungType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Gewinnbeteiligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Gewinnbeteiligung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Gewinnbeteiligung_Type") -public class ELGewinnbeteiligungType { - - @XmlAttribute(name = "Datum", required = true) - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGrenzwertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGrenzwertType.java deleted file mode 100644 index 011c1c22..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELGrenzwertType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Grenzwert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Grenzwert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
- *       <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="GrwTyp">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Grenzwert_Type") -public class ELGrenzwertType { - - @XmlAttribute(name = "GrwArtCd", required = true) - protected GrwArtCdType grwArtCd; - @XmlAttribute(name = "GrWert", required = true) - protected BigDecimal grWert; - @XmlAttribute(name = "GrwTyp") - protected String grwTyp; - - /** - * Ruft den Wert der grwArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GrwArtCdType } - * - */ - public GrwArtCdType getGrwArtCd() { - return grwArtCd; - } - - /** - * Legt den Wert der grwArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GrwArtCdType } - * - */ - public void setGrwArtCd(GrwArtCdType value) { - this.grwArtCd = value; - } - - /** - * Ruft den Wert der grWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGrWert() { - return grWert; - } - - /** - * Legt den Wert der grWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGrWert(BigDecimal value) { - this.grWert = value; - } - - /** - * Ruft den Wert der grwTyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrwTyp() { - return grwTyp; - } - - /** - * Legt den Wert der grwTyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrwTyp(String value) { - this.grwTyp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIdentifizierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIdentifizierungType.java deleted file mode 100644 index 9690e8ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIdentifizierungType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Identifizierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Identifizierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
- *       <attribute name="IdfSchluessel" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IdfDatum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Identifizierung_Type") -public class ELIdentifizierungType { - - @XmlAttribute(name = "IdfArtCd", required = true) - protected IdfArtCdType idfArtCd; - @XmlAttribute(name = "IdfSchluessel", required = true) - protected String idfSchluessel; - @XmlAttribute(name = "IdfDatum") - protected XMLGregorianCalendar idfDatum; - - /** - * Ruft den Wert der idfArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link IdfArtCdType } - * - */ - public IdfArtCdType getIdfArtCd() { - return idfArtCd; - } - - /** - * Legt den Wert der idfArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link IdfArtCdType } - * - */ - public void setIdfArtCd(IdfArtCdType value) { - this.idfArtCd = value; - } - - /** - * Ruft den Wert der idfSchluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdfSchluessel() { - return idfSchluessel; - } - - /** - * Legt den Wert der idfSchluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdfSchluessel(String value) { - this.idfSchluessel = value; - } - - /** - * Ruft den Wert der idfDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getIdfDatum() { - return idfDatum; - } - - /** - * Legt den Wert der idfDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setIdfDatum(XMLGregorianCalendar value) { - this.idfDatum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIndexType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIndexType.java deleted file mode 100644 index e355ce86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELIndexType.java +++ /dev/null @@ -1,116 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Index_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Index_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
- *       <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
- *       <attribute name="Wert" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Index_Type") -public class ELIndexType { - - @XmlAttribute(name = "IndexArtCd", required = true) - protected String indexArtCd; - @XmlAttribute(name = "Datum") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - - /** - * Ruft den Wert der indexArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndexArtCd() { - return indexArtCd; - } - - /** - * Legt den Wert der indexArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndexArtCd(String value) { - this.indexArtCd = 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKlauselType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKlauselType.java deleted file mode 100644 index afac5e20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKlauselType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Klausel_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Klausel_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Klausel_Type") -public class ELKlauselType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKommunikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKommunikationType.java deleted file mode 100644 index bec255f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELKommunikationType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Kommunikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Kommunikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
- *       <attribute name="Kennung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Kommunikation_Type") -public class ELKommunikationType { - - @XmlAttribute(name = "KomArtCd", required = true) - protected String komArtCd; - @XmlAttribute(name = "Kennung", required = true) - protected String kennung; - - /** - * Ruft den Wert der komArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKomArtCd() { - return komArtCd; - } - - /** - * Legt den Wert der komArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKomArtCd(String value) { - this.komArtCd = value; - } - - /** - * Ruft den Wert der kennung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennung() { - return kennung; - } - - /** - * Legt den Wert der kennung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennung(String value) { - this.kennung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELLegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELLegitimationType.java deleted file mode 100644 index 1afa9d3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELLegitimationType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Legitimation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
- *       <attribute name="Ausstellungsbehoerde">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Nummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Legitimation_Type") -public class ELLegitimationType { - - @XmlAttribute(name = "LegArtCd", required = true) - protected String legArtCd; - @XmlAttribute(name = "Ausstellungsbehoerde") - protected String ausstellungsbehoerde; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - - /** - * Ruft den Wert der legArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegArtCd() { - return legArtCd; - } - - /** - * Legt den Wert der legArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegArtCd(String value) { - this.legArtCd = value; - } - - /** - * Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstellungsbehoerde() { - return ausstellungsbehoerde; - } - - /** - * Legt den Wert der ausstellungsbehoerde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstellungsbehoerde(String value) { - this.ausstellungsbehoerde = 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 nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektType.java deleted file mode 100644 index f377dfc5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objekt_Type") -public class ELObjektType { - - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int objLfnr; - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - public void setObjLfnr(int value) { - this.objLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektdatenType.java deleted file mode 100644 index 04d512a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELObjektdatenType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objektdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objektdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
- *       <attribute name="Wert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ObjektdatenInfo">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objektdaten_Type") -public class ELObjektdatenType { - - @XmlAttribute(name = "ObjektdatenCd", required = true) - protected String objektdatenCd; - @XmlAttribute(name = "Wert", required = true) - protected String wert; - @XmlAttribute(name = "ObjektdatenInfo") - protected String objektdatenInfo; - - /** - * Ruft den Wert der objektdatenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenCd() { - return objektdatenCd; - } - - /** - * Legt den Wert der objektdatenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenCd(String value) { - this.objektdatenCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWert(String value) { - this.wert = value; - } - - /** - * Ruft den Wert der objektdatenInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenInfo() { - return objektdatenInfo; - } - - /** - * Legt den Wert der objektdatenInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenInfo(String value) { - this.objektdatenInfo = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPolizzennummerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPolizzennummerType.java deleted file mode 100644 index 4be8a844..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPolizzennummerType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Polizzennummer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Polizzennummer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
- *       <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Polizzennummer_Type") -public class ELPolizzennummerType { - - @XmlAttribute(name = "PolArtCd", required = true) - protected PolArtCdType polArtCd; - @XmlAttribute(name = "PolNr", required = true) - protected String polNr; - - /** - * Ruft den Wert der polArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolArtCdType } - * - */ - public PolArtCdType getPolArtCd() { - return polArtCd; - } - - /** - * Legt den Wert der polArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolArtCdType } - * - */ - public void setPolArtCd(PolArtCdType value) { - this.polArtCd = value; - } - - /** - * Ruft den Wert der polNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNr() { - return polNr; - } - - /** - * Legt den Wert der polNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNr(String value) { - this.polNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienfreistellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienfreistellungType.java deleted file mode 100644 index 47285e0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienfreistellungType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Praemienfreistellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienfreistellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
- *       <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="PfrEnde" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienfreistellung_Type") -public class ELPraemienfreistellungType { - - @XmlAttribute(name = "PfrArtCd", required = true) - protected String pfrArtCd; - @XmlAttribute(name = "PfrBeg", required = true) - protected XMLGregorianCalendar pfrBeg; - @XmlAttribute(name = "PfrEnde") - protected XMLGregorianCalendar pfrEnde; - - /** - * Ruft den Wert der pfrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPfrArtCd() { - return pfrArtCd; - } - - /** - * Legt den Wert der pfrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPfrArtCd(String value) { - this.pfrArtCd = value; - } - - /** - * Ruft den Wert der pfrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrBeg() { - return pfrBeg; - } - - /** - * Legt den Wert der pfrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrBeg(XMLGregorianCalendar value) { - this.pfrBeg = value; - } - - /** - * Ruft den Wert der pfrEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrEnde() { - return pfrEnde; - } - - /** - * Legt den Wert der pfrEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrEnde(XMLGregorianCalendar value) { - this.pfrEnde = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienkorrekturType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienkorrekturType.java deleted file mode 100644 index a4f94328..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELPraemienkorrekturType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Praemienkorrektur_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienkorrektur_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
- *       <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienkorrektur_Type") -public class ELPraemienkorrekturType { - - @XmlAttribute(name = "PraemKorrArtCd", required = true) - protected String praemKorrArtCd; - @XmlAttribute(name = "PraemKorrWert") - protected BigDecimal praemKorrWert; - @XmlAttribute(name = "PraemKorrProz") - protected BigDecimal praemKorrProz; - @XmlAttribute(name = "PraemKorrText") - protected String praemKorrText; - - /** - * Ruft den Wert der praemKorrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrArtCd() { - return praemKorrArtCd; - } - - /** - * Legt den Wert der praemKorrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrArtCd(String value) { - this.praemKorrArtCd = value; - } - - /** - * Ruft den Wert der praemKorrWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrWert() { - return praemKorrWert; - } - - /** - * Legt den Wert der praemKorrWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrWert(BigDecimal value) { - this.praemKorrWert = value; - } - - /** - * Ruft den Wert der praemKorrProz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrProz() { - return praemKorrProz; - } - - /** - * Legt den Wert der praemKorrProz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrProz(BigDecimal value) { - this.praemKorrProz = value; - } - - /** - * Ruft den Wert der praemKorrText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrText() { - return praemKorrText; - } - - /** - * Legt den Wert der praemKorrText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrText(String value) { - this.praemKorrText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRahmenvereinbarungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRahmenvereinbarungType.java deleted file mode 100644 index 3272b7d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRahmenvereinbarungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvereinbarung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvereinbarung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenVebnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvereinbarung_Type") -public class ELRahmenvereinbarungType { - - @XmlAttribute(name = "RahmenVebnr", required = true) - protected String rahmenVebnr; - - /** - * Ruft den Wert der rahmenVebnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRahmenVebnr() { - return rahmenVebnr; - } - - /** - * Legt den Wert der rahmenVebnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRahmenVebnr(String value) { - this.rahmenVebnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRenteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRenteType.java deleted file mode 100644 index f640669b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELRenteType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Rente_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rente_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
- *       <attribute name="RntBeg" type="{urn:omds20}Datum" />
- *       <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rente_Type") -public class ELRenteType { - - @XmlAttribute(name = "RntRhythmCd", required = true) - protected String rntRhythmCd; - @XmlAttribute(name = "RntBeg") - protected XMLGregorianCalendar rntBeg; - @XmlAttribute(name = "RntBetrag", required = true) - protected BigDecimal rntBetrag; - - /** - * Ruft den Wert der rntRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRntRhythmCd() { - return rntRhythmCd; - } - - /** - * Legt den Wert der rntRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRntRhythmCd(String value) { - this.rntRhythmCd = value; - } - - /** - * Ruft den Wert der rntBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRntBeg() { - return rntBeg; - } - - /** - * Legt den Wert der rntBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRntBeg(XMLGregorianCalendar value) { - this.rntBeg = value; - } - - /** - * Ruft den Wert der rntBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRntBetrag() { - return rntBetrag; - } - - /** - * Legt den Wert der rntBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRntBetrag(BigDecimal value) { - this.rntBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehalt.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehalt.java deleted file mode 100644 index 345ee758..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehalt.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Selbstbehalt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "EL-Selbstbehalt") -public class ELSelbstbehalt - extends ELSelbstbehaltType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehaltType.java deleted file mode 100644 index e473f0f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSelbstbehaltType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
- *       <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
- *       <attribute name="SbhProzent" type="{urn:omds20}decimal" />
- *       <attribute name="SbhText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Selbstbehalt_Type") -@XmlSeeAlso({ - ELSelbstbehalt.class -}) -public class ELSelbstbehaltType { - - @XmlAttribute(name = "SbhArtCd", required = true) - protected SbhArtCdType sbhArtCd; - @XmlAttribute(name = "SbhBetrag") - protected BigDecimal sbhBetrag; - @XmlAttribute(name = "SbhProzent") - protected BigDecimal sbhProzent; - @XmlAttribute(name = "SbhText") - protected String sbhText; - - /** - * Ruft den Wert der sbhArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SbhArtCdType } - * - */ - public SbhArtCdType getSbhArtCd() { - return sbhArtCd; - } - - /** - * Legt den Wert der sbhArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SbhArtCdType } - * - */ - public void setSbhArtCd(SbhArtCdType value) { - this.sbhArtCd = value; - } - - /** - * Ruft den Wert der sbhBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhBetrag() { - return sbhBetrag; - } - - /** - * Legt den Wert der sbhBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhBetrag(BigDecimal value) { - this.sbhBetrag = value; - } - - /** - * Ruft den Wert der sbhProzent-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhProzent() { - return sbhProzent; - } - - /** - * Legt den Wert der sbhProzent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhProzent(BigDecimal value) { - this.sbhProzent = value; - } - - /** - * Ruft den Wert der sbhText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbhText() { - return sbhText; - } - - /** - * Legt den Wert der sbhText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbhText(String value) { - this.sbhText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSteuerType.java deleted file mode 100644 index ba34bd86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELSteuerType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Steuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Steuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
- *       <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Steuer_Type") -public class ELSteuerType { - - @XmlAttribute(name = "StArtCd", required = true) - protected String stArtCd; - @XmlAttribute(name = "StBetrag", required = true) - protected BigDecimal stBetrag; - - /** - * Ruft den Wert der stArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStArtCd() { - return stArtCd; - } - - /** - * Legt den Wert der stArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStArtCd(String value) { - this.stArtCd = value; - } - - /** - * Ruft den Wert der stBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getStBetrag() { - return stBetrag; - } - - /** - * Legt den Wert der stBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setStBetrag(BigDecimal value) { - this.stBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELTextType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELTextType.java deleted file mode 100644 index 2059d907..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELTextType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Text_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Text_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
- *       <attribute name="TxtInhalt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Text_Type") -public class ELTextType { - - @XmlAttribute(name = "TxtArtCd", required = true) - protected TxtArtCdType txtArtCd; - @XmlAttribute(name = "TxtInhalt", required = true) - protected String txtInhalt; - - /** - * Ruft den Wert der txtArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link TxtArtCdType } - * - */ - public TxtArtCdType getTxtArtCd() { - return txtArtCd; - } - - /** - * Legt den Wert der txtArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TxtArtCdType } - * - */ - public void setTxtArtCd(TxtArtCdType value) { - this.txtArtCd = value; - } - - /** - * Ruft den Wert der txtInhalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTxtInhalt() { - return txtInhalt; - } - - /** - * Legt den Wert der txtInhalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTxtInhalt(String value) { - this.txtInhalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELVersicherungssummeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELVersicherungssummeType.java deleted file mode 100644 index 0dc0e6fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELVersicherungssummeType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Versicherungssumme_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Versicherungssumme_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
- *       <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
- *       <attribute name="VSBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Versicherungssumme_Type") -public class ELVersicherungssummeType { - - @XmlAttribute(name = "VSArtCd", required = true) - protected VSArtCdType vsArtCd; - @XmlAttribute(name = "VSBetrag", required = true) - protected BigDecimal vsBetrag; - @XmlAttribute(name = "VSBez") - protected String vsBez; - - /** - * Ruft den Wert der vsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VSArtCdType } - * - */ - public VSArtCdType getVSArtCd() { - return vsArtCd; - } - - /** - * Legt den Wert der vsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VSArtCdType } - * - */ - public void setVSArtCd(VSArtCdType value) { - this.vsArtCd = value; - } - - /** - * Ruft den Wert der vsBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVSBetrag() { - return vsBetrag; - } - - /** - * Legt den Wert der vsBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVSBetrag(BigDecimal value) { - this.vsBetrag = value; - } - - /** - * Ruft den Wert der vsBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVSBez() { - return vsBez; - } - - /** - * Legt den Wert der vsBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVSBez(String value) { - this.vsBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELZeitraumType.java deleted file mode 100644 index 44c5fefa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ELZeitraumType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Zeitraum_Type") -public class ELZeitraumType { - - @XmlAttribute(name = "ZRArtCd", required = true) - protected String zrArtCd; - @XmlAttribute(name = "ZRBeg") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZRArtCd() { - return zrArtCd; - } - - /** - * Legt den Wert der zrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZRArtCd(String value) { - this.zrArtCd = value; - } - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/Entsch2Type.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/Entsch2Type.java deleted file mode 100644 index a6dae1d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/Entsch2Type.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Entsch2_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Entsch2_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="1"/>
- *     <enumeration value="J"/>
- *     <enumeration value="N"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Entsch2_Type") -@XmlEnum -public enum Entsch2Type { - - J, - N; - - public String value() { - return name(); - } - - public static Entsch2Type fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/EstArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/EstArtCdType.java deleted file mode 100644 index e0c23ef5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/EstArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EstArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="EstArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="G"/>
- *     <enumeration value="T"/>
- *     <enumeration value="TVU"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EstArtCd_Type") -@XmlEnum -public enum EstArtCdType { - - - /** - * Gefahrenklasse - * - */ - G, - - /** - * Tarif-, Bonus/Malus-Stufe offiziell - * - */ - T, - - /** - * Tarif-, Bonus/Malus-Stufe VU-intern - * - */ - TVU; - - public String value() { - return name(); - } - - public static EstArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FONDSType.java deleted file mode 100644 index 78ade99c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FONDSType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für FONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FONDS_Type") -public class FONDSType { - - @XmlAttribute(name = "ISIN", required = true) - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FlaechenAttributCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FlaechenAttributCdType.java deleted file mode 100644 index 1a9ac227..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/FlaechenAttributCdType.java +++ /dev/null @@ -1,83 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für FlaechenAttributCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="FlaechenAttributCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="EG"/>
- *     <enumeration value="SW"/>
- *     <enumeration value="MA"/>
- *     <enumeration value="KM"/>
- *     <enumeration value="KO"/>
- *     <enumeration value="WF"/>
- *     <enumeration value="GF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "FlaechenAttributCd_Type") -@XmlEnum -public enum FlaechenAttributCdType { - - - /** - * Erdgeschoß - * - */ - EG, - - /** - * Stockwerk - * - */ - SW, - - /** - * Mansarde - * - */ - MA, - - /** - * Keller mit Wohnnutzung - * - */ - KM, - - /** - * Keller ohne Wohnnutzung - * - */ - KO, - - /** - * Wohnfläche - * - */ - WF, - - /** - * Grundfläche - * - */ - GF; - - public String value() { - return name(); - } - - public static FlaechenAttributCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GESCHAEDIGTESOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GESCHAEDIGTESOBJEKTType.java deleted file mode 100644 index a6a73d08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GESCHAEDIGTESOBJEKTType.java +++ /dev/null @@ -1,265 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GESCHAEDIGTES_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="SchadenBeschreibung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
- *       <attribute name="VUNameGesch">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
- *       <attribute name="SchadennrGesch">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Schadennr">
- *             <maxLength value="35"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Kennz_GeschKfz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type") -public class GESCHAEDIGTESOBJEKTType { - - @XmlAttribute(name = "GeschObjektLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int geschObjektLfnr; - @XmlAttribute(name = "SchadenBeschreibung") - protected String schadenBeschreibung; - @XmlAttribute(name = "VUNrGesch") - protected String vuNrGesch; - @XmlAttribute(name = "VUNameGesch") - protected String vuNameGesch; - @XmlAttribute(name = "PolNrGesch") - protected String polNrGesch; - @XmlAttribute(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlAttribute(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlAttribute(name = "Kennz_GeschKfz") - protected String kennzGeschKfz; - - /** - * Ruft den Wert der geschObjektLfnr-Eigenschaft ab. - * - */ - public int getGeschObjektLfnr() { - return geschObjektLfnr; - } - - /** - * Legt den Wert der geschObjektLfnr-Eigenschaft fest. - * - */ - public void setGeschObjektLfnr(int value) { - this.geschObjektLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GrwArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GrwArtCdType.java deleted file mode 100644 index 326b80b0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/GrwArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GrwArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GrwArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DFP"/>
- *     <enumeration value="KAM"/>
- *     <enumeration value="KAT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GrwArtCd_Type") -@XmlEnum -public enum GrwArtCdType { - - - /** - * DauerfolgenProz(UV) - * - */ - DFP, - - /** - * Karenzmonate - * - */ - KAM, - - /** - * Karenztage - * - */ - KAT; - - public String value() { - return name(); - } - - public static GrwArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/IdfArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/IdfArtCdType.java deleted file mode 100644 index 12ce997a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/IdfArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für IdfArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="IdfArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FB"/>
- *     <enumeration value="SV"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "IdfArtCd_Type") -@XmlEnum -public enum IdfArtCdType { - - - /** - * Firmenbuchnummer - * - */ - FB, - - /** - * Sozialversicherungsnr - * - */ - SV, - - /** - * Versicherungsbestätigung - * - */ - VB; - - public String value() { - return name(); - } - - public static IdfArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/KLAUSELType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/KLAUSELType.java deleted file mode 100644 index 3ba23ff1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/KLAUSELType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für KLAUSEL_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KLAUSEL_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauselbez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauseltxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="7998"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigVon" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KLAUSEL_Type") -public class KLAUSELType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - @XmlAttribute(name = "Klauselbez", required = true) - protected String klauselbez; - @XmlAttribute(name = "Klauseltxt") - protected String klauseltxt; - @XmlAttribute(name = "GueltigVon") - protected XMLGregorianCalendar gueltigVon; - @XmlAttribute(name = "GueltigBis") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - - /** - * Ruft den Wert der klauselbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselbez() { - return klauselbez; - } - - /** - * Legt den Wert der klauselbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselbez(String value) { - this.klauselbez = value; - } - - /** - * Ruft den Wert der klauseltxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauseltxt() { - return klauseltxt; - } - - /** - * Legt den Wert der klauseltxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauseltxt(String value) { - this.klauseltxt = value; - } - - /** - * Ruft den Wert der gueltigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigVon() { - return gueltigVon; - } - - /** - * Legt den Wert der gueltigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigVon(XMLGregorianCalendar value) { - this.gueltigVon = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LOESCHANSTOSSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LOESCHANSTOSSType.java deleted file mode 100644 index 67628a6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LOESCHANSTOSSType.java +++ /dev/null @@ -1,327 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für LOESCHANSTOSS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LOESCHANSTOSS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit2" />
- *       <attribute name="SystemQuelle" default="  ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
- *       <attribute name="ProvisionsID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnverfahrenNr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LOESCHANSTOSS_Type") -public class LOESCHANSTOSSType { - - @XmlAttribute(name = "LoeschID", required = true) - protected XMLGregorianCalendar loeschID; - @XmlAttribute(name = "SystemQuelle") - protected String systemQuelle; - @XmlAttribute(name = "GueltigAb") - protected XMLGregorianCalendar gueltigAb; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "Schadennr") - protected String schadennr; - @XmlAttribute(name = "ProvisionsID") - protected String provisionsID; - @XmlAttribute(name = "MahnverfahrenNr") - protected String mahnverfahrenNr; - @XmlAttribute(name = "LoeschCd", required = true) - protected LoeschCdType loeschCd; - - /** - * Ruft den Wert der loeschID-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLoeschID() { - return loeschID; - } - - /** - * Legt den Wert der loeschID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLoeschID(XMLGregorianCalendar value) { - this.loeschID = value; - } - - /** - * Ruft den Wert der systemQuelle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSystemQuelle() { - if (systemQuelle == null) { - return " "; - } else { - return systemQuelle; - } - } - - /** - * Legt den Wert der systemQuelle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSystemQuelle(String value) { - this.systemQuelle = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der loeschCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link LoeschCdType } - * - */ - public LoeschCdType getLoeschCd() { - return loeschCd; - } - - /** - * Legt den Wert der loeschCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LoeschCdType } - * - */ - public void setLoeschCd(LoeschCdType value) { - this.loeschCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LoeschCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LoeschCdType.java deleted file mode 100644 index 3898a40a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/LoeschCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für LoeschCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="LoeschCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="M"/>
- *     <enumeration value="L"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LoeschCd_Type") -@XmlEnum -public enum LoeschCdType { - - - /** - * Markieren als nichtmehrversorgt - * - */ - M, - - /** - * Löschen wg.z.B.Falschlieferung - * - */ - L, - - /** - * Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht - * - */ - G; - - public String value() { - return name(); - } - - public static LoeschCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/MAHNUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/MAHNUNGType.java deleted file mode 100644 index 45c5221a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/MAHNUNGType.java +++ /dev/null @@ -1,707 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für MAHNUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MAHNUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="MahnverfahrenNr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
- *       <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleBeauftragt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVUNext">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
- *       <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
- *       <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MAHNUNG_Type", propOrder = { - "elText" -}) -public class MAHNUNGType { - - @XmlElement(name = "EL-Text") - protected List elText; - @XmlAttribute(name = "MahnverfahrenNr", required = true) - protected String mahnverfahrenNr; - @XmlAttribute(name = "MahnungNr") - @XmlSchemaType(name = "positiveInteger") - protected BigInteger mahnungNr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "MahnBetrag", required = true) - protected BigDecimal mahnBetrag; - @XmlAttribute(name = "MahnSpesen") - protected BigDecimal mahnSpesen; - @XmlAttribute(name = "MahnStufeCd", required = true) - protected String mahnStufeCd; - @XmlAttribute(name = "MahnStufeTextVU") - protected String mahnStufeTextVU; - @XmlAttribute(name = "MahnStelleVU") - protected String mahnStelleVU; - @XmlAttribute(name = "MahnStelleBeauftragt") - protected String mahnStelleBeauftragt; - @XmlAttribute(name = "MahnStufeGueltigAb") - protected XMLGregorianCalendar mahnStufeGueltigAb; - @XmlAttribute(name = "MahnStufeGueltigBis") - protected XMLGregorianCalendar mahnStufeGueltigBis; - @XmlAttribute(name = "MahnStufeCdNext") - protected String mahnStufeCdNext; - @XmlAttribute(name = "MahnStufeTextVUNext") - protected String mahnStufeTextVUNext; - @XmlAttribute(name = "MahnStufeGueltigAbNext") - protected XMLGregorianCalendar mahnStufeGueltigAbNext; - @XmlAttribute(name = "MahnLetzteZahlung") - protected XMLGregorianCalendar mahnLetzteZahlung; - @XmlAttribute(name = "MahnAeltesteFaelligkeit") - protected XMLGregorianCalendar mahnAeltesteFaelligkeit; - @XmlAttribute(name = "MahnAnzahlFaelligkeiten") - @XmlSchemaType(name = "unsignedShort") - protected Integer mahnAnzahlFaelligkeiten; - @XmlAttribute(name = "GrundRuecklaufCd") - protected String grundRuecklaufCd; - @XmlAttribute(name = "MahnDeckungBis") - protected XMLGregorianCalendar mahnDeckungBis; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der mahnungNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMahnungNr() { - return mahnungNr; - } - - /** - * Legt den Wert der mahnungNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMahnungNr(BigInteger value) { - this.mahnungNr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der mahnBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnBetrag() { - return mahnBetrag; - } - - /** - * Legt den Wert der mahnBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnBetrag(BigDecimal value) { - this.mahnBetrag = value; - } - - /** - * Ruft den Wert der mahnSpesen-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnSpesen() { - return mahnSpesen; - } - - /** - * Legt den Wert der mahnSpesen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnSpesen(BigDecimal value) { - this.mahnSpesen = value; - } - - /** - * Ruft den Wert der mahnStufeCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCd() { - return mahnStufeCd; - } - - /** - * Legt den Wert der mahnStufeCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCd(String value) { - this.mahnStufeCd = value; - } - - /** - * Ruft den Wert der mahnStufeTextVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVU() { - return mahnStufeTextVU; - } - - /** - * Legt den Wert der mahnStufeTextVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVU(String value) { - this.mahnStufeTextVU = value; - } - - /** - * Ruft den Wert der mahnStelleVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleVU() { - return mahnStelleVU; - } - - /** - * Legt den Wert der mahnStelleVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleVU(String value) { - this.mahnStelleVU = value; - } - - /** - * Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleBeauftragt() { - return mahnStelleBeauftragt; - } - - /** - * Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleBeauftragt(String value) { - this.mahnStelleBeauftragt = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAb() { - return mahnStufeGueltigAb; - } - - /** - * Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAb(XMLGregorianCalendar value) { - this.mahnStufeGueltigAb = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigBis() { - return mahnStufeGueltigBis; - } - - /** - * Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigBis(XMLGregorianCalendar value) { - this.mahnStufeGueltigBis = value; - } - - /** - * Ruft den Wert der mahnStufeCdNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCdNext() { - return mahnStufeCdNext; - } - - /** - * Legt den Wert der mahnStufeCdNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCdNext(String value) { - this.mahnStufeCdNext = value; - } - - /** - * Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVUNext() { - return mahnStufeTextVUNext; - } - - /** - * Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVUNext(String value) { - this.mahnStufeTextVUNext = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAbNext() { - return mahnStufeGueltigAbNext; - } - - /** - * Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) { - this.mahnStufeGueltigAbNext = value; - } - - /** - * Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnLetzteZahlung() { - return mahnLetzteZahlung; - } - - /** - * Legt den Wert der mahnLetzteZahlung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnLetzteZahlung(XMLGregorianCalendar value) { - this.mahnLetzteZahlung = value; - } - - /** - * Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnAeltesteFaelligkeit() { - return mahnAeltesteFaelligkeit; - } - - /** - * Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) { - this.mahnAeltesteFaelligkeit = value; - } - - /** - * Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMahnAnzahlFaelligkeiten() { - return mahnAnzahlFaelligkeiten; - } - - /** - * Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMahnAnzahlFaelligkeiten(Integer value) { - this.mahnAnzahlFaelligkeiten = value; - } - - /** - * Ruft den Wert der grundRuecklaufCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundRuecklaufCd() { - return grundRuecklaufCd; - } - - /** - * Legt den Wert der grundRuecklaufCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundRuecklaufCd(String value) { - this.grundRuecklaufCd = value; - } - - /** - * Ruft den Wert der mahnDeckungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnDeckungBis() { - return mahnDeckungBis; - } - - /** - * Legt den Wert der mahnDeckungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnDeckungBis(XMLGregorianCalendar value) { - this.mahnDeckungBis = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/NATUERLICHEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/NATUERLICHEPERSONType.java deleted file mode 100644 index c3bac612..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/NATUERLICHEPERSONType.java +++ /dev/null @@ -1,207 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für NATUERLICHE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NATUERLICHE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *       <attribute name="Gebdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="FamilienstandCd" use="required" type="{urn:omds20}FamilienstandCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NATUERLICHE_PERSON_Type") -public class NATUERLICHEPERSONType { - - @XmlAttribute(name = "Familienname", required = true) - protected String familienname; - @XmlAttribute(name = "Vorname") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", required = true) - protected String geschlechtCd; - @XmlAttribute(name = "Gebdat") - protected XMLGregorianCalendar gebdat; - @XmlAttribute(name = "LandesCd", required = true) - protected String landesCd; - @XmlAttribute(name = "FamilienstandCd", required = true) - protected String familienstandCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 familienstandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienstandCd() { - return familienstandCd; - } - - /** - * Legt den Wert der familienstandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienstandCd(String value) { - this.familienstandCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/OMDS.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/OMDS.java deleted file mode 100644 index a58bf47c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/OMDS.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="version" type="{urn:omds20}version" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "paket" -}) -@XmlRootElement(name = "OMDS") -public class OMDS { - - @XmlElement(name = "PAKET", required = true) - protected List paket; - @XmlAttribute(name = "version") - protected String version; - - /** - * Gets the value of the paket property. - * - *

- * 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 set method for the paket property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPAKET().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PAKET } - * - * - */ - public List getPAKET() { - if (paket == null) { - paket = new ArrayList(); - } - return this.paket; - } - - /** - * Ruft den Wert der version-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Legt den Wert der version-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ObjectFactory.java deleted file mode 100644 index 377a20b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ObjectFactory.java +++ /dev/null @@ -1,939 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds2Types.v2_11 package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation"); - private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL"); - private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS"); - private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON"); - private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag"); - private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl"); - private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag"); - private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung"); - private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung"); - private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage"); - private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung"); - private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel"); - private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer"); - private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung"); - private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur"); - private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung"); - private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text"); - private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON"); - private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT"); - private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE"); - private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN"); - private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION"); - private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG"); - private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS"); - private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON"); - private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON"); - private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON"); - private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE"); - private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO"); - private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS"); - private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER"); - private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT"); - private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG"); - private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung"); - private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert"); - private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index"); - private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation"); - private final static QName _ELObjekt_QNAME = new QName("urn:omds20", "EL-Objekt"); - private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten"); - private final static QName _ELFlaeche_QNAME = new QName("urn:omds20", "EL-Flaeche"); - private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente"); - private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer"); - private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme"); - private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_11 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link OMDS } - * - */ - public OMDS createOMDS() { - return new OMDS(); - } - - /** - * Create an instance of {@link PAKET } - * - */ - public PAKET createPAKET() { - return new PAKET(); - } - - /** - * Create an instance of {@link VERSUNTERNEHMEN } - * - */ - public VERSUNTERNEHMEN createVERSUNTERNEHMEN() { - return new VERSUNTERNEHMEN(); - } - - /** - * Create an instance of {@link ELKommunikationType } - * - */ - public ELKommunikationType createELKommunikationType() { - return new ELKommunikationType(); - } - - /** - * Create an instance of {@link SCHLUESSELART } - * - */ - public SCHLUESSELART createSCHLUESSELART() { - return new SCHLUESSELART(); - } - - /** - * Create an instance of {@link SCHLUESSEL } - * - */ - public SCHLUESSEL createSCHLUESSEL() { - return new SCHLUESSEL(); - } - - /** - * Create an instance of {@link KLAUSELType } - * - */ - public KLAUSELType createKLAUSELType() { - return new KLAUSELType(); - } - - /** - * Create an instance of {@link LOESCHANSTOSSType } - * - */ - public LOESCHANSTOSSType createLOESCHANSTOSSType() { - return new LOESCHANSTOSSType(); - } - - /** - * Create an instance of {@link PERSONType } - * - */ - public PERSONType createPERSONType() { - return new PERSONType(); - } - - /** - * Create an instance of {@link VERTRAG } - * - */ - public VERTRAG createVERTRAG() { - return new VERTRAG(); - } - - /** - * Create an instance of {@link VERTRAGType } - * - */ - public VERTRAGType createVERTRAGType() { - return new VERTRAGType(); - } - - /** - * Create an instance of {@link ELAntragType } - * - */ - public ELAntragType createELAntragType() { - return new ELAntragType(); - } - - /** - * Create an instance of {@link ELAnzahlType } - * - */ - public ELAnzahlType createELAnzahlType() { - return new ELAnzahlType(); - } - - /** - * Create an instance of {@link ELBetragType } - * - */ - public ELBetragType createELBetragType() { - return new ELBetragType(); - } - - /** - * Create an instance of {@link ELBezugsberechtigungType } - * - */ - public ELBezugsberechtigungType createELBezugsberechtigungType() { - return new ELBezugsberechtigungType(); - } - - /** - * Create an instance of {@link ELEinstufungType } - * - */ - public ELEinstufungType createELEinstufungType() { - return new ELEinstufungType(); - } - - /** - * Create an instance of {@link ELEntscheidungsfrageType } - * - */ - public ELEntscheidungsfrageType createELEntscheidungsfrageType() { - return new ELEntscheidungsfrageType(); - } - - /** - * Create an instance of {@link ELIdentifizierungType } - * - */ - public ELIdentifizierungType createELIdentifizierungType() { - return new ELIdentifizierungType(); - } - - /** - * Create an instance of {@link ELKlauselType } - * - */ - public ELKlauselType createELKlauselType() { - return new ELKlauselType(); - } - - /** - * Create an instance of {@link ELPolizzennummerType } - * - */ - public ELPolizzennummerType createELPolizzennummerType() { - return new ELPolizzennummerType(); - } - - /** - * Create an instance of {@link ELPraemienfreistellungType } - * - */ - public ELPraemienfreistellungType createELPraemienfreistellungType() { - return new ELPraemienfreistellungType(); - } - - /** - * Create an instance of {@link ELPraemienkorrekturType } - * - */ - public ELPraemienkorrekturType createELPraemienkorrekturType() { - return new ELPraemienkorrekturType(); - } - - /** - * Create an instance of {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType createELRahmenvereinbarungType() { - return new ELRahmenvereinbarungType(); - } - - /** - * Create an instance of {@link ELSelbstbehalt } - * - */ - public ELSelbstbehalt createELSelbstbehalt() { - return new ELSelbstbehalt(); - } - - /** - * Create an instance of {@link ELSelbstbehaltType } - * - */ - public ELSelbstbehaltType createELSelbstbehaltType() { - return new ELSelbstbehaltType(); - } - - /** - * Create an instance of {@link ELTextType } - * - */ - public ELTextType createELTextType() { - return new ELTextType(); - } - - /** - * Create an instance of {@link VERTRAGSPERSONType } - * - */ - public VERTRAGSPERSONType createVERTRAGSPERSONType() { - return new VERTRAGSPERSONType(); - } - - /** - * Create an instance of {@link VERSOBJEKTType } - * - */ - public VERSOBJEKTType createVERSOBJEKTType() { - return new VERSOBJEKTType(); - } - - /** - * Create an instance of {@link SPARTEType } - * - */ - public SPARTEType createSPARTEType() { - return new SPARTEType(); - } - - /** - * Create an instance of {@link SCHADENType } - * - */ - public SCHADENType createSCHADENType() { - return new SCHADENType(); - } - - /** - * Create an instance of {@link PROVISIONType } - * - */ - public PROVISIONType createPROVISIONType() { - return new PROVISIONType(); - } - - /** - * Create an instance of {@link MAHNUNGType } - * - */ - public MAHNUNGType createMAHNUNGType() { - return new MAHNUNGType(); - } - - /** - * Create an instance of {@link VERTRAGSFONDSType } - * - */ - public VERTRAGSFONDSType createVERTRAGSFONDSType() { - return new VERTRAGSFONDSType(); - } - - /** - * Create an instance of {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType createNATUERLICHEPERSONType() { - return new NATUERLICHEPERSONType(); - } - - /** - * Create an instance of {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType createSONSTIGEPERSONType() { - return new SONSTIGEPERSONType(); - } - - /** - * Create an instance of {@link VERSPERSONType } - * - */ - public VERSPERSONType createVERSPERSONType() { - return new VERSPERSONType(); - } - - /** - * Create an instance of {@link VERSKFZ } - * - */ - public VERSKFZ createVERSKFZ() { - return new VERSKFZ(); - } - - /** - * Create an instance of {@link VERSKFZType } - * - */ - public VERSKFZType createVERSKFZType() { - return new VERSKFZType(); - } - - /** - * Create an instance of {@link VERSSACHEType } - * - */ - public VERSSACHEType createVERSSACHEType() { - return new VERSSACHEType(); - } - - /** - * Create an instance of {@link RISIKOType } - * - */ - public RISIKOType createRISIKOType() { - return new RISIKOType(); - } - - /** - * Create an instance of {@link FONDSType } - * - */ - public FONDSType createFONDSType() { - return new FONDSType(); - } - - /** - * Create an instance of {@link PORTFOLIO } - * - */ - public PORTFOLIO createPORTFOLIO() { - return new PORTFOLIO(); - } - - /** - * Create an instance of {@link PORTFOLIOTYPE } - * - */ - public PORTFOLIOTYPE createPORTFOLIOTYPE() { - return new PORTFOLIOTYPE(); - } - - /** - * Create an instance of {@link SCHADENBETEILIGTERType } - * - */ - public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() { - return new SCHADENBETEILIGTERType(); - } - - /** - * Create an instance of {@link GESCHAEDIGTESOBJEKTType } - * - */ - public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() { - return new GESCHAEDIGTESOBJEKTType(); - } - - /** - * Create an instance of {@link ZAHLUNGType } - * - */ - public ZAHLUNGType createZAHLUNGType() { - return new ZAHLUNGType(); - } - - /** - * Create an instance of {@link ELGewinnbeteiligungType } - * - */ - public ELGewinnbeteiligungType createELGewinnbeteiligungType() { - return new ELGewinnbeteiligungType(); - } - - /** - * Create an instance of {@link ELGrenzwertType } - * - */ - public ELGrenzwertType createELGrenzwertType() { - return new ELGrenzwertType(); - } - - /** - * Create an instance of {@link ELIndexType } - * - */ - public ELIndexType createELIndexType() { - return new ELIndexType(); - } - - /** - * Create an instance of {@link ELLegitimationType } - * - */ - public ELLegitimationType createELLegitimationType() { - return new ELLegitimationType(); - } - - /** - * Create an instance of {@link ELObjektType } - * - */ - public ELObjektType createELObjektType() { - return new ELObjektType(); - } - - /** - * Create an instance of {@link ELObjektdatenType } - * - */ - public ELObjektdatenType createELObjektdatenType() { - return new ELObjektdatenType(); - } - - /** - * Create an instance of {@link ELFlaecheType } - * - */ - public ELFlaecheType createELFlaecheType() { - return new ELFlaecheType(); - } - - /** - * Create an instance of {@link ELRenteType } - * - */ - public ELRenteType createELRenteType() { - return new ELRenteType(); - } - - /** - * Create an instance of {@link ELSteuerType } - * - */ - public ELSteuerType createELSteuerType() { - return new ELSteuerType(); - } - - /** - * Create an instance of {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType createELVersicherungssummeType() { - return new ELVersicherungssummeType(); - } - - /** - * Create an instance of {@link ELZeitraumType } - * - */ - public ELZeitraumType createELZeitraumType() { - return new ELZeitraumType(); - } - - /** - * Create an instance of {@link ADRESSEType } - * - */ - public ADRESSEType createADRESSEType() { - return new ADRESSEType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Kommunikation") - public JAXBElement createELKommunikation(ELKommunikationType value) { - return new JAXBElement(_ELKommunikation_QNAME, ELKommunikationType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "KLAUSEL") - public JAXBElement createKLAUSEL(KLAUSELType value) { - return new JAXBElement(_KLAUSEL_QNAME, KLAUSELType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "LOESCHANSTOSS") - public JAXBElement createLOESCHANSTOSS(LOESCHANSTOSSType value) { - return new JAXBElement(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "PERSON") - public JAXBElement createPERSON(PERSONType value) { - return new JAXBElement(_PERSON_QNAME, PERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Antrag") - public JAXBElement createELAntrag(ELAntragType value) { - return new JAXBElement(_ELAntrag_QNAME, ELAntragType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Anzahl") - public JAXBElement createELAnzahl(ELAnzahlType value) { - return new JAXBElement(_ELAnzahl_QNAME, ELAnzahlType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Betrag") - public JAXBElement createELBetrag(ELBetragType value) { - return new JAXBElement(_ELBetrag_QNAME, ELBetragType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Bezugsberechtigung") - public JAXBElement createELBezugsberechtigung(ELBezugsberechtigungType value) { - return new JAXBElement(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Einstufung") - public JAXBElement createELEinstufung(ELEinstufungType value) { - return new JAXBElement(_ELEinstufung_QNAME, ELEinstufungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Entscheidungsfrage") - public JAXBElement createELEntscheidungsfrage(ELEntscheidungsfrageType value) { - return new JAXBElement(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Identifizierung") - public JAXBElement createELIdentifizierung(ELIdentifizierungType value) { - return new JAXBElement(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Klausel") - public JAXBElement createELKlausel(ELKlauselType value) { - return new JAXBElement(_ELKlausel_QNAME, ELKlauselType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Polizzennummer") - public JAXBElement createELPolizzennummer(ELPolizzennummerType value) { - return new JAXBElement(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienfreistellung") - public JAXBElement createELPraemienfreistellung(ELPraemienfreistellungType value) { - return new JAXBElement(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienkorrektur") - public JAXBElement createELPraemienkorrektur(ELPraemienkorrekturType value) { - return new JAXBElement(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvereinbarung") - public JAXBElement createELRahmenvereinbarung(ELRahmenvereinbarungType value) { - return new JAXBElement(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Text") - public JAXBElement createELText(ELTextType value) { - return new JAXBElement(_ELText_QNAME, ELTextType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSPERSON") - public JAXBElement createVERTRAGSPERSON(VERTRAGSPERSONType value) { - return new JAXBElement(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_OBJEKT") - public JAXBElement createVERSOBJEKT(VERSOBJEKTType value) { - return new JAXBElement(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SPARTE") - public JAXBElement createSPARTE(SPARTEType value) { - return new JAXBElement(_SPARTE_QNAME, SPARTEType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN") - public JAXBElement createSCHADEN(SCHADENType value) { - return new JAXBElement(_SCHADEN_QNAME, SCHADENType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "PROVISION") - public JAXBElement createPROVISION(PROVISIONType value) { - return new JAXBElement(_PROVISION_QNAME, PROVISIONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "MAHNUNG") - public JAXBElement createMAHNUNG(MAHNUNGType value) { - return new JAXBElement(_MAHNUNG_QNAME, MAHNUNGType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSFONDS") - public JAXBElement createVERTRAGSFONDS(VERTRAGSFONDSType value) { - return new JAXBElement(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "NATUERLICHE_PERSON") - public JAXBElement createNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - return new JAXBElement(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SONSTIGE_PERSON") - public JAXBElement createSONSTIGEPERSON(SONSTIGEPERSONType value) { - return new JAXBElement(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_PERSON") - public JAXBElement createVERSPERSON(VERSPERSONType value) { - return new JAXBElement(_VERSPERSON_QNAME, VERSPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_SACHE") - public JAXBElement createVERSSACHE(VERSSACHEType value) { - return new JAXBElement(_VERSSACHE_QNAME, VERSSACHEType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "RISIKO") - public JAXBElement createRISIKO(RISIKOType value) { - return new JAXBElement(_RISIKO_QNAME, RISIKOType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "FONDS") - public JAXBElement createFONDS(FONDSType value) { - return new JAXBElement(_FONDS_QNAME, FONDSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN_BETEILIGTER") - public JAXBElement createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) { - return new JAXBElement(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "GESCHAEDIGTES_OBJEKT") - public JAXBElement createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) { - return new JAXBElement(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "ZAHLUNG") - public JAXBElement createZAHLUNG(ZAHLUNGType value) { - return new JAXBElement(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Gewinnbeteiligung") - public JAXBElement createELGewinnbeteiligung(ELGewinnbeteiligungType value) { - return new JAXBElement(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Grenzwert") - public JAXBElement createELGrenzwert(ELGrenzwertType value) { - return new JAXBElement(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Index") - public JAXBElement createELIndex(ELIndexType value) { - return new JAXBElement(_ELIndex_QNAME, ELIndexType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Legitimation") - public JAXBElement createELLegitimation(ELLegitimationType value) { - return new JAXBElement(_ELLegitimation_QNAME, ELLegitimationType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELObjektType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Objekt") - public JAXBElement createELObjekt(ELObjektType value) { - return new JAXBElement(_ELObjekt_QNAME, ELObjektType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Objektdaten") - public JAXBElement createELObjektdaten(ELObjektdatenType value) { - return new JAXBElement(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELFlaecheType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Flaeche") - public JAXBElement createELFlaeche(ELFlaecheType value) { - return new JAXBElement(_ELFlaeche_QNAME, ELFlaecheType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Rente") - public JAXBElement createELRente(ELRenteType value) { - return new JAXBElement(_ELRente_QNAME, ELRenteType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Steuer") - public JAXBElement createELSteuer(ELSteuerType value) { - return new JAXBElement(_ELSteuer_QNAME, ELSteuerType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Versicherungssumme") - public JAXBElement createELVersicherungssumme(ELVersicherungssummeType value) { - return new JAXBElement(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Zeitraum") - public JAXBElement createELZeitraum(ELZeitraumType value) { - return new JAXBElement(_ELZeitraum_QNAME, ELZeitraumType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PAKET.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PAKET.java deleted file mode 100644 index 9814d95b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PAKET.java +++ /dev/null @@ -1,651 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
- *           <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <group ref="{urn:omds20}bestand"/>
- *       </choice>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="MaklerID" use="required" type="{urn:omds20}MaklerID_Type" />
- *       <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
- *       <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
- *       <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
- *       <attribute name="VUVersion" type="{urn:omds20}OMDSVersion_Type" />
- *       <attribute name="DVRNrAbs" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="8"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PaketKommentar">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versunternehmen", - "schluesselart", - "klausel", - "loeschanstoss", - "person", - "vertrag", - "schaden", - "provision", - "mahnung", - "vertragsfonds" -}) -@XmlRootElement(name = "PAKET") -public class PAKET { - - @XmlElement(name = "VERS_UNTERNEHMEN") - protected List versunternehmen; - @XmlElement(name = "SCHLUESSELART") - protected List schluesselart; - @XmlElement(name = "KLAUSEL") - protected List klausel; - @XmlElement(name = "LOESCHANSTOSS") - protected List loeschanstoss; - @XmlElement(name = "PERSON") - protected List person; - @XmlElement(name = "VERTRAG") - protected List vertrag; - @XmlElement(name = "SCHADEN") - protected List schaden; - @XmlElement(name = "PROVISION") - protected List provision; - @XmlElement(name = "MAHNUNG") - protected List mahnung; - @XmlElement(name = "VERTRAGSFONDS") - protected List vertragsfonds; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "MaklerID", required = true) - protected String maklerID; - @XmlAttribute(name = "PaketZpktErstell", required = true) - protected XMLGregorianCalendar paketZpktErstell; - @XmlAttribute(name = "PaketZpktLetztErstell") - protected XMLGregorianCalendar paketZpktLetztErstell; - @XmlAttribute(name = "PaketInhCd", required = true) - protected PaketInhCdType paketInhCd; - @XmlAttribute(name = "PaketUmfCd", required = true) - protected PaketUmfCdType paketUmfCd; - @XmlAttribute(name = "OMDSVersion", required = true) - protected String omdsVersion; - @XmlAttribute(name = "VUVersion") - protected String vuVersion; - @XmlAttribute(name = "DVRNrAbs", required = true) - protected String dvrNrAbs; - @XmlAttribute(name = "PaketKommentar") - protected String paketKommentar; - - /** - * Gets the value of the versunternehmen property. - * - *

- * 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 set method for the versunternehmen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSUNTERNEHMEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSUNTERNEHMEN } - * - * - */ - public List getVERSUNTERNEHMEN() { - if (versunternehmen == null) { - versunternehmen = new ArrayList(); - } - return this.versunternehmen; - } - - /** - * Gets the value of the schluesselart property. - * - *

- * 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 set method for the schluesselart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSELART().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSELART } - * - * - */ - public List getSCHLUESSELART() { - if (schluesselart == null) { - schluesselart = new ArrayList(); - } - return this.schluesselart; - } - - /** - * Gets the value of the klausel property. - * - *

- * 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 set method for the klausel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKLAUSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KLAUSELType } - * - * - */ - public List getKLAUSEL() { - if (klausel == null) { - klausel = new ArrayList(); - } - return this.klausel; - } - - /** - * Gets the value of the loeschanstoss property. - * - *

- * 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 set method for the loeschanstoss property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLOESCHANSTOSS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LOESCHANSTOSSType } - * - * - */ - public List getLOESCHANSTOSS() { - if (loeschanstoss == null) { - loeschanstoss = new ArrayList(); - } - return this.loeschanstoss; - } - - /** - * Gets the value of the person property. - * - *

- * 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 set method for the person property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PERSONType } - * - * - */ - public List getPERSON() { - if (person == null) { - person = new ArrayList(); - } - return this.person; - } - - /** - * Gets the value of the vertrag property. - * - *

- * 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 set method for the vertrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAG } - * - * - */ - public List getVERTRAG() { - if (vertrag == null) { - vertrag = new ArrayList(); - } - return this.vertrag; - } - - /** - * Gets the value of the schaden property. - * - *

- * 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 set method for the schaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENType } - * - * - */ - public List getSCHADEN() { - if (schaden == null) { - schaden = new ArrayList(); - } - return this.schaden; - } - - /** - * Gets the value of the provision property. - * - *

- * 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 set method for the provision property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPROVISION().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PROVISIONType } - * - * - */ - public List getPROVISION() { - if (provision == null) { - provision = new ArrayList(); - } - return this.provision; - } - - /** - * Gets the value of the mahnung property. - * - *

- * 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 set method for the mahnung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMAHNUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MAHNUNGType } - * - * - */ - public List getMAHNUNG() { - if (mahnung == null) { - mahnung = new ArrayList(); - } - return this.mahnung; - } - - /** - * Gets the value of the vertragsfonds property. - * - *

- * 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 set method for the vertragsfonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSFONDSType } - * - * - */ - public List getVERTRAGSFONDS() { - if (vertragsfonds == null) { - vertragsfonds = new ArrayList(); - } - return this.vertragsfonds; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der paketZpktErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktErstell() { - return paketZpktErstell; - } - - /** - * Legt den Wert der paketZpktErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktErstell(XMLGregorianCalendar value) { - this.paketZpktErstell = value; - } - - /** - * Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktLetztErstell() { - return paketZpktLetztErstell; - } - - /** - * Legt den Wert der paketZpktLetztErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktLetztErstell(XMLGregorianCalendar value) { - this.paketZpktLetztErstell = value; - } - - /** - * Ruft den Wert der paketInhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketInhCdType } - * - */ - public PaketInhCdType getPaketInhCd() { - return paketInhCd; - } - - /** - * Legt den Wert der paketInhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketInhCdType } - * - */ - public void setPaketInhCd(PaketInhCdType value) { - this.paketInhCd = value; - } - - /** - * Ruft den Wert der paketUmfCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPaketUmfCd() { - return paketUmfCd; - } - - /** - * Legt den Wert der paketUmfCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPaketUmfCd(PaketUmfCdType value) { - this.paketUmfCd = value; - } - - /** - * Ruft den Wert der omdsVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOMDSVersion() { - return omdsVersion; - } - - /** - * Legt den Wert der omdsVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOMDSVersion(String value) { - this.omdsVersion = value; - } - - /** - * Ruft den Wert der vuVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUVersion() { - return vuVersion; - } - - /** - * Legt den Wert der vuVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUVersion(String value) { - this.vuVersion = value; - } - - /** - * Ruft den Wert der dvrNrAbs-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDVRNrAbs() { - return dvrNrAbs; - } - - /** - * Legt den Wert der dvrNrAbs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDVRNrAbs(String value) { - this.dvrNrAbs = value; - } - - /** - * Ruft den Wert der paketKommentar-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaketKommentar() { - return paketKommentar; - } - - /** - * Legt den Wert der paketKommentar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaketKommentar(String value) { - this.paketKommentar = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PERSONType.java deleted file mode 100644 index 3f13676a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PERSONType.java +++ /dev/null @@ -1,396 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Personennr">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PERSON_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class PERSONType { - - @XmlElement(name = "NATUERLICHE_PERSON") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - @XmlAttribute(name = "PersArtCd", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIO.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIO.java deleted file mode 100644 index 367045d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIO.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}PORTFOLIO_TYPE">
- *       <sequence>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "fonds" -}) -@XmlRootElement(name = "PORTFOLIO") -public class PORTFOLIO - extends PORTFOLIOTYPE -{ - - @XmlElement(name = "FONDS") - protected List fonds; - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIOTYPE.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIOTYPE.java deleted file mode 100644 index ac3c1e83..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PORTFOLIOTYPE.java +++ /dev/null @@ -1,307 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PORTFOLIO_TYPE complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PORTFOLIO_TYPE">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
- *       <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PORTFOLIO_TYPE") -@XmlSeeAlso({ - PORTFOLIO.class -}) -public class PORTFOLIOTYPE { - - @XmlAttribute(name = "PortfolioID", required = true) - protected String portfolioID; - @XmlAttribute(name = "ISIN") - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der portfolioID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPortfolioID() { - return portfolioID; - } - - /** - * Legt den Wert der portfolioID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPortfolioID(String value) { - this.portfolioID = value; - } - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PROVISIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PROVISIONType.java deleted file mode 100644 index 41c2512d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PROVISIONType.java +++ /dev/null @@ -1,544 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PROVISION_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PROVISION_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ProvisionsID" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ProvVon" type="{urn:omds20}Datum" />
- *       <attribute name="ProvBis" type="{urn:omds20}Datum" />
- *       <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
- *       <attribute name="ProvTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
- *       <attribute name="ProvSatz" type="{urn:omds20}decimal" />
- *       <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ProvArtText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PROVISION_Type") -public class PROVISIONType { - - @XmlAttribute(name = "ProvisionsID", required = true) - protected String provisionsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "VerbandSparteCd") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung") - protected String spartenErweiterung; - @XmlAttribute(name = "BuchDat", required = true) - protected XMLGregorianCalendar buchDat; - @XmlAttribute(name = "ProvVon") - protected XMLGregorianCalendar provVon; - @XmlAttribute(name = "ProvBis") - protected XMLGregorianCalendar provBis; - @XmlAttribute(name = "ProvArtCd", required = true) - protected String provArtCd; - @XmlAttribute(name = "ProvTxt") - protected String provTxt; - @XmlAttribute(name = "ProvGrdlg") - protected BigDecimal provGrdlg; - @XmlAttribute(name = "ProvSatz") - protected BigDecimal provSatz; - @XmlAttribute(name = "ProvBetrag", required = true) - protected BigDecimal provBetrag; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ProvArtText") - protected String provArtText; - @XmlAttribute(name = "Vorpolizze") - protected String vorpolizze; - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der buchDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBuchDat() { - return buchDat; - } - - /** - * Legt den Wert der buchDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBuchDat(XMLGregorianCalendar value) { - this.buchDat = value; - } - - /** - * Ruft den Wert der provVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvVon() { - return provVon; - } - - /** - * Legt den Wert der provVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvVon(XMLGregorianCalendar value) { - this.provVon = value; - } - - /** - * Ruft den Wert der provBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvBis() { - return provBis; - } - - /** - * Legt den Wert der provBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvBis(XMLGregorianCalendar value) { - this.provBis = value; - } - - /** - * Ruft den Wert der provArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtCd() { - return provArtCd; - } - - /** - * Legt den Wert der provArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtCd(String value) { - this.provArtCd = value; - } - - /** - * Ruft den Wert der provTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvTxt() { - return provTxt; - } - - /** - * Legt den Wert der provTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvTxt(String value) { - this.provTxt = value; - } - - /** - * Ruft den Wert der provGrdlg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvGrdlg() { - return provGrdlg; - } - - /** - * Legt den Wert der provGrdlg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvGrdlg(BigDecimal value) { - this.provGrdlg = value; - } - - /** - * Ruft den Wert der provSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvSatz() { - return provSatz; - } - - /** - * Legt den Wert der provSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvSatz(BigDecimal value) { - this.provSatz = value; - } - - /** - * Ruft den Wert der provBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvBetrag() { - return provBetrag; - } - - /** - * Legt den Wert der provBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvBetrag(BigDecimal value) { - this.provBetrag = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der provArtText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtText() { - return provArtText; - } - - /** - * Legt den Wert der provArtText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtText(String value) { - this.provArtText = value; - } - - /** - * Ruft den Wert der vorpolizze-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorpolizze() { - return vorpolizze; - } - - /** - * Legt den Wert der vorpolizze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorpolizze(String value) { - this.vorpolizze = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketInhCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketInhCdType.java deleted file mode 100644 index 909bc444..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketInhCdType.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketInhCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PaketInhCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AI"/>
- *     <enumeration value="VF"/>
- *     <enumeration value="VI"/>
- *     <enumeration value="VK"/>
- *     <enumeration value="VM"/>
- *     <enumeration value="VP"/>
- *     <enumeration value="VS"/>
- *     <enumeration value="VV"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketInhCd_Type") -@XmlEnum -public enum PaketInhCdType { - - - /** - * Allgem. Initialbestand (generelle Schlüssel) - * - */ - AI, - - /** - * VU Fondsbestand - * - */ - VF, - - /** - * VU Initialbestand (VU Schlüssel) - * - */ - VI, - - /** - * VU Mahn/Klagebestand - * - */ - VK, - - /** - * VU Mischbestand - * - */ - VM, - - /** - * VU Provisionen - * - */ - VP, - - /** - * VU Schadenbestand - * - */ - VS, - - /** - * VU Vertragsbestand - * - */ - VV; - - public String value() { - return name(); - } - - public static PaketInhCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketUmfCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketUmfCdType.java deleted file mode 100644 index c5b5db90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PaketUmfCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketUmfCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PaketUmfCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="D"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketUmfCd_Type") -@XmlEnum -public enum PaketUmfCdType { - - - /** - * Differenz - * - */ - D, - - /** - * gesamt - * - */ - G; - - public String value() { - return name(); - } - - public static PaketUmfCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PersArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PersArtCdType.java deleted file mode 100644 index 56920fc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PersArtCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PersArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="N"/>
- *     <enumeration value="S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PersArtCd_Type") -@XmlEnum -public enum PersArtCdType { - - - /** - * natürliche Person - * - */ - N, - - /** - * sonstige Person - * - */ - S; - - public String value() { - return name(); - } - - public static PersArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PolArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PolArtCdType.java deleted file mode 100644 index 54364e59..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PolArtCdType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="N"/>
- *     <enumeration value="V"/>
- *     <enumeration value="X"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolArtCd_Type") -@XmlEnum -public enum PolArtCdType { - - - /** - * Ersatzpolizze bei Ersatz/Konv. - * - */ - E, - - /** - * Nachversicherung - * - */ - N, - - /** - * Vorpolizze bei Ersatz/Konv. - * - */ - V, - - /** - * Vorpolizze bei Migration - * - */ - X; - - public String value() { - return name(); - } - - public static PolArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PraemFristCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PraemFristCdType.java deleted file mode 100644 index aa91ba82..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/PraemFristCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PraemFristCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PraemFristCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="J"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PraemFristCd_Type") -@XmlEnum -public enum PraemFristCdType { - - - /** - * Einmal - * - */ - E, - - /** - * Jahr - * - */ - J; - - public String value() { - return name(); - } - - public static PraemFristCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RISIKOType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RISIKOType.java deleted file mode 100644 index b6cc26ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RISIKOType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RISIKO_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RISIKO_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Objekt"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="RisikoArtCd" type="{urn:omds20}RisikoArtCd_Type" />
- *       <attribute name="RisikoBez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemFristCd" type="{urn:omds20}PraemFristCd_Type" />
- *       <attribute name="PraemieNto" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RISIKO_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung" -}) -public class RISIKOType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Objekt", type = ELObjektType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlAttribute(name = "RisikoLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int risikoLfnr; - @XmlAttribute(name = "RisikoArtCd") - protected RisikoArtCdType risikoArtCd; - @XmlAttribute(name = "RisikoBez", required = true) - protected String risikoBez; - @XmlAttribute(name = "PraemFristCd") - protected PraemFristCdType praemFristCd; - @XmlAttribute(name = "PraemieNto") - protected BigDecimal praemieNto; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELObjektType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELVersicherungssummeType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Ruft den Wert der risikoLfnr-Eigenschaft ab. - * - */ - public int getRisikoLfnr() { - return risikoLfnr; - } - - /** - * Legt den Wert der risikoLfnr-Eigenschaft fest. - * - */ - public void setRisikoLfnr(int value) { - this.risikoLfnr = value; - } - - /** - * Ruft den Wert der risikoArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoArtCdType } - * - */ - public RisikoArtCdType getRisikoArtCd() { - return risikoArtCd; - } - - /** - * Legt den Wert der risikoArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoArtCdType } - * - */ - public void setRisikoArtCd(RisikoArtCdType value) { - this.risikoArtCd = value; - } - - /** - * Ruft den Wert der risikoBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRisikoBez() { - return risikoBez; - } - - /** - * Legt den Wert der risikoBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRisikoBez(String value) { - this.risikoBez = value; - } - - /** - * Ruft den Wert der praemFristCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemFristCdType } - * - */ - public PraemFristCdType getPraemFristCd() { - return praemFristCd; - } - - /** - * Legt den Wert der praemFristCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemFristCdType } - * - */ - public void setPraemFristCd(PraemFristCdType value) { - this.praemFristCd = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RisikoArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RisikoArtCdType.java deleted file mode 100644 index f322c578..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/RisikoArtCdType.java +++ /dev/null @@ -1,1109 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="RisikoArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AH1"/>
- *     <enumeration value="AK1"/>
- *     <enumeration value="AK2"/>
- *     <enumeration value="AS1"/>
- *     <enumeration value="AS2"/>
- *     <enumeration value="AS3"/>
- *     <enumeration value="AS4"/>
- *     <enumeration value="AU1"/>
- *     <enumeration value="AU2"/>
- *     <enumeration value="AU3"/>
- *     <enumeration value="AU4"/>
- *     <enumeration value="AU5"/>
- *     <enumeration value="AV1"/>
- *     <enumeration value="BA1"/>
- *     <enumeration value="BD1"/>
- *     <enumeration value="B01"/>
- *     <enumeration value="B02"/>
- *     <enumeration value="B03"/>
- *     <enumeration value="B04"/>
- *     <enumeration value="B05"/>
- *     <enumeration value="B06"/>
- *     <enumeration value="B11"/>
- *     <enumeration value="E01"/>
- *     <enumeration value="E02"/>
- *     <enumeration value="EC1"/>
- *     <enumeration value="F01"/>
- *     <enumeration value="F02"/>
- *     <enumeration value="F03"/>
- *     <enumeration value="F04"/>
- *     <enumeration value="F05"/>
- *     <enumeration value="G01"/>
- *     <enumeration value="G02"/>
- *     <enumeration value="H01"/>
- *     <enumeration value="H02"/>
- *     <enumeration value="H03"/>
- *     <enumeration value="H04"/>
- *     <enumeration value="H05"/>
- *     <enumeration value="H06"/>
- *     <enumeration value="H07"/>
- *     <enumeration value="H08"/>
- *     <enumeration value="H99"/>
- *     <enumeration value="HH1"/>
- *     <enumeration value="K01"/>
- *     <enumeration value="K02"/>
- *     <enumeration value="K03"/>
- *     <enumeration value="K04"/>
- *     <enumeration value="K09"/>
- *     <enumeration value="K10"/>
- *     <enumeration value="K99"/>
- *     <enumeration value="L01"/>
- *     <enumeration value="L02"/>
- *     <enumeration value="L03"/>
- *     <enumeration value="L04"/>
- *     <enumeration value="L05"/>
- *     <enumeration value="L06"/>
- *     <enumeration value="L07"/>
- *     <enumeration value="L08"/>
- *     <enumeration value="L09"/>
- *     <enumeration value="L10"/>
- *     <enumeration value="L11"/>
- *     <enumeration value="L99"/>
- *     <enumeration value="LS1"/>
- *     <enumeration value="LW1"/>
- *     <enumeration value="M01"/>
- *     <enumeration value="M02"/>
- *     <enumeration value="M03"/>
- *     <enumeration value="M04"/>
- *     <enumeration value="M05"/>
- *     <enumeration value="M06"/>
- *     <enumeration value="M07"/>
- *     <enumeration value="R01"/>
- *     <enumeration value="R02"/>
- *     <enumeration value="R03"/>
- *     <enumeration value="R04"/>
- *     <enumeration value="R05"/>
- *     <enumeration value="R06"/>
- *     <enumeration value="R07"/>
- *     <enumeration value="R08"/>
- *     <enumeration value="R09"/>
- *     <enumeration value="R10"/>
- *     <enumeration value="R11"/>
- *     <enumeration value="R12"/>
- *     <enumeration value="R13"/>
- *     <enumeration value="R14"/>
- *     <enumeration value="R15"/>
- *     <enumeration value="R16"/>
- *     <enumeration value="R99"/>
- *     <enumeration value="RE1"/>
- *     <enumeration value="RE2"/>
- *     <enumeration value="RE3"/>
- *     <enumeration value="RE4"/>
- *     <enumeration value="S01"/>
- *     <enumeration value="S12"/>
- *     <enumeration value="S13"/>
- *     <enumeration value="S14"/>
- *     <enumeration value="S15"/>
- *     <enumeration value="S16"/>
- *     <enumeration value="S17"/>
- *     <enumeration value="S99"/>
- *     <enumeration value="ST1"/>
- *     <enumeration value="T01"/>
- *     <enumeration value="T02"/>
- *     <enumeration value="T03"/>
- *     <enumeration value="T04"/>
- *     <enumeration value="T05"/>
- *     <enumeration value="T06"/>
- *     <enumeration value="T07"/>
- *     <enumeration value="T08"/>
- *     <enumeration value="T09"/>
- *     <enumeration value="T11"/>
- *     <enumeration value="T12"/>
- *     <enumeration value="T13"/>
- *     <enumeration value="T20"/>
- *     <enumeration value="T21"/>
- *     <enumeration value="T22"/>
- *     <enumeration value="T23"/>
- *     <enumeration value="T99"/>
- *     <enumeration value="TI1"/>
- *     <enumeration value="U01"/>
- *     <enumeration value="U02"/>
- *     <enumeration value="U03"/>
- *     <enumeration value="U04"/>
- *     <enumeration value="U05"/>
- *     <enumeration value="U06"/>
- *     <enumeration value="U09"/>
- *     <enumeration value="U10"/>
- *     <enumeration value="U11"/>
- *     <enumeration value="U12"/>
- *     <enumeration value="U13"/>
- *     <enumeration value="U14"/>
- *     <enumeration value="U15"/>
- *     <enumeration value="U16"/>
- *     <enumeration value="U17"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoArtCd_Type") -@XmlEnum -public enum RisikoArtCdType { - - - /** - * KFZ-Haftpflicht - * - */ - @XmlEnumValue("AH1") - AH_1("AH1"), - - /** - * Voll- und Gross-Schadenkasko - * - */ - @XmlEnumValue("AK1") - AK_1("AK1"), - - /** - * Teilkasko - * - */ - @XmlEnumValue("AK2") - AK_2("AK2"), - - /** - * KFZ-Assistance - * - */ - @XmlEnumValue("AS1") - AS_1("AS1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("AS2") - AS_2("AS2"), - - /** - * Wohn-Assistance - * - */ - @XmlEnumValue("AS3") - AS_3("AS3"), - - /** - * Unfall-Assistance - * - */ - @XmlEnumValue("AS4") - AS_4("AS4"), - - /** - * Insassen-Unfall - * - */ - @XmlEnumValue("AU1") - AU_1("AU1"), - - /** - * Insassen-Unfall Todesfall - * - */ - @XmlEnumValue("AU2") - AU_2("AU2"), - - /** - * Insassen-Unfall Invalidität - * - */ - @XmlEnumValue("AU3") - AU_3("AU3"), - - /** - * Insassen-Unfall Taggeld - * - */ - @XmlEnumValue("AU4") - AU_4("AU4"), - - /** - * Insassen-Unfall Heilkosten - * - */ - @XmlEnumValue("AU5") - AU_5("AU5"), - - /** - * Abfertigungs-Versicherung - * - */ - @XmlEnumValue("AV1") - AV_1("AV1"), - - /** - * Bausparen Ansparen - * - */ - @XmlEnumValue("BA1") - BA_1("BA1"), - - /** - * Bausparen Darlehen - * - */ - @XmlEnumValue("BD1") - BD_1("BD1"), - - /** - * Betr.Unterbrechung-Feuer-Zivil - * - */ - @XmlEnumValue("B01") - B_01("B01"), - - /** - * Betr.Unterbrechung Feuer-Industrie - * - */ - @XmlEnumValue("B02") - B_02("B02"), - - /** - * Betr.Unterbrechung-EC - * - */ - @XmlEnumValue("B03") - B_03("B03"), - - /** - * Betr.Unterbrechung-Maschinenbruch - * - */ - @XmlEnumValue("B04") - B_04("B04"), - - /** - * Betr.Unterbrechung-Elementarschaden - * - */ - @XmlEnumValue("B05") - B_05("B05"), - - /** - * Betr.Unterbrechung f.freiber. Tätige - * - */ - @XmlEnumValue("B06") - B_06("B06"), - - /** - * Veranstaltungen - * - */ - @XmlEnumValue("B11") - B_11("B11"), - - /** - * Einbruch-Diebstahl - * - */ - @XmlEnumValue("E01") - E_01("E01"), - - /** - * Kassenboten - * - */ - @XmlEnumValue("E02") - E_02("E02"), - - /** - * Extended Coverage - * - */ - @XmlEnumValue("EC1") - EC_1("EC1"), - - /** - * Feuer-Zivil - * - */ - @XmlEnumValue("F01") - F_01("F01"), - - /** - * Feuer-Landwirtschaft - * - */ - @XmlEnumValue("F02") - F_02("F02"), - - /** - * Feuer-Industrie - * - */ - @XmlEnumValue("F03") - F_03("F03"), - - /** - * Feuer-EC - * - */ - @XmlEnumValue("F04") - F_04("F04"), - - /** - * Waldbrand - * - */ - @XmlEnumValue("F05") - F_05("F05"), - - /** - * Glasbruch privat - * - */ - @XmlEnumValue("G01") - G_01("G01"), - - /** - * Glasbruch Geschäft - * - */ - @XmlEnumValue("G02") - G_02("G02"), - - /** - * Allg.Haftpflicht - * - */ - @XmlEnumValue("H01") - H_01("H01"), - - /** - * Sonder-Haftpflicht - * - */ - @XmlEnumValue("H02") - H_02("H02"), - - /** - * Flug-Haftpflicht - * - */ - @XmlEnumValue("H03") - H_03("H03"), - - /** - * Vermögensschaden - * - */ - @XmlEnumValue("H04") - H_04("H04"), - - /** - * Atom-Haftpflicht - * - */ - @XmlEnumValue("H05") - H_05("H05"), - - /** - * Verkehrs-Haftpflicht - * - */ - @XmlEnumValue("H06") - H_06("H06"), - - /** - * Bauherrn-Haftpflicht - * - */ - @XmlEnumValue("H07") - H_07("H07"), - - /** - * Boots-Haftpflicht - * - */ - @XmlEnumValue("H08") - H_08("H08"), - - /** - * Sonstige Haftpflicht - * - */ - @XmlEnumValue("H99") - H_99("H99"), - - /** - * Haushalt - * - */ - @XmlEnumValue("HH1") - HH_1("HH1"), - - /** - * Spital - * - */ - @XmlEnumValue("K01") - K_01("K01"), - - /** - * Ambulanz - * - */ - @XmlEnumValue("K02") - K_02("K02"), - - /** - * Heilmittel - * - */ - @XmlEnumValue("K03") - K_03("K03"), - - /** - * Taggeld - * - */ - @XmlEnumValue("K04") - K_04("K04"), - - /** - * Reise-KV - * - */ - @XmlEnumValue("K09") - K_09("K09"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("K10") - K_10("K10"), - - /** - * KV sonstige - * - */ - @XmlEnumValue("K99") - K_99("K99"), - - /** - * Leben Kapital - * - */ - @XmlEnumValue("L01") - L_01("L01"), - - /** - * Leben Risiko - * - */ - @XmlEnumValue("L02") - L_02("L02"), - - /** - * Leben Rente - * - */ - @XmlEnumValue("L03") - L_03("L03"), - - /** - * Leben Dread Disease - * - */ - @XmlEnumValue("L04") - L_04("L04"), - - /** - * Leben veranlagungsorientiert - * - */ - @XmlEnumValue("L05") - L_05("L05"), - - /** - * Leben Kreditrestschuld - * - */ - @XmlEnumValue("L06") - L_06("L06"), - - /** - * Leben prämiengefördert - * - */ - @XmlEnumValue("L07") - L_07("L07"), - - /** - * Leben fondgebunden - * - */ - @XmlEnumValue("L08") - L_08("L08"), - - /** - * Berufsunfähigkeit - * - */ - @XmlEnumValue("L09") - L_09("L09"), - - /** - * Erwerbsunfähigkeit - * - */ - @XmlEnumValue("L10") - L_10("L10"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("L11") - L_11("L11"), - - /** - * Leben sonstige - * - */ - @XmlEnumValue("L99") - L_99("L99"), - - /** - * Leasing - * - */ - @XmlEnumValue("LS1") - LS_1("LS1"), - - /** - * Leitungswasser - * - */ - @XmlEnumValue("LW1") - LW_1("LW1"), - - /** - * Maschinenbruch - * - */ - @XmlEnumValue("M01") - M_01("M01"), - - /** - * Maschinen-Montage - * - */ - @XmlEnumValue("M02") - M_02("M02"), - - /** - * Maschinen-Garantie - * - */ - @XmlEnumValue("M03") - M_03("M03"), - - /** - * Elektrogeräte - * - */ - @XmlEnumValue("M04") - M_04("M04"), - - /** - * Computer und Unterhaltungselektronik - * - */ - @XmlEnumValue("M05") - M_05("M05"), - - /** - * Tiefkühltruhen - * - */ - @XmlEnumValue("M06") - M_06("M06"), - - /** - * Haustechnik - * - */ - @XmlEnumValue("M07") - M_07("M07"), - - /** - * Privat Rechtschutz - * - */ - @XmlEnumValue("R01") - R_01("R01"), - - /** - * Kfz-Rechtschutz - * - */ - @XmlEnumValue("R02") - R_02("R02"), - - /** - * Firmen-Rechtschutz - * - */ - @XmlEnumValue("R03") - R_03("R03"), - - /** - * Schadenersatz- und Strafrechtsschutz - * - */ - @XmlEnumValue("R04") - R_04("R04"), - - /** - * Arbeitsgerichtsrechtsschutz - * - */ - @XmlEnumValue("R05") - R_05("R05"), - - /** - * Sozialversicherungsrechtsschutz - * - */ - @XmlEnumValue("R06") - R_06("R06"), - - /** - * Beratungsrechtsschutz - * - */ - @XmlEnumValue("R07") - R_07("R07"), - - /** - * Allgemeiner Vertragsrechtsschutz - * - */ - @XmlEnumValue("R08") - R_08("R08"), - - /** - * Grundstückseigentum- und Mietenrechtsschutz - * - */ - @XmlEnumValue("R09") - R_09("R09"), - - /** - * Erb- und Familienrechtsschutz - * - */ - @XmlEnumValue("R10") - R_10("R10"), - - /** - * Disziplinarverfahren - * - */ - @XmlEnumValue("R11") - R_11("R11"), - - /** - * Disziplinarverfahren für angestellte Ärzte - * - */ - @XmlEnumValue("R12") - R_12("R12"), - - /** - * Vorsatzdelikte - * - */ - @XmlEnumValue("R13") - R_13("R13"), - - /** - * Fahrzeugrechtsschutz - * - */ - @XmlEnumValue("R14") - R_14("R14"), - - /** - * Lenkerrechtsschutz - * - */ - @XmlEnumValue("R15") - R_15("R15"), - - /** - * Fahrzeugvertragsrechtsschutz - * - */ - @XmlEnumValue("R16") - R_16("R16"), - - /** - * Sonstiger Rechtsschutz - * - */ - @XmlEnumValue("R99") - R_99("R99"), - - /** - * Reise-Storno - * - */ - @XmlEnumValue("RE1") - RE_1("RE1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("RE2") - RE_2("RE2"), - - /** - * Reise-Kranken - * - */ - @XmlEnumValue("RE3") - RE_3("RE3"), - - /** - * Reise-Unfall - * - */ - @XmlEnumValue("RE4") - RE_4("RE4"), - - /** - * Kühlgut - * - */ - @XmlEnumValue("S01") - S_01("S01"), - - /** - * Lizenzverlust - * - */ - @XmlEnumValue("S12") - S_12("S12"), - - /** - * Atom-Sach - * - */ - @XmlEnumValue("S13") - S_13("S13"), - - /** - * Bauwesen - * - */ - @XmlEnumValue("S14") - S_14("S14"), - - /** - * Flugkasko - * - */ - @XmlEnumValue("S15") - S_15("S15"), - - /** - * Bootskasko - * - */ - @XmlEnumValue("S16") - S_16("S16"), - - /** - * Grabstätten - * - */ - @XmlEnumValue("S17") - S_17("S17"), - - /** - * sonstige SV - * - */ - @XmlEnumValue("S99") - S_99("S99"), - - /** - * Sturm - * - */ - @XmlEnumValue("ST1") - ST_1("ST1"), - - /** - * Land-Binnenwaren - * - */ - @XmlEnumValue("T01") - T_01("T01"), - - /** - * See - * - */ - @XmlEnumValue("T02") - T_02("T02"), - - /** - * Krieg - * - */ - @XmlEnumValue("T03") - T_03("T03"), - - /** - * Lager - * - */ - @XmlEnumValue("T04") - T_04("T04"), - - /** - * Valoren-Gewerblich - * - */ - @XmlEnumValue("T05") - T_05("T05"), - - /** - * Valoren-Privat - * - */ - @XmlEnumValue("T06") - T_06("T06"), - - /** - * Sportboot-Kasko - * - */ - @XmlEnumValue("T07") - T_07("T07"), - - /** - * Musik-Instrumente - * - */ - @XmlEnumValue("T08") - T_08("T08"), - - /** - * Kunst - * - */ - @XmlEnumValue("T09") - T_09("T09"), - - /** - * Seekasko - * - */ - @XmlEnumValue("T11") - T_11("T11"), - - /** - * Flusskasko - * - */ - @XmlEnumValue("T12") - T_12("T12"), - - /** - * Landkasko - * - */ - @XmlEnumValue("T13") - T_13("T13"), - - /** - * Reisegepäck - * - */ - @XmlEnumValue("T20") - T_20("T20"), - - /** - * Fotoapparate - * - */ - @XmlEnumValue("T21") - T_21("T21"), - - /** - * Film/Sach - * - */ - @XmlEnumValue("T22") - T_22("T22"), - - /** - * Film/Ausfall - * - */ - @XmlEnumValue("T23") - T_23("T23"), - - /** - * Sonstige Transport - * - */ - @XmlEnumValue("T99") - T_99("T99"), - - /** - * Tier - * - */ - @XmlEnumValue("TI1") - TI_1("TI1"), - - /** - * Allg.Unfall - * - */ - @XmlEnumValue("U01") - U_01("U01"), - - /** - * Kollektiv Unfall - * - */ - @XmlEnumValue("U02") - U_02("U02"), - - /** - * Schülerunfall - * - */ - @XmlEnumValue("U03") - U_03("U03"), - - /** - * Volksunfall - * - */ - @XmlEnumValue("U04") - U_04("U04"), - - /** - * Flug-Unfall - * - */ - @XmlEnumValue("U05") - U_05("U05"), - - /** - * Boots-Unfall - * - */ - @XmlEnumValue("U06") - U_06("U06"), - - /** - * Besucher-Unfall - * - */ - @XmlEnumValue("U09") - U_09("U09"), - - /** - * Unfall mit Kapitalrückgewähr - * - */ - @XmlEnumValue("U10") - U_10("U10"), - - /** - * Taggeld - * - */ - @XmlEnumValue("U11") - U_11("U11"), - - /** - * Invalidität - * - */ - @XmlEnumValue("U12") - U_12("U12"), - - /** - * Unfallrente - * - */ - @XmlEnumValue("U13") - U_13("U13"), - - /** - * Unfalltod - * - */ - @XmlEnumValue("U14") - U_14("U14"), - - /** - * Spitalgeld - * - */ - @XmlEnumValue("U15") - U_15("U15"), - - /** - * Unfallkosten - * - */ - @XmlEnumValue("U16") - U_16("U16"), - - /** - * Kostenersatz - * - */ - @XmlEnumValue("U17") - U_17("U17"); - private final String value; - - RisikoArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoArtCdType fromValue(String v) { - for (RisikoArtCdType c: RisikoArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENBETEILIGTERType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENBETEILIGTERType.java deleted file mode 100644 index 7b3bf2eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENBETEILIGTERType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SCHADEN_BETEILIGTER_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_BETEILIGTER_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = { - "geschaedigtesobjekt", - "zahlung" -}) -public class SCHADENBETEILIGTERType { - - @XmlElement(name = "GESCHAEDIGTES_OBJEKT") - protected List geschaedigtesobjekt; - @XmlElement(name = "ZAHLUNG") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "BetRolleCd", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt") - protected String betTxt; - - /** - * Gets the value of the geschaedigtesobjekt property. - * - *

- * 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 set method for the geschaedigtesobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGESCHAEDIGTESOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GESCHAEDIGTESOBJEKTType } - * - * - */ - public List getGESCHAEDIGTESOBJEKT() { - if (geschaedigtesobjekt == null) { - geschaedigtesobjekt = new ArrayList(); - } - return this.geschaedigtesobjekt; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZAHLUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENType.java deleted file mode 100644 index 1ab1e6ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHADENType.java +++ /dev/null @@ -1,630 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SCHADEN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
- *       <attribute name="SchadUrsTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
- *       <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
- *       <attribute name="ErledDat" type="{urn:omds20}Datum" />
- *       <attribute name="SachbearbVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_Type", propOrder = { - "elAnzahlOrELBetragOrELEinstufung", - "schadenbeteiligter" -}) -public class SCHADENType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlElement(name = "SCHADEN_BETEILIGTER") - protected List schadenbeteiligter; - @XmlAttribute(name = "Schadennr", required = true) - protected String schadennr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr") - protected String vermnr; - @XmlAttribute(name = "VerbandSparteCd") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "Ereigniszpkt", required = true) - protected XMLGregorianCalendar ereigniszpkt; - @XmlAttribute(name = "Meldedat", required = true) - protected XMLGregorianCalendar meldedat; - @XmlAttribute(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlAttribute(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlAttribute(name = "VerschuldenCd") - protected String verschuldenCd; - @XmlAttribute(name = "MalusWirksamKz") - protected Entsch2Type malusWirksamKz; - @XmlAttribute(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlAttribute(name = "ErledDat") - protected XMLGregorianCalendar erledDat; - @XmlAttribute(name = "SachbearbVU") - protected String sachbearbVU; - @XmlAttribute(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELPolizzennummerType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Gets the value of the schadenbeteiligter property. - * - *

- * 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 set method for the schadenbeteiligter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADENBETEILIGTER().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENBETEILIGTERType } - * - * - */ - public List getSCHADENBETEILIGTER() { - if (schadenbeteiligter == null) { - schadenbeteiligter = new ArrayList(); - } - return this.schadenbeteiligter; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - - /** - * Ruft den Wert der malusWirksamKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getMalusWirksamKz() { - return malusWirksamKz; - } - - /** - * Legt den Wert der malusWirksamKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setMalusWirksamKz(Entsch2Type value) { - this.malusWirksamKz = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSachbearbVU(String value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSEL.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSEL.java deleted file mode 100644 index 357c1788..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSEL.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SchlWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Schlbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="50"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SchlWert_generell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SCHLUESSEL") -public class SCHLUESSEL { - - @XmlAttribute(name = "SchlWert", required = true) - protected String schlWert; - @XmlAttribute(name = "Schlbez") - protected String schlbez; - @XmlAttribute(name = "SchlWert_generell") - protected String schlWertGenerell; - - /** - * Ruft den Wert der schlWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWert() { - return schlWert; - } - - /** - * Legt den Wert der schlWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWert(String value) { - this.schlWert = value; - } - - /** - * Ruft den Wert der schlbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlbez() { - return schlbez; - } - - /** - * Legt den Wert der schlbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlbez(String value) { - this.schlbez = value; - } - - /** - * Ruft den Wert der schlWertGenerell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWertGenerell() { - return schlWertGenerell; - } - - /** - * Legt den Wert der schlWertGenerell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWertGenerell(String value) { - this.schlWertGenerell = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSELART.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSELART.java deleted file mode 100644 index 5edae168..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SCHLUESSELART.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element ref="{urn:omds20}SCHLUESSEL"/>
- *       </sequence>
- *       <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
- *       <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="SchlArtBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "schluessel" -}) -@XmlRootElement(name = "SCHLUESSELART") -public class SCHLUESSELART { - - @XmlElement(name = "SCHLUESSEL", required = true) - protected List schluessel; - @XmlAttribute(name = "SchlArtCd", required = true) - protected SchlArtCdType schlArtCd; - @XmlAttribute(name = "VUWertErlaubtKz", required = true) - protected Entsch2Type vuWertErlaubtKz; - @XmlAttribute(name = "SchlArtBez") - protected String schlArtBez; - - /** - * Gets the value of the schluessel property. - * - *

- * 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 set method for the schluessel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSEL } - * - * - */ - public List getSCHLUESSEL() { - if (schluessel == null) { - schluessel = new ArrayList(); - } - return this.schluessel; - } - - /** - * Ruft den Wert der schlArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchlArtCdType } - * - */ - public SchlArtCdType getSchlArtCd() { - return schlArtCd; - } - - /** - * Legt den Wert der schlArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchlArtCdType } - * - */ - public void setSchlArtCd(SchlArtCdType value) { - this.schlArtCd = value; - } - - /** - * Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getVUWertErlaubtKz() { - return vuWertErlaubtKz; - } - - /** - * Legt den Wert der vuWertErlaubtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setVUWertErlaubtKz(Entsch2Type value) { - this.vuWertErlaubtKz = value; - } - - /** - * Ruft den Wert der schlArtBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlArtBez() { - return schlArtBez; - } - - /** - * Legt den Wert der schlArtBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlArtBez(String value) { - this.schlArtBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SONSTIGEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SONSTIGEPERSONType.java deleted file mode 100644 index bf7e7abc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SONSTIGEPERSONType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SONSTIGE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SONSTIGE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Name" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="120"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kurzname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SONSTIGE_PERSON_Type") -public class SONSTIGEPERSONType { - - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Kurzname") - protected String kurzname; - @XmlAttribute(name = "SonstPersArtCd", required = true) - protected String sonstPersArtCd; - - /** - * 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 kurzname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKurzname() { - return kurzname; - } - - /** - * Legt den Wert der kurzname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKurzname(String value) { - this.kurzname = value; - } - - /** - * Ruft den Wert der sonstPersArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSonstPersArtCd() { - return sonstPersArtCd; - } - - /** - * Legt den Wert der sonstPersArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSonstPersArtCd(String value) { - this.sonstPersArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SPARTEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SPARTEType.java deleted file mode 100644 index d42697ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SPARTEType.java +++ /dev/null @@ -1,556 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SPARTE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SPARTE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *         <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="Spartentxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
- *       <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="HauptTarifBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="25"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SPARTE_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung", - "risiko" -}) -public class SPARTEType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlElement(name = "RISIKO", required = true) - protected List risiko; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "SpartenID") - protected String spartenID; - @XmlAttribute(name = "VerbandSparteCd", required = true) - protected String verbandSparteCd; - @XmlAttribute(name = "Spartentxt") - protected String spartentxt; - @XmlAttribute(name = "SpartenBeg") - protected XMLGregorianCalendar spartenBeg; - @XmlAttribute(name = "SpartenEnd") - protected XMLGregorianCalendar spartenEnd; - @XmlAttribute(name = "StatusCd") - protected String statusCd; - @XmlAttribute(name = "HauptTarifBez") - protected String hauptTarifBez; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "DirBeteiligtKz") - protected String dirBeteiligtKz; - @XmlAttribute(name = "SondervereinbarungKz") - protected String sondervereinbarungKz; - @XmlAttribute(name = "PraemieNtoSp", required = true) - protected BigDecimal praemieNtoSp; - @XmlAttribute(name = "PraemieBtoSp", required = true) - protected BigDecimal praemieBtoSp; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Gets the value of the risiko property. - * - *

- * 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 set method for the risiko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRISIKO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RISIKOType } - * - * - */ - public List getRISIKO() { - if (risiko == null) { - risiko = new ArrayList(); - } - return this.risiko; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der spartenID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenID() { - return spartenID; - } - - /** - * Legt den Wert der spartenID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenID(String value) { - this.spartenID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartentxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartentxt() { - return spartentxt; - } - - /** - * Legt den Wert der spartentxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartentxt(String value) { - this.spartentxt = value; - } - - /** - * Ruft den Wert der spartenBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenBeg() { - return spartenBeg; - } - - /** - * Legt den Wert der spartenBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenBeg(XMLGregorianCalendar value) { - this.spartenBeg = value; - } - - /** - * Ruft den Wert der spartenEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenEnd() { - return spartenEnd; - } - - /** - * Legt den Wert der spartenEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenEnd(XMLGregorianCalendar value) { - this.spartenEnd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hauptTarifBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHauptTarifBez() { - return hauptTarifBez; - } - - /** - * Legt den Wert der hauptTarifBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHauptTarifBez(String value) { - this.hauptTarifBez = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der dirBeteiligtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirBeteiligtKz() { - return dirBeteiligtKz; - } - - /** - * Legt den Wert der dirBeteiligtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirBeteiligtKz(String value) { - this.dirBeteiligtKz = value; - } - - /** - * Ruft den Wert der sondervereinbarungKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSondervereinbarungKz() { - return sondervereinbarungKz; - } - - /** - * Legt den Wert der sondervereinbarungKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSondervereinbarungKz(String value) { - this.sondervereinbarungKz = value; - } - - /** - * Ruft den Wert der praemieNtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoSp() { - return praemieNtoSp; - } - - /** - * Legt den Wert der praemieNtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoSp(BigDecimal value) { - this.praemieNtoSp = value; - } - - /** - * Ruft den Wert der praemieBtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoSp() { - return praemieBtoSp; - } - - /** - * Legt den Wert der praemieBtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoSp(BigDecimal value) { - this.praemieBtoSp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SbhArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SbhArtCdType.java deleted file mode 100644 index a8d109f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SbhArtCdType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SbhArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SbhArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MIS"/>
- *     <enumeration value="MXK"/>
- *     <enumeration value="MXS"/>
- *     <enumeration value="STS"/>
- *     <enumeration value="SSO"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SbhArtCd_Type") -@XmlEnum -public enum SbhArtCdType { - - - /** - * Mindestselbstbehalt je Schadenfall - * - */ - MIS, - - /** - * Maximalselbstbehalt kumuliert - * - */ - MXK, - - /** - * Maximalselbstbehalt je Schadenfall - * - */ - MXS, - - /** - * Standardselbstbehalt je Schadenfall - * - */ - STS, - - /** - * Selbstbehalt sonst - * - */ - SSO; - - public String value() { - return name(); - } - - public static SbhArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SchlArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SchlArtCdType.java deleted file mode 100644 index 967b3156..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/SchlArtCdType.java +++ /dev/null @@ -1,535 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchlArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchlArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="25"/>
- *     <enumeration value="AendGrundCd"/>
- *     <enumeration value="AntriebsArtCd"/>
- *     <enumeration value="AusstattungCd"/>
- *     <enumeration value="BauartCd"/>
- *     <enumeration value="BBArtCd"/>
- *     <enumeration value="BearbStandCd"/>
- *     <enumeration value="BetragArtCd"/>
- *     <enumeration value="BetRolleCd"/>
- *     <enumeration value="DachungCd"/>
- *     <enumeration value="EFrageCd"/>
- *     <enumeration value="EstArtCd"/>
- *     <enumeration value="FamilienstandCd"/>
- *     <enumeration value="FlaechenAttributCd"/>
- *     <enumeration value="FzgArtCd"/>
- *     <enumeration value="GebaeudeArtCd"/>
- *     <enumeration value="GebaeudeHoeheCd"/>
- *     <enumeration value="GeschlechtCd"/>
- *     <enumeration value="GrundRuecklaufCd"/>
- *     <enumeration value="GrwArtCd"/>
- *     <enumeration value="IdfArtCd"/>
- *     <enumeration value="IndexArtCd"/>
- *     <enumeration value="KomArtCd"/>
- *     <enumeration value="LandesCd"/>
- *     <enumeration value="LegArtCd"/>
- *     <enumeration value="LoeschCd"/>
- *     <enumeration value="NutzungCd"/>
- *     <enumeration value="ObjektdatenCd"/>
- *     <enumeration value="PaketInhCd"/>
- *     <enumeration value="PaketUmfCd"/>
- *     <enumeration value="PersArtCd"/>
- *     <enumeration value="PfrArtCd"/>
- *     <enumeration value="PolArtCd"/>
- *     <enumeration value="PraemFristCd"/>
- *     <enumeration value="PraemKorrArtCd"/>
- *     <enumeration value="ProvArtCd"/>
- *     <enumeration value="RisikoArtCd"/>
- *     <enumeration value="RntRhythmCd"/>
- *     <enumeration value="SbhArtCd"/>
- *     <enumeration value="SchadUrsCd"/>
- *     <enumeration value="SonstPersArtCd"/>
- *     <enumeration value="SpartenCd"/>
- *     <enumeration value="StArtCd"/>
- *     <enumeration value="TxtArtCd"/>
- *     <enumeration value="VSArtCd"/>
- *     <enumeration value="VerbandSparteCd"/>
- *     <enumeration value="VersLwCd"/>
- *     <enumeration value="StatusCd"/>
- *     <enumeration value="VersSacheCd"/>
- *     <enumeration value="VerschuldenCd"/>
- *     <enumeration value="VerwendzweckCd"/>
- *     <enumeration value="VtgProdCd"/>
- *     <enumeration value="VtgRolleCd"/>
- *     <enumeration value="VtgSparteCd"/>
- *     <enumeration value="VtgStatusCd"/>
- *     <enumeration value="WaehrungsCd"/>
- *     <enumeration value="ZRArtCd"/>
- *     <enumeration value="ZahlGrundCd"/>
- *     <enumeration value="ZahlRhythmCd"/>
- *     <enumeration value="ZahlWegCd"/>
- *     <enumeration value="MahnStufeCd"/>
- *     <enumeration value="RueckGrundCd"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchlArtCd_Type") -@XmlEnum -public enum SchlArtCdType { - - - /** - * Änderungsgrund - * - */ - @XmlEnumValue("AendGrundCd") - AEND_GRUND_CD("AendGrundCd"), - - /** - * Antriebsart - * - */ - @XmlEnumValue("AntriebsArtCd") - ANTRIEBS_ART_CD("AntriebsArtCd"), - - /** - * Ausstattung - * - */ - @XmlEnumValue("AusstattungCd") - AUSSTATTUNG_CD("AusstattungCd"), - - /** - * Bauart - * - */ - @XmlEnumValue("BauartCd") - BAUART_CD("BauartCd"), - - /** - * Bezugsberechtigungsart - * - */ - @XmlEnumValue("BBArtCd") - BB_ART_CD("BBArtCd"), - - /** - * Bearbeitungsstand - * - */ - @XmlEnumValue("BearbStandCd") - BEARB_STAND_CD("BearbStandCd"), - - /** - * Betragsart - * - */ - @XmlEnumValue("BetragArtCd") - BETRAG_ART_CD("BetragArtCd"), - - /** - * Beteiligungsrolle - * - */ - @XmlEnumValue("BetRolleCd") - BET_ROLLE_CD("BetRolleCd"), - - /** - * Dachung - * - */ - @XmlEnumValue("DachungCd") - DACHUNG_CD("DachungCd"), - - /** - * Entscheidungsfrage - * - */ - @XmlEnumValue("EFrageCd") - E_FRAGE_CD("EFrageCd"), - - /** - * Einstufungsart - * - */ - @XmlEnumValue("EstArtCd") - EST_ART_CD("EstArtCd"), - - /** - * Familienstand - * - */ - @XmlEnumValue("FamilienstandCd") - FAMILIENSTAND_CD("FamilienstandCd"), - - /** - * Flächenattribut - * - */ - @XmlEnumValue("FlaechenAttributCd") - FLAECHEN_ATTRIBUT_CD("FlaechenAttributCd"), - - /** - * Fahrzeugart - * - */ - @XmlEnumValue("FzgArtCd") - FZG_ART_CD("FzgArtCd"), - - /** - * Art des Gebäudes - * - */ - @XmlEnumValue("GebaeudeArtCd") - GEBAEUDE_ART_CD("GebaeudeArtCd"), - - /** - * Gebäudehöhe - * - */ - @XmlEnumValue("GebaeudeHoeheCd") - GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"), - - /** - * Geschlecht - * - */ - @XmlEnumValue("GeschlechtCd") - GESCHLECHT_CD("GeschlechtCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("GrundRuecklaufCd") - GRUND_RUECKLAUF_CD("GrundRuecklaufCd"), - - /** - * Grenzwertart - * - */ - @XmlEnumValue("GrwArtCd") - GRW_ART_CD("GrwArtCd"), - - /** - * Identifizierungsart - * - */ - @XmlEnumValue("IdfArtCd") - IDF_ART_CD("IdfArtCd"), - - /** - * Indexart - * - */ - @XmlEnumValue("IndexArtCd") - INDEX_ART_CD("IndexArtCd"), - - /** - * KommunikationsArt - * - */ - @XmlEnumValue("KomArtCd") - KOM_ART_CD("KomArtCd"), - - /** - * Ländercode - * - */ - @XmlEnumValue("LandesCd") - LANDES_CD("LandesCd"), - - /** - * Legitimierungsart - * - */ - @XmlEnumValue("LegArtCd") - LEG_ART_CD("LegArtCd"), - - /** - * Löschungsarten - * - */ - @XmlEnumValue("LoeschCd") - LOESCH_CD("LoeschCd"), - - /** - * Nutzung - * - */ - @XmlEnumValue("NutzungCd") - NUTZUNG_CD("NutzungCd"), - - /** - * Objektdatenart - * - */ - @XmlEnumValue("ObjektdatenCd") - OBJEKTDATEN_CD("ObjektdatenCd"), - - /** - * Paketinhalt - * - */ - @XmlEnumValue("PaketInhCd") - PAKET_INH_CD("PaketInhCd"), - - /** - * Paketumfang - * - */ - @XmlEnumValue("PaketUmfCd") - PAKET_UMF_CD("PaketUmfCd"), - - /** - * Personenart - * - */ - @XmlEnumValue("PersArtCd") - PERS_ART_CD("PersArtCd"), - - /** - * Prämienfreiart - * - */ - @XmlEnumValue("PfrArtCd") - PFR_ART_CD("PfrArtCd"), - - /** - * Polizzenart - * - */ - @XmlEnumValue("PolArtCd") - POL_ART_CD("PolArtCd"), - - /** - * Prämienfrist - * - */ - @XmlEnumValue("PraemFristCd") - PRAEM_FRIST_CD("PraemFristCd"), - - /** - * Prämienkorrekturart - * - */ - @XmlEnumValue("PraemKorrArtCd") - PRAEM_KORR_ART_CD("PraemKorrArtCd"), - - /** - * Provisionsart - * - */ - @XmlEnumValue("ProvArtCd") - PROV_ART_CD("ProvArtCd"), - - /** - * Risikoart - * - */ - @XmlEnumValue("RisikoArtCd") - RISIKO_ART_CD("RisikoArtCd"), - - /** - * Rentenzahlungsrhythmus - * - */ - @XmlEnumValue("RntRhythmCd") - RNT_RHYTHM_CD("RntRhythmCd"), - - /** - * Selbstbehaltart - * - */ - @XmlEnumValue("SbhArtCd") - SBH_ART_CD("SbhArtCd"), - - /** - * Schadenursache - * - */ - @XmlEnumValue("SchadUrsCd") - SCHAD_URS_CD("SchadUrsCd"), - - /** - * Art der sonstigen Person - * - */ - @XmlEnumValue("SonstPersArtCd") - SONST_PERS_ART_CD("SonstPersArtCd"), - - /** - * Sparte - * - */ - @XmlEnumValue("SpartenCd") - SPARTEN_CD("SpartenCd"), - - /** - * Steuerart - * - */ - @XmlEnumValue("StArtCd") - ST_ART_CD("StArtCd"), - - /** - * Textart - * - */ - @XmlEnumValue("TxtArtCd") - TXT_ART_CD("TxtArtCd"), - - /** - * Versicherungssummenart - * - */ - @XmlEnumValue("VSArtCd") - VS_ART_CD("VSArtCd"), - - /** - * Verbandssparte - * - */ - @XmlEnumValue("VerbandSparteCd") - VERBAND_SPARTE_CD("VerbandSparteCd"), - - /** - * Versicherte Landwirtschaft - * - */ - @XmlEnumValue("VersLwCd") - VERS_LW_CD("VersLwCd"), - - /** - * Status - * - */ - @XmlEnumValue("StatusCd") - STATUS_CD("StatusCd"), - - /** - * Versicherte Sache - * - */ - @XmlEnumValue("VersSacheCd") - VERS_SACHE_CD("VersSacheCd"), - - /** - * Verschulden - * - */ - @XmlEnumValue("VerschuldenCd") - VERSCHULDEN_CD("VerschuldenCd"), - - /** - * Verwendungszweck - * - */ - @XmlEnumValue("VerwendzweckCd") - VERWENDZWECK_CD("VerwendzweckCd"), - - /** - * Vertragsprodukt - * - */ - @XmlEnumValue("VtgProdCd") - VTG_PROD_CD("VtgProdCd"), - - /** - * Vertragsrolle - * - */ - @XmlEnumValue("VtgRolleCd") - VTG_ROLLE_CD("VtgRolleCd"), - - /** - * Vertragssparte - * - */ - @XmlEnumValue("VtgSparteCd") - VTG_SPARTE_CD("VtgSparteCd"), - - /** - * Vertragsstatus - * - */ - @XmlEnumValue("VtgStatusCd") - VTG_STATUS_CD("VtgStatusCd"), - - /** - * Währung - * - */ - @XmlEnumValue("WaehrungsCd") - WAEHRUNGS_CD("WaehrungsCd"), - - /** - * Art des Zeitraumes - * - */ - @XmlEnumValue("ZRArtCd") - ZR_ART_CD("ZRArtCd"), - - /** - * Zahlungsgrund - * - */ - @XmlEnumValue("ZahlGrundCd") - ZAHL_GRUND_CD("ZahlGrundCd"), - - /** - * Zahlungsrhythmus - * - */ - @XmlEnumValue("ZahlRhythmCd") - ZAHL_RHYTHM_CD("ZahlRhythmCd"), - - /** - * Zahlungsweg - * - */ - @XmlEnumValue("ZahlWegCd") - ZAHL_WEG_CD("ZahlWegCd"), - - /** - * MahnStufe - * - */ - @XmlEnumValue("MahnStufeCd") - MAHN_STUFE_CD("MahnStufeCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("RueckGrundCd") - RUECK_GRUND_CD("RueckGrundCd"); - private final String value; - - SchlArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchlArtCdType fromValue(String v) { - for (SchlArtCdType c: SchlArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/TxtArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/TxtArtCdType.java deleted file mode 100644 index f1a08c8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/TxtArtCdType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für TxtArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="TxtArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ANR"/>
- *     <enumeration value="BER"/>
- *     <enumeration value="FRT"/>
- *     <enumeration value="TIT"/>
- *     <enumeration value="VKL"/>
- *     <enumeration value="SRT"/>
- *     <enumeration value="EXP"/>
- *     <enumeration value="ONR"/>
- *     <enumeration value="FZU"/>
- *     <enumeration value="RIM"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TxtArtCd_Type") -@XmlEnum -public enum TxtArtCdType { - - - /** - * Anrede - * - */ - ANR, - - /** - * Beruf - * - */ - BER, - - /** - * Freitext - * - */ - FRT, - - /** - * Titel - * - */ - TIT, - - /** - * Vertragsspez. Klausel - * - */ - VKL, - - /** - * Beschreibung Schadenort - * - */ - SRT, - - /** - * Schaden-Expertise (Besichtigungsdaten) - * - */ - EXP, - - /** - * Oeamtc-Clubkarten-Nr - * - */ - ONR, - - /** - * Ordnungsbegriff für Zuordnung Fremdsystem - * - */ - FZU, - - /** - * Risikomerkmal - * - */ - RIM; - - public String value() { - return name(); - } - - public static TxtArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZ.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZ.java deleted file mode 100644 index 06fbe48b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZ.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERS_KFZ_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERS_KFZ") -public class VERSKFZ - extends VERSKFZType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZType.java deleted file mode 100644 index 1e3cb56e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSKFZType.java +++ /dev/null @@ -1,734 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERS_KFZ_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_KFZ_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Eigengew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="HzulGesgew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_KFZ_Type") -@XmlSeeAlso({ - VERSKFZ.class -}) -public class VERSKFZType { - - @XmlAttribute(name = "FzgArtCd", required = true) - protected String fzgArtCd; - @XmlAttribute(name = "Marke", required = true) - protected String marke; - @XmlAttribute(name = "Handelsbez") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", required = true) - protected String antriebsArtCd; - @XmlAttribute(name = "Katkz", required = true) - protected String katkz; - @XmlAttribute(name = "ABSKz") - protected Entsch2Type absKz; - @XmlAttribute(name = "CO2_Ausstoss") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", required = true) - protected String fahrgestnr; - @XmlAttribute(name = "Motornr") - protected String motornr; - @XmlAttribute(name = "NatCode") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz") - protected String polKennz; - @XmlAttribute(name = "Eigengew") - protected BigDecimal eigengew; - @XmlAttribute(name = "HzulGesgew") - protected BigDecimal hzulGesgew; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der katkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKatkz() { - return katkz; - } - - /** - * Legt den Wert der katkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKatkz(String value) { - this.katkz = value; - } - - /** - * Ruft den Wert der absKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getABSKz() { - return absKz; - } - - /** - * Legt den Wert der absKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setABSKz(Entsch2Type value) { - this.absKz = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der eigengew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getEigengew() { - return eigengew; - } - - /** - * Legt den Wert der eigengew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setEigengew(BigDecimal value) { - this.eigengew = value; - } - - /** - * Ruft den Wert der hzulGesgew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHzulGesgew() { - return hzulGesgew; - } - - /** - * Legt den Wert der hzulGesgew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHzulGesgew(BigDecimal value) { - this.hzulGesgew = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSOBJEKTType.java deleted file mode 100644 index a04b44a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSOBJEKTType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element ref="{urn:omds20}VERS_PERSON"/>
- *           <element ref="{urn:omds20}VERS_KFZ"/>
- *           <element ref="{urn:omds20}VERS_SACHE"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="VersObjTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_OBJEKT_Type", propOrder = { - "versperson", - "verskfz", - "verssache", - "elAnzahlOrELBetragOrELEinstufung" -}) -public class VERSOBJEKTType { - - @XmlElement(name = "VERS_PERSON") - protected VERSPERSONType versperson; - @XmlElement(name = "VERS_KFZ") - protected VERSKFZ verskfz; - @XmlElement(name = "VERS_SACHE") - protected VERSSACHEType verssache; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int objLfnr; - @XmlAttribute(name = "VersObjTxt") - protected String versObjTxt; - - /** - * Ruft den Wert der versperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSPERSONType } - * - */ - public VERSPERSONType getVERSPERSON() { - return versperson; - } - - /** - * Legt den Wert der versperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSPERSONType } - * - */ - public void setVERSPERSON(VERSPERSONType value) { - this.versperson = value; - } - - /** - * Ruft den Wert der verskfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSKFZ } - * - */ - public VERSKFZ getVERSKFZ() { - return verskfz; - } - - /** - * Legt den Wert der verskfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSKFZ } - * - */ - public void setVERSKFZ(VERSKFZ value) { - this.verskfz = value; - } - - /** - * Ruft den Wert der verssache-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSSACHEType } - * - */ - public VERSSACHEType getVERSSACHE() { - return verssache; - } - - /** - * Legt den Wert der verssache-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSSACHEType } - * - */ - public void setVERSSACHE(VERSSACHEType value) { - this.verssache = value; - } - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELGrenzwertType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - public void setObjLfnr(int value) { - this.objLfnr = value; - } - - /** - * Ruft den Wert der versObjTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersObjTxt() { - return versObjTxt; - } - - /** - * Legt den Wert der versObjTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersObjTxt(String value) { - this.versObjTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSPERSONType.java deleted file mode 100644 index 50c71a7c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSPERSONType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_PERSON_Type") -public class VERSPERSONType { - - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSSACHEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSSACHEType.java deleted file mode 100644 index 214c8802..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSSACHEType.java +++ /dev/null @@ -1,690 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_SACHE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_SACHE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}EL-Objektdaten" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Flaeche" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
- *       <attribute name="VersSacheBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
- *       <attribute name="GebaeudeBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
- *       <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
- *       <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
- *       <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
- *       <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="VersLwCd" type="{urn:omds20}VersLwCd_Type" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="Hersteller">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Modell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_SACHE_Type", propOrder = { - "elObjektdaten", - "elFlaeche" -}) -public class VERSSACHEType { - - @XmlElement(name = "EL-Objektdaten") - protected List elObjektdaten; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlAttribute(name = "VersSacheCd", required = true) - protected String versSacheCd; - @XmlAttribute(name = "VersSacheBez") - protected String versSacheBez; - @XmlAttribute(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlAttribute(name = "GebaeudeBez") - protected String gebaeudeBez; - @XmlAttribute(name = "BauartCd") - protected String bauartCd; - @XmlAttribute(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlAttribute(name = "AusstattungCd") - protected String ausstattungCd; - @XmlAttribute(name = "DachungCd") - protected String dachungCd; - @XmlAttribute(name = "NutzungCd") - protected String nutzungCd; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "VersLwCd") - protected String versLwCd; - @XmlAttribute(name = "StatusCd") - protected String statusCd; - @XmlAttribute(name = "Hersteller") - protected String hersteller; - @XmlAttribute(name = "Modell") - protected String modell; - @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; - - /** - * Gets the value of the elObjektdaten property. - * - *

- * 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 set method for the elObjektdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELObjektdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELObjektdatenType } - * - * - */ - public List getELObjektdaten() { - if (elObjektdaten == null) { - elObjektdaten = new ArrayList(); - } - return this.elObjektdaten; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Ruft den Wert der versSacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersSacheCd() { - return versSacheCd; - } - - /** - * Legt den Wert der versSacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersSacheCd(String value) { - this.versSacheCd = value; - } - - /** - * Ruft den Wert der versSacheBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersSacheBez() { - return versSacheBez; - } - - /** - * Legt den Wert der versSacheBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersSacheBez(String value) { - this.versSacheBez = value; - } - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der versLwCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersLwCd() { - return versLwCd; - } - - /** - * Legt den Wert der versLwCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersLwCd(String value) { - this.versLwCd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hersteller-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHersteller() { - return hersteller; - } - - /** - * Legt den Wert der hersteller-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHersteller(String value) { - this.hersteller = value; - } - - /** - * Ruft den Wert der modell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModell() { - return modell; - } - - /** - * Legt den Wert der modell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModell(String value) { - this.modell = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSUNTERNEHMEN.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSUNTERNEHMEN.java deleted file mode 100644 index 358801ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERSUNTERNEHMEN.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <element ref="{urn:omds20}EL-Kommunikation"/>
- *       </sequence>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="VUBezeichnung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "elKommunikation" -}) -@XmlRootElement(name = "VERS_UNTERNEHMEN") -public class VERSUNTERNEHMEN { - - @XmlElement(name = "EL-Kommunikation") - protected List elKommunikation; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "VUBezeichnung") - protected String vuBezeichnung; - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * 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 vuBezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUBezeichnung() { - return vuBezeichnung; - } - - /** - * Legt den Wert der vuBezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUBezeichnung(String value) { - this.vuBezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAG.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAG.java deleted file mode 100644 index 35983043..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAG.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERTRAG_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERTRAG") -public class VERTRAG - extends VERTRAGType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSFONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSFONDSType.java deleted file mode 100644 index 0e9e26dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSFONDSType.java +++ /dev/null @@ -1,223 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSFONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSFONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSFONDS_Type", propOrder = { - "portfolio", - "fonds", - "elBetrag", - "elText" -}) -public class VERTRAGSFONDSType { - - @XmlElement(name = "PORTFOLIO") - protected List portfolio; - @XmlElement(name = "FONDS") - protected List fonds; - @XmlElement(name = "EL-Betrag") - protected List elBetrag; - @XmlElement(name = "EL-Text") - protected List elText; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - - /** - * Gets the value of the portfolio property. - * - *

- * 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 set method for the portfolio property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPORTFOLIO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PORTFOLIO } - * - * - */ - public List getPORTFOLIO() { - if (portfolio == null) { - portfolio = new ArrayList(); - } - return this.portfolio; - } - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - - /** - * Gets the value of the elBetrag property. - * - *

- * 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 set method for the elBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - public List getELBetrag() { - if (elBetrag == null) { - elBetrag = new ArrayList(); - } - return this.elBetrag; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSPERSONType.java deleted file mode 100644 index 2bcd7cef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGSPERSONType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSPERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSPERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSPERSON_Type") -public class VERTRAGSPERSONType { - - @XmlAttribute(name = "VtgRolleCd", required = true) - protected VtgRolleCdType vtgRolleCd; - @XmlAttribute(name = "Lfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der vtgRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVtgRolleCd() { - return vtgRolleCd; - } - - /** - * Legt den Wert der vtgRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVtgRolleCd(VtgRolleCdType value) { - this.vtgRolleCd = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGType.java deleted file mode 100644 index 3b28de8f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VERTRAGType.java +++ /dev/null @@ -1,946 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERTRAG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Antrag"/>
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Praemienfreistellung"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
- *         <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
- *       <attribute name="VtgProdukt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *       <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
- *       <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
- *       <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="VtgEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StornoGiltAb" type="{urn:omds20}Datum" />
- *       <attribute name="Hptfaelligkeit">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
- *             <minInclusive value="--01-01"/>
- *             <maxInclusive value="--12-31"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
- *       <attribute name="AendGrundbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieNtoVtg" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}decimal">
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ktonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAG_Type", propOrder = { - "elAntragOrELAnzahlOrELBetrag", - "vertragsperson", - "versobjekt", - "sparte" -}) -@XmlSeeAlso({ - VERTRAG.class -}) -public class VERTRAGType { - - @XmlElements({ - @XmlElement(name = "EL-Antrag", type = ELAntragType.class), - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAntragOrELAnzahlOrELBetrag; - @XmlElement(name = "VERTRAGSPERSON", required = true) - protected List vertragsperson; - @XmlElement(name = "VERS_OBJEKT") - protected List versobjekt; - @XmlElement(name = "SPARTE", required = true) - protected List sparte; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "VtgProdCd", required = true) - protected String vtgProdCd; - @XmlAttribute(name = "VtgProdukt") - protected String vtgProdukt; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlAttribute(name = "ZahlRhythmCd", required = true) - protected String zahlRhythmCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "VtgStatusCd", required = true) - protected String vtgStatusCd; - @XmlAttribute(name = "VtgStatusBeg") - protected XMLGregorianCalendar vtgStatusBeg; - @XmlAttribute(name = "VtgBeg", required = true) - protected XMLGregorianCalendar vtgBeg; - @XmlAttribute(name = "VtgEnd") - protected XMLGregorianCalendar vtgEnd; - @XmlAttribute(name = "StornoGiltAb") - protected XMLGregorianCalendar stornoGiltAb; - @XmlAttribute(name = "Hptfaelligkeit") - protected XMLGregorianCalendar hptfaelligkeit; - @XmlAttribute(name = "DurchfDat", required = true) - protected XMLGregorianCalendar durchfDat; - @XmlAttribute(name = "GueltigBeg", required = true) - protected XMLGregorianCalendar gueltigBeg; - @XmlAttribute(name = "AendGrundCd", required = true) - protected String aendGrundCd; - @XmlAttribute(name = "AendGrundbez") - protected String aendGrundbez; - @XmlAttribute(name = "PraemieNtoVtg", required = true) - protected BigDecimal praemieNtoVtg; - @XmlAttribute(name = "PraemieBtoVtg", required = true) - protected BigDecimal praemieBtoVtg; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Ktonr") - protected String ktonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Gets the value of the elAntragOrELAnzahlOrELBetrag property. - * - *

- * 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 set method for the elAntragOrELAnzahlOrELBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAntragOrELAnzahlOrELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAntragType } - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELPolizzennummerType } - * {@link ELPraemienfreistellungType } - * {@link ELPraemienkorrekturType } - * {@link ELRahmenvereinbarungType } - * {@link ELSelbstbehalt } - * {@link ELTextType } - * - * - */ - public List getELAntragOrELAnzahlOrELBetrag() { - if (elAntragOrELAnzahlOrELBetrag == null) { - elAntragOrELAnzahlOrELBetrag = new ArrayList(); - } - return this.elAntragOrELAnzahlOrELBetrag; - } - - /** - * Gets the value of the vertragsperson property. - * - *

- * 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 set method for the vertragsperson property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSPERSONType } - * - * - */ - public List getVERTRAGSPERSON() { - if (vertragsperson == null) { - vertragsperson = new ArrayList(); - } - return this.vertragsperson; - } - - /** - * Gets the value of the versobjekt property. - * - *

- * 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 set method for the versobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSOBJEKTType } - * - * - */ - public List getVERSOBJEKT() { - if (versobjekt == null) { - versobjekt = new ArrayList(); - } - return this.versobjekt; - } - - /** - * Gets the value of the sparte property. - * - *

- * 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 set method for the sparte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSPARTE().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SPARTEType } - * - * - */ - public List getSPARTE() { - if (sparte == null) { - sparte = new ArrayList(); - } - return this.sparte; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Ruft den Wert der vtgProdukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdukt() { - return vtgProdukt; - } - - /** - * Legt den Wert der vtgProdukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdukt(String value) { - this.vtgProdukt = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Ruft den Wert der zahlRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlRhythmCd() { - return zahlRhythmCd; - } - - /** - * Legt den Wert der zahlRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlRhythmCd(String value) { - this.zahlRhythmCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der vtgStatusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgStatusCd() { - return vtgStatusCd; - } - - /** - * Legt den Wert der vtgStatusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgStatusCd(String value) { - this.vtgStatusCd = value; - } - - /** - * Ruft den Wert der vtgStatusBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgStatusBeg() { - return vtgStatusBeg; - } - - /** - * Legt den Wert der vtgStatusBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgStatusBeg(XMLGregorianCalendar value) { - this.vtgStatusBeg = value; - } - - /** - * 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 vtgEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnd() { - return vtgEnd; - } - - /** - * Legt den Wert der vtgEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnd(XMLGregorianCalendar value) { - this.vtgEnd = value; - } - - /** - * Ruft den Wert der stornoGiltAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStornoGiltAb() { - return stornoGiltAb; - } - - /** - * Legt den Wert der stornoGiltAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStornoGiltAb(XMLGregorianCalendar value) { - this.stornoGiltAb = value; - } - - /** - * Ruft den Wert der hptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHptfaelligkeit() { - return hptfaelligkeit; - } - - /** - * Legt den Wert der hptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHptfaelligkeit(XMLGregorianCalendar value) { - this.hptfaelligkeit = value; - } - - /** - * Ruft den Wert der durchfDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDurchfDat() { - return durchfDat; - } - - /** - * Legt den Wert der durchfDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDurchfDat(XMLGregorianCalendar value) { - this.durchfDat = value; - } - - /** - * Ruft den Wert der gueltigBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBeg() { - return gueltigBeg; - } - - /** - * Legt den Wert der gueltigBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBeg(XMLGregorianCalendar value) { - this.gueltigBeg = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der praemieNtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoVtg() { - return praemieNtoVtg; - } - - /** - * Legt den Wert der praemieNtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoVtg(BigDecimal value) { - this.praemieNtoVtg = value; - } - - /** - * Ruft den Wert der praemieBtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoVtg() { - return praemieBtoVtg; - } - - /** - * Legt den Wert der praemieBtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoVtg(BigDecimal value) { - this.praemieBtoVtg = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der ktonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKtonr() { - return ktonr; - } - - /** - * Legt den Wert der ktonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKtonr(String value) { - this.ktonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VSArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VSArtCdType.java deleted file mode 100644 index 0a1839bd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VSArtCdType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VSArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VSArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ALS"/>
- *     <enumeration value="BDS"/>
- *     <enumeration value="BVS"/>
- *     <enumeration value="ELS"/>
- *     <enumeration value="EVS"/>
- *     <enumeration value="HHS"/>
- *     <enumeration value="HLS"/>
- *     <enumeration value="OVS"/>
- *     <enumeration value="PFR"/>
- *     <enumeration value="PPF"/>
- *     <enumeration value="PVS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VSArtCd_Type") -@XmlEnum -public enum VSArtCdType { - - - /** - * Ablebensumme - * - */ - ALS, - - /** - * Bausparen Darlehenssumme - * - */ - BDS, - - /** - * Bausparen Vertragssumme - * - */ - BVS, - - /** - * Erlebensumme - * - */ - ELS, - - /** - * EinzelVS - * - */ - EVS, - - /** - * Höchsthaftungssumme - * - */ - HHS, - - /** - * Höchstleistungssumme - * - */ - HLS, - - /** - * ohne Versicherungssumme - * - */ - OVS, - - /** - * prämienfrei - * - */ - PFR, - - /** - * prämienpflichtig - * - */ - PPF, - - /** - * PauschalVS - * - */ - PVS; - - public String value() { - return name(); - } - - public static VSArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VtgRolleCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VtgRolleCdType.java deleted file mode 100644 index 752c538c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/VtgRolleCdType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VtgRolleCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VtgRolleCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AP"/>
- *     <enumeration value="BG"/>
- *     <enumeration value="BM"/>
- *     <enumeration value="BO"/>
- *     <enumeration value="IA"/>
- *     <enumeration value="GV"/>
- *     <enumeration value="LE"/>
- *     <enumeration value="KA"/>
- *     <enumeration value="VN"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VtgRolleCd_Type") -@XmlEnum -public enum VtgRolleCdType { - - - /** - * Ansprechperson - * - */ - AP, - - /** - * Bausparer gesetzlicher Vertreter - * - */ - BG, - - /** - * Bausparer mit Prämie - * - */ - BM, - - /** - * Bausparer ohne Prämie - * - */ - BO, - - /** - * Inkassoadresse - * - */ - IA, - - /** - * Gesetzlicher Vertreter - * - */ - GV, - - /** - * Lenker - * - */ - LE, - - /** - * Korrespondenz/Zustelladresse - * - */ - KA, - - /** - * Versicherungsnehmer - * - */ - VN; - - public String value() { - return name(); - } - - public static VtgRolleCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/WaehrungsCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/WaehrungsCdType.java deleted file mode 100644 index 7d15cc7c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/WaehrungsCdType.java +++ /dev/null @@ -1,279 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für WaehrungsCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="WaehrungsCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AUD"/>
- *     <enumeration value="BGL"/>
- *     <enumeration value="CAD"/>
- *     <enumeration value="CHF"/>
- *     <enumeration value="CYP"/>
- *     <enumeration value="CZR"/>
- *     <enumeration value="DKK"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="GBP"/>
- *     <enumeration value="GIP"/>
- *     <enumeration value="HKD"/>
- *     <enumeration value="HRK"/>
- *     <enumeration value="HUF"/>
- *     <enumeration value="ILS"/>
- *     <enumeration value="INR"/>
- *     <enumeration value="ISK"/>
- *     <enumeration value="JOD"/>
- *     <enumeration value="JPY"/>
- *     <enumeration value="MLT"/>
- *     <enumeration value="MXP"/>
- *     <enumeration value="NOK"/>
- *     <enumeration value="NZD"/>
- *     <enumeration value="PLZ"/>
- *     <enumeration value="ROL"/>
- *     <enumeration value="SEK"/>
- *     <enumeration value="SGD"/>
- *     <enumeration value="SIT"/>
- *     <enumeration value="SKK"/>
- *     <enumeration value="SUR"/>
- *     <enumeration value="TND"/>
- *     <enumeration value="TRL"/>
- *     <enumeration value="TWD"/>
- *     <enumeration value="USD"/>
- *     <enumeration value="YUN"/>
- *     <enumeration value="ZAR"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "WaehrungsCd_Type") -@XmlEnum -public enum WaehrungsCdType { - - - /** - * Dollar Australien - * - */ - AUD, - - /** - * Lewa Bulgarien - * - */ - BGL, - - /** - * Dollar Kanadien - * - */ - CAD, - - /** - * Franken Schweiz - * - */ - CHF, - - /** - * Pfund Zypern - * - */ - CYP, - - /** - * Krone Tschechien - * - */ - CZR, - - /** - * Krone Dänemark - * - */ - DKK, - - /** - * EURO - * - */ - EUR, - - /** - * Pfund Großbritannien - * - */ - GBP, - - /** - * Pfund Gibraltar - * - */ - GIP, - - /** - * Dollar Hongkong - * - */ - HKD, - - /** - * Kuna Kroatia - * - */ - HRK, - - /** - * Forint Ungarn - * - */ - HUF, - - /** - * Shekel Israel - * - */ - ILS, - - /** - * Rupie Indien - * - */ - INR, - - /** - * Krone Island - * - */ - ISK, - - /** - * Dinar Jordanien - * - */ - JOD, - - /** - * Yen Japan - * - */ - JPY, - - /** - * Pfund Malta - * - */ - MLT, - - /** - * Peso Mexiko - * - */ - MXP, - - /** - * Krone Norwegen - * - */ - NOK, - - /** - * Dollar Neuseeland - * - */ - NZD, - - /** - * Zloty Polen - * - */ - PLZ, - - /** - * Lau Rumänien - * - */ - ROL, - - /** - * Krone Schweden - * - */ - SEK, - - /** - * Dollar Singapur - * - */ - SGD, - - /** - * Tolar Slowenien - * - */ - SIT, - - /** - * Krone Slowakei - * - */ - SKK, - - /** - * Rubel Rußland - * - */ - SUR, - - /** - * Dinar Tunesien - * - */ - TND, - - /** - * Lira Türkei - * - */ - TRL, - - /** - * Dollar Taiwan - * - */ - TWD, - - /** - * US Dollar $ - * - */ - USD, - - /** - * Dinar Jugoslawien-Rest - * - */ - YUN, - - /** - * Rand Südafrika - * - */ - ZAR; - - public String value() { - return name(); - } - - public static WaehrungsCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ZAHLUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ZAHLUNGType.java deleted file mode 100644 index cce6a2d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/ZAHLUNGType.java +++ /dev/null @@ -1,323 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_11; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für ZAHLUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZAHLUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kontonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZAHLUNG_Type") -public class ZAHLUNGType { - - @XmlAttribute(name = "ZahlungsLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int zahlungsLfnr; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ZahlBetrag", required = true) - protected BigDecimal zahlBetrag; - @XmlAttribute(name = "ZahlDat", required = true) - protected XMLGregorianCalendar zahlDat; - @XmlAttribute(name = "ZahlGrundCd", required = true) - protected String zahlGrundCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Kontonr") - protected String kontonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Ruft den Wert der zahlungsLfnr-Eigenschaft ab. - * - */ - public int getZahlungsLfnr() { - return zahlungsLfnr; - } - - /** - * Legt den Wert der zahlungsLfnr-Eigenschaft fest. - * - */ - public void setZahlungsLfnr(int value) { - this.zahlungsLfnr = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der zahlBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZahlBetrag() { - return zahlBetrag; - } - - /** - * Legt den Wert der zahlBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZahlBetrag(BigDecimal value) { - this.zahlBetrag = value; - } - - /** - * Ruft den Wert der zahlDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZahlDat() { - return zahlDat; - } - - /** - * Legt den Wert der zahlDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZahlDat(XMLGregorianCalendar value) { - this.zahlDat = value; - } - - /** - * Ruft den Wert der zahlGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlGrundCd() { - return zahlGrundCd; - } - - /** - * Legt den Wert der zahlGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlGrundCd(String value) { - this.zahlGrundCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der kontonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonr() { - return kontonr; - } - - /** - * Legt den Wert der kontonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonr(String value) { - this.kontonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/package-info.java deleted file mode 100644 index 102a8387..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_11/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds2Types.v2_11; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ADRESSEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ADRESSEType.java deleted file mode 100644 index 30078341..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ADRESSEType.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -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_8_0.on2antrag.sachPrivat.RisikoAdresseType; - - -/** - *

Java-Klasse für ADRESSE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ADRESSE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ADRESSE_Type") -@XmlSeeAlso({ - RisikoAdresseType.class -}) -public class ADRESSEType { - - @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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/BBArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/BBArtCdType.java deleted file mode 100644 index f33cb57a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/BBArtCdType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BBArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="BBArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ABL"/>
- *     <enumeration value="ERL"/>
- *     <enumeration value="SLF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BBArtCd_Type") -@XmlEnum -public enum BBArtCdType { - - - /** - * Ablebensfall - * - */ - ABL, - - /** - * Erlebensfall - * - */ - ERL, - - /** - * sonstiger Leistungsfall - * - */ - SLF; - - public String value() { - return name(); - } - - public static BBArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAntragType.java deleted file mode 100644 index 050f1d9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAntragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Antrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Antrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Antrag_Type") -public class ELAntragType { - - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAnzahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAnzahlType.java deleted file mode 100644 index 07eb8951..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELAnzahlType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Anzahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Anzahl_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Anzahl_Type") -public class ELAnzahlType { - - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBetragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBetragType.java deleted file mode 100644 index 12ec221a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBetragType.java +++ /dev/null @@ -1,175 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Betrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Betrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetragArtCd" type="{urn:omds20}BetragArtCd_Type" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Betrag_Type") -public class ELBetragType { - - @XmlAttribute(name = "BetragArtCd") - protected String betragArtCd; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * Ruft den Wert der betragArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetragArtCd() { - return betragArtCd; - } - - /** - * Legt den Wert der betragArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetragArtCd(String value) { - this.betragArtCd = 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 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 waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBezugsberechtigungType.java deleted file mode 100644 index ebd34af0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELBezugsberechtigungType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Bezugsberechtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
- *       <attribute name="BBTxt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Bezugsberechtigung_Type") -public class ELBezugsberechtigungType { - - @XmlAttribute(name = "BBArtCd", required = true) - protected BBArtCdType bbArtCd; - @XmlAttribute(name = "BBTxt", required = true) - protected String bbTxt; - - /** - * Ruft den Wert der bbArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link BBArtCdType } - * - */ - public BBArtCdType getBBArtCd() { - return bbArtCd; - } - - /** - * Legt den Wert der bbArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BBArtCdType } - * - */ - public void setBBArtCd(BBArtCdType value) { - this.bbArtCd = value; - } - - /** - * Ruft den Wert der bbTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBBTxt() { - return bbTxt; - } - - /** - * Legt den Wert der bbTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBBTxt(String value) { - this.bbTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEinstufungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEinstufungType.java deleted file mode 100644 index e7c768cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEinstufungType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Einstufung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Einstufung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
- *       <attribute name="EstWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="5"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Einstufung_Type") -public class ELEinstufungType { - - @XmlAttribute(name = "EstArtCd", required = true) - protected EstArtCdType estArtCd; - @XmlAttribute(name = "EstWert", required = true) - protected String estWert; - - /** - * Ruft den Wert der estArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link EstArtCdType } - * - */ - public EstArtCdType getEstArtCd() { - return estArtCd; - } - - /** - * Legt den Wert der estArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link EstArtCdType } - * - */ - public void setEstArtCd(EstArtCdType value) { - this.estArtCd = value; - } - - /** - * Ruft den Wert der estWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstWert() { - return estWert; - } - - /** - * Legt den Wert der estWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstWert(String value) { - this.estWert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEntscheidungsfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEntscheidungsfrageType.java deleted file mode 100644 index 27e17e3e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELEntscheidungsfrageType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Entscheidungsfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Entscheidungsfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
- *       <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Entscheidungsfrage_Type") -public class ELEntscheidungsfrageType { - - @XmlAttribute(name = "EFrageCd", required = true) - protected String eFrageCd; - @XmlAttribute(name = "EFrageAntw", required = true) - protected String eFrageAntw; - - /** - * Ruft den Wert der eFrageCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageCd() { - return eFrageCd; - } - - /** - * Legt den Wert der eFrageCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageCd(String value) { - this.eFrageCd = value; - } - - /** - * Ruft den Wert der eFrageAntw-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageAntw() { - return eFrageAntw; - } - - /** - * Legt den Wert der eFrageAntw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageAntw(String value) { - this.eFrageAntw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELFlaecheType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELFlaecheType.java deleted file mode 100644 index d08a4a47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELFlaecheType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Flaeche_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Flaeche_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FlaechenAttributCd" use="required" type="{urn:omds20}FlaechenAttributCd_Type" />
- *       <attribute name="Nummer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="InnenFlaeche" type="{urn:omds20}decimal" />
- *       <attribute name="VerbauteFlaeche" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Flaeche_Type") -public class ELFlaecheType { - - @XmlAttribute(name = "FlaechenAttributCd", required = true) - protected FlaechenAttributCdType flaechenAttributCd; - @XmlAttribute(name = "Nummer") - protected String nummer; - @XmlAttribute(name = "InnenFlaeche") - protected BigDecimal innenFlaeche; - @XmlAttribute(name = "VerbauteFlaeche") - protected BigDecimal verbauteFlaeche; - - /** - * Ruft den Wert der flaechenAttributCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link FlaechenAttributCdType } - * - */ - public FlaechenAttributCdType getFlaechenAttributCd() { - return flaechenAttributCd; - } - - /** - * Legt den Wert der flaechenAttributCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FlaechenAttributCdType } - * - */ - public void setFlaechenAttributCd(FlaechenAttributCdType value) { - this.flaechenAttributCd = value; - } - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Ruft den Wert der innenFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getInnenFlaeche() { - return innenFlaeche; - } - - /** - * Legt den Wert der innenFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setInnenFlaeche(BigDecimal value) { - this.innenFlaeche = value; - } - - /** - * Ruft den Wert der verbauteFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVerbauteFlaeche() { - return verbauteFlaeche; - } - - /** - * Legt den Wert der verbauteFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVerbauteFlaeche(BigDecimal value) { - this.verbauteFlaeche = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGewinnbeteiligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGewinnbeteiligungType.java deleted file mode 100644 index e34a4374..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGewinnbeteiligungType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Gewinnbeteiligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Gewinnbeteiligung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Gewinnbeteiligung_Type") -public class ELGewinnbeteiligungType { - - @XmlAttribute(name = "Datum", required = true) - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGrenzwertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGrenzwertType.java deleted file mode 100644 index 01e860e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELGrenzwertType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Grenzwert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Grenzwert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
- *       <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="GrwTyp">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Grenzwert_Type") -public class ELGrenzwertType { - - @XmlAttribute(name = "GrwArtCd", required = true) - protected GrwArtCdType grwArtCd; - @XmlAttribute(name = "GrWert", required = true) - protected BigDecimal grWert; - @XmlAttribute(name = "GrwTyp") - protected String grwTyp; - - /** - * Ruft den Wert der grwArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GrwArtCdType } - * - */ - public GrwArtCdType getGrwArtCd() { - return grwArtCd; - } - - /** - * Legt den Wert der grwArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GrwArtCdType } - * - */ - public void setGrwArtCd(GrwArtCdType value) { - this.grwArtCd = value; - } - - /** - * Ruft den Wert der grWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGrWert() { - return grWert; - } - - /** - * Legt den Wert der grWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGrWert(BigDecimal value) { - this.grWert = value; - } - - /** - * Ruft den Wert der grwTyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrwTyp() { - return grwTyp; - } - - /** - * Legt den Wert der grwTyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrwTyp(String value) { - this.grwTyp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIdentifizierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIdentifizierungType.java deleted file mode 100644 index 78bd2b9a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIdentifizierungType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Identifizierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Identifizierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
- *       <attribute name="IdfSchluessel" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IdfDatum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Identifizierung_Type") -public class ELIdentifizierungType { - - @XmlAttribute(name = "IdfArtCd", required = true) - protected IdfArtCdType idfArtCd; - @XmlAttribute(name = "IdfSchluessel", required = true) - protected String idfSchluessel; - @XmlAttribute(name = "IdfDatum") - protected XMLGregorianCalendar idfDatum; - - /** - * Ruft den Wert der idfArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link IdfArtCdType } - * - */ - public IdfArtCdType getIdfArtCd() { - return idfArtCd; - } - - /** - * Legt den Wert der idfArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link IdfArtCdType } - * - */ - public void setIdfArtCd(IdfArtCdType value) { - this.idfArtCd = value; - } - - /** - * Ruft den Wert der idfSchluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdfSchluessel() { - return idfSchluessel; - } - - /** - * Legt den Wert der idfSchluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdfSchluessel(String value) { - this.idfSchluessel = value; - } - - /** - * Ruft den Wert der idfDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getIdfDatum() { - return idfDatum; - } - - /** - * Legt den Wert der idfDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setIdfDatum(XMLGregorianCalendar value) { - this.idfDatum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIndexType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIndexType.java deleted file mode 100644 index 2d8276b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELIndexType.java +++ /dev/null @@ -1,116 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Index_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Index_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
- *       <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
- *       <attribute name="Wert" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Index_Type") -public class ELIndexType { - - @XmlAttribute(name = "IndexArtCd", required = true) - protected String indexArtCd; - @XmlAttribute(name = "Datum") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - - /** - * Ruft den Wert der indexArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndexArtCd() { - return indexArtCd; - } - - /** - * Legt den Wert der indexArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndexArtCd(String value) { - this.indexArtCd = 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKFZKennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKFZKennzeichenType.java deleted file mode 100644 index 6ba9ec75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKFZKennzeichenType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-KFZ-Kennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-KFZ-Kennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Pol_Kennz" use="required" type="{urn:omds20}Pol_Kennz_Type" />
- *       <attribute name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-KFZ-Kennzeichen_Type") -public class ELKFZKennzeichenType { - - @XmlAttribute(name = "Pol_Kennz", required = true) - protected String polKennz; - @XmlAttribute(name = "Fahrgestnr") - protected String fahrgestnr; - - /** - * Ruft den Wert der polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKlauselType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKlauselType.java deleted file mode 100644 index 52cf9206..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKlauselType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Klausel_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Klausel_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Klausel_Type") -public class ELKlauselType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKommunikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKommunikationType.java deleted file mode 100644 index e50bc1b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELKommunikationType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Kommunikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Kommunikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
- *       <attribute name="Kennung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Kommunikation_Type") -public class ELKommunikationType { - - @XmlAttribute(name = "KomArtCd", required = true) - protected String komArtCd; - @XmlAttribute(name = "Kennung", required = true) - protected String kennung; - - /** - * Ruft den Wert der komArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKomArtCd() { - return komArtCd; - } - - /** - * Legt den Wert der komArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKomArtCd(String value) { - this.komArtCd = value; - } - - /** - * Ruft den Wert der kennung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennung() { - return kennung; - } - - /** - * Legt den Wert der kennung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennung(String value) { - this.kennung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELLegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELLegitimationType.java deleted file mode 100644 index b48f4392..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELLegitimationType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds3Types.r1_8_0.common.LegitimationType; - - -/** - *

Java-Klasse für EL-Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Legitimation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
- *       <attribute name="Ausstellungsbehoerde">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="Nummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Legitimation_Type") -@XmlSeeAlso({ - LegitimationType.class -}) -public class ELLegitimationType { - - @XmlAttribute(name = "LegArtCd", required = true) - protected String legArtCd; - @XmlAttribute(name = "Ausstellungsbehoerde") - protected String ausstellungsbehoerde; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "GueltigBis") - protected XMLGregorianCalendar gueltigBis; - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - - /** - * Ruft den Wert der legArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegArtCd() { - return legArtCd; - } - - /** - * Legt den Wert der legArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegArtCd(String value) { - this.legArtCd = value; - } - - /** - * Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstellungsbehoerde() { - return ausstellungsbehoerde; - } - - /** - * Legt den Wert der ausstellungsbehoerde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstellungsbehoerde(String value) { - this.ausstellungsbehoerde = 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 gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektType.java deleted file mode 100644 index b9bef5a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objekt_Type") -public class ELObjektType { - - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int objLfnr; - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - public void setObjLfnr(int value) { - this.objLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektdatenType.java deleted file mode 100644 index d0b9cab5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELObjektdatenType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objektdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objektdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
- *       <attribute name="Wert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ObjektdatenInfo">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objektdaten_Type") -public class ELObjektdatenType { - - @XmlAttribute(name = "ObjektdatenCd", required = true) - protected String objektdatenCd; - @XmlAttribute(name = "Wert", required = true) - protected String wert; - @XmlAttribute(name = "ObjektdatenInfo") - protected String objektdatenInfo; - - /** - * Ruft den Wert der objektdatenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenCd() { - return objektdatenCd; - } - - /** - * Legt den Wert der objektdatenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenCd(String value) { - this.objektdatenCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWert(String value) { - this.wert = value; - } - - /** - * Ruft den Wert der objektdatenInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenInfo() { - return objektdatenInfo; - } - - /** - * Legt den Wert der objektdatenInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenInfo(String value) { - this.objektdatenInfo = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPolizzennummerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPolizzennummerType.java deleted file mode 100644 index dd518e75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPolizzennummerType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Polizzennummer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Polizzennummer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
- *       <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Polizzennummer_Type") -public class ELPolizzennummerType { - - @XmlAttribute(name = "PolArtCd", required = true) - protected PolArtCdType polArtCd; - @XmlAttribute(name = "PolNr", required = true) - protected String polNr; - - /** - * Ruft den Wert der polArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolArtCdType } - * - */ - public PolArtCdType getPolArtCd() { - return polArtCd; - } - - /** - * Legt den Wert der polArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolArtCdType } - * - */ - public void setPolArtCd(PolArtCdType value) { - this.polArtCd = value; - } - - /** - * Ruft den Wert der polNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNr() { - return polNr; - } - - /** - * Legt den Wert der polNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNr(String value) { - this.polNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienfreistellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienfreistellungType.java deleted file mode 100644 index 4483c659..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienfreistellungType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Praemienfreistellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienfreistellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
- *       <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="PfrEnde" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienfreistellung_Type") -public class ELPraemienfreistellungType { - - @XmlAttribute(name = "PfrArtCd", required = true) - protected String pfrArtCd; - @XmlAttribute(name = "PfrBeg", required = true) - protected XMLGregorianCalendar pfrBeg; - @XmlAttribute(name = "PfrEnde") - protected XMLGregorianCalendar pfrEnde; - - /** - * Ruft den Wert der pfrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPfrArtCd() { - return pfrArtCd; - } - - /** - * Legt den Wert der pfrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPfrArtCd(String value) { - this.pfrArtCd = value; - } - - /** - * Ruft den Wert der pfrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrBeg() { - return pfrBeg; - } - - /** - * Legt den Wert der pfrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrBeg(XMLGregorianCalendar value) { - this.pfrBeg = value; - } - - /** - * Ruft den Wert der pfrEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrEnde() { - return pfrEnde; - } - - /** - * Legt den Wert der pfrEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrEnde(XMLGregorianCalendar value) { - this.pfrEnde = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienkorrekturType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienkorrekturType.java deleted file mode 100644 index b99dc12a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELPraemienkorrekturType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Praemienkorrektur_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienkorrektur_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
- *       <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienkorrektur_Type") -public class ELPraemienkorrekturType { - - @XmlAttribute(name = "PraemKorrArtCd", required = true) - protected String praemKorrArtCd; - @XmlAttribute(name = "PraemKorrWert") - protected BigDecimal praemKorrWert; - @XmlAttribute(name = "PraemKorrProz") - protected BigDecimal praemKorrProz; - @XmlAttribute(name = "PraemKorrText") - protected String praemKorrText; - - /** - * Ruft den Wert der praemKorrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrArtCd() { - return praemKorrArtCd; - } - - /** - * Legt den Wert der praemKorrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrArtCd(String value) { - this.praemKorrArtCd = value; - } - - /** - * Ruft den Wert der praemKorrWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrWert() { - return praemKorrWert; - } - - /** - * Legt den Wert der praemKorrWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrWert(BigDecimal value) { - this.praemKorrWert = value; - } - - /** - * Ruft den Wert der praemKorrProz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrProz() { - return praemKorrProz; - } - - /** - * Legt den Wert der praemKorrProz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrProz(BigDecimal value) { - this.praemKorrProz = value; - } - - /** - * Ruft den Wert der praemKorrText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrText() { - return praemKorrText; - } - - /** - * Legt den Wert der praemKorrText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrText(String value) { - this.praemKorrText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvereinbarungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvereinbarungType.java deleted file mode 100644 index 69b08bdb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvereinbarungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvereinbarung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvereinbarung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenVebnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvereinbarung_Type") -public class ELRahmenvereinbarungType { - - @XmlAttribute(name = "RahmenVebnr", required = true) - protected String rahmenVebnr; - - /** - * Ruft den Wert der rahmenVebnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRahmenVebnr() { - return rahmenVebnr; - } - - /** - * Legt den Wert der rahmenVebnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRahmenVebnr(String value) { - this.rahmenVebnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvertragType.java deleted file mode 100644 index fb0f8e32..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRahmenvertragType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvertrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenvertragsartCd" use="required" type="{urn:omds20}RahmenvertragsartCd_Type" />
- *       <attribute name="Rahmenvertragsnummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvertrag_Type") -public class ELRahmenvertragType { - - @XmlAttribute(name = "RahmenvertragsartCd", required = true) - protected String rahmenvertragsartCd; - @XmlAttribute(name = "Rahmenvertragsnummer", required = true) - protected String rahmenvertragsnummer; - - /** - * Ruft den Wert der rahmenvertragsartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRahmenvertragsartCd() { - return rahmenvertragsartCd; - } - - /** - * Legt den Wert der rahmenvertragsartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRahmenvertragsartCd(String value) { - this.rahmenvertragsartCd = value; - } - - /** - * Ruft den Wert der rahmenvertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRahmenvertragsnummer() { - return rahmenvertragsnummer; - } - - /** - * Legt den Wert der rahmenvertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRahmenvertragsnummer(String value) { - this.rahmenvertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRenteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRenteType.java deleted file mode 100644 index e6606f50..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELRenteType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Rente_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rente_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
- *       <attribute name="RntBeg" type="{urn:omds20}Datum" />
- *       <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rente_Type") -public class ELRenteType { - - @XmlAttribute(name = "RntRhythmCd", required = true) - protected String rntRhythmCd; - @XmlAttribute(name = "RntBeg") - protected XMLGregorianCalendar rntBeg; - @XmlAttribute(name = "RntBetrag", required = true) - protected BigDecimal rntBetrag; - - /** - * Ruft den Wert der rntRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRntRhythmCd() { - return rntRhythmCd; - } - - /** - * Legt den Wert der rntRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRntRhythmCd(String value) { - this.rntRhythmCd = value; - } - - /** - * Ruft den Wert der rntBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRntBeg() { - return rntBeg; - } - - /** - * Legt den Wert der rntBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRntBeg(XMLGregorianCalendar value) { - this.rntBeg = value; - } - - /** - * Ruft den Wert der rntBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRntBetrag() { - return rntBetrag; - } - - /** - * Legt den Wert der rntBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRntBetrag(BigDecimal value) { - this.rntBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehalt.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehalt.java deleted file mode 100644 index 19c4b4ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehalt.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Selbstbehalt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "EL-Selbstbehalt") -public class ELSelbstbehalt - extends ELSelbstbehaltType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehaltType.java deleted file mode 100644 index 66921137..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSelbstbehaltType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
- *       <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
- *       <attribute name="SbhProzent" type="{urn:omds20}decimal" />
- *       <attribute name="SbhText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Selbstbehalt_Type") -@XmlSeeAlso({ - ELSelbstbehalt.class -}) -public class ELSelbstbehaltType { - - @XmlAttribute(name = "SbhArtCd", required = true) - protected SbhArtCdType sbhArtCd; - @XmlAttribute(name = "SbhBetrag") - protected BigDecimal sbhBetrag; - @XmlAttribute(name = "SbhProzent") - protected BigDecimal sbhProzent; - @XmlAttribute(name = "SbhText") - protected String sbhText; - - /** - * Ruft den Wert der sbhArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SbhArtCdType } - * - */ - public SbhArtCdType getSbhArtCd() { - return sbhArtCd; - } - - /** - * Legt den Wert der sbhArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SbhArtCdType } - * - */ - public void setSbhArtCd(SbhArtCdType value) { - this.sbhArtCd = value; - } - - /** - * Ruft den Wert der sbhBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhBetrag() { - return sbhBetrag; - } - - /** - * Legt den Wert der sbhBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhBetrag(BigDecimal value) { - this.sbhBetrag = value; - } - - /** - * Ruft den Wert der sbhProzent-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhProzent() { - return sbhProzent; - } - - /** - * Legt den Wert der sbhProzent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhProzent(BigDecimal value) { - this.sbhProzent = value; - } - - /** - * Ruft den Wert der sbhText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbhText() { - return sbhText; - } - - /** - * Legt den Wert der sbhText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbhText(String value) { - this.sbhText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSteuerType.java deleted file mode 100644 index ad9f4b81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELSteuerType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Steuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Steuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
- *       <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Steuer_Type") -public class ELSteuerType { - - @XmlAttribute(name = "StArtCd", required = true) - protected String stArtCd; - @XmlAttribute(name = "StBetrag", required = true) - protected BigDecimal stBetrag; - - /** - * Ruft den Wert der stArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStArtCd() { - return stArtCd; - } - - /** - * Legt den Wert der stArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStArtCd(String value) { - this.stArtCd = value; - } - - /** - * Ruft den Wert der stBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getStBetrag() { - return stBetrag; - } - - /** - * Legt den Wert der stBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setStBetrag(BigDecimal value) { - this.stBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELTextType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELTextType.java deleted file mode 100644 index ea21cf24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELTextType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Text_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Text_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
- *       <attribute name="TxtInhalt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Text_Type") -public class ELTextType { - - @XmlAttribute(name = "TxtArtCd", required = true) - protected TxtArtCdType txtArtCd; - @XmlAttribute(name = "TxtInhalt", required = true) - protected String txtInhalt; - - /** - * Ruft den Wert der txtArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link TxtArtCdType } - * - */ - public TxtArtCdType getTxtArtCd() { - return txtArtCd; - } - - /** - * Legt den Wert der txtArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TxtArtCdType } - * - */ - public void setTxtArtCd(TxtArtCdType value) { - this.txtArtCd = value; - } - - /** - * Ruft den Wert der txtInhalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTxtInhalt() { - return txtInhalt; - } - - /** - * Legt den Wert der txtInhalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTxtInhalt(String value) { - this.txtInhalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELVersicherungssummeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELVersicherungssummeType.java deleted file mode 100644 index 6224cb0b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELVersicherungssummeType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Versicherungssumme_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Versicherungssumme_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
- *       <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
- *       <attribute name="VSBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Versicherungssumme_Type") -public class ELVersicherungssummeType { - - @XmlAttribute(name = "VSArtCd", required = true) - protected VSArtCdType vsArtCd; - @XmlAttribute(name = "VSBetrag", required = true) - protected BigDecimal vsBetrag; - @XmlAttribute(name = "VSBez") - protected String vsBez; - - /** - * Ruft den Wert der vsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VSArtCdType } - * - */ - public VSArtCdType getVSArtCd() { - return vsArtCd; - } - - /** - * Legt den Wert der vsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VSArtCdType } - * - */ - public void setVSArtCd(VSArtCdType value) { - this.vsArtCd = value; - } - - /** - * Ruft den Wert der vsBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVSBetrag() { - return vsBetrag; - } - - /** - * Legt den Wert der vsBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVSBetrag(BigDecimal value) { - this.vsBetrag = value; - } - - /** - * Ruft den Wert der vsBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVSBez() { - return vsBez; - } - - /** - * Legt den Wert der vsBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVSBez(String value) { - this.vsBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELZeitraumType.java deleted file mode 100644 index d564da14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ELZeitraumType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Zeitraum_Type") -public class ELZeitraumType { - - @XmlAttribute(name = "ZRArtCd", required = true) - protected String zrArtCd; - @XmlAttribute(name = "ZRBeg") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZRArtCd() { - return zrArtCd; - } - - /** - * Legt den Wert der zrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZRArtCd(String value) { - this.zrArtCd = value; - } - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/Entsch2Type.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/Entsch2Type.java deleted file mode 100644 index ad68c031..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/Entsch2Type.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Entsch2_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Entsch2_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="1"/>
- *     <enumeration value="J"/>
- *     <enumeration value="N"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Entsch2_Type") -@XmlEnum -public enum Entsch2Type { - - J, - N; - - public String value() { - return name(); - } - - public static Entsch2Type fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/EstArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/EstArtCdType.java deleted file mode 100644 index 93f3016a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/EstArtCdType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EstArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="EstArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="G"/>
- *     <enumeration value="T"/>
- *     <enumeration value="TVU"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EstArtCd_Type") -@XmlEnum -public enum EstArtCdType { - - - /** - * Gefahrenklasse - * - */ - G, - - /** - * Tarif-, Bonus/Malus-Stufe offiziell - * - */ - T, - - /** - * Tarif-, Bonus/Malus-Stufe VU-intern - * - */ - TVU; - - public String value() { - return name(); - } - - public static EstArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FONDSType.java deleted file mode 100644 index 275e5559..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FONDSType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für FONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" use="required" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" use="required" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FONDS_Type") -public class FONDSType { - - @XmlAttribute(name = "ISIN", required = true) - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung") - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier", required = true) - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag", required = true) - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FlaechenAttributCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FlaechenAttributCdType.java deleted file mode 100644 index 2a86a6f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/FlaechenAttributCdType.java +++ /dev/null @@ -1,82 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für FlaechenAttributCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="FlaechenAttributCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="EG"/>
- *     <enumeration value="SW"/>
- *     <enumeration value="MA"/>
- *     <enumeration value="KM"/>
- *     <enumeration value="KO"/>
- *     <enumeration value="WF"/>
- *     <enumeration value="GF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "FlaechenAttributCd_Type") -@XmlEnum -public enum FlaechenAttributCdType { - - - /** - * Erdgeschoß - * - */ - EG, - - /** - * Stockwerk - * - */ - SW, - - /** - * Mansarde - * - */ - MA, - - /** - * Keller mit Wohnnutzung - * - */ - KM, - - /** - * Keller ohne Wohnnutzung - * - */ - KO, - - /** - * Wohnfläche - * - */ - WF, - - /** - * Grundfläche - * - */ - GF; - - public String value() { - return name(); - } - - public static FlaechenAttributCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GESCHAEDIGTESOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GESCHAEDIGTESOBJEKTType.java deleted file mode 100644 index 7a9c682e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GESCHAEDIGTESOBJEKTType.java +++ /dev/null @@ -1,265 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GESCHAEDIGTES_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="SchadenBeschreibung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
- *       <attribute name="VUNameGesch">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
- *       <attribute name="SchadennrGesch">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Schadennr">
- *             <maxLength value="35"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Kennz_GeschKfz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type") -public class GESCHAEDIGTESOBJEKTType { - - @XmlAttribute(name = "GeschObjektLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int geschObjektLfnr; - @XmlAttribute(name = "SchadenBeschreibung") - protected String schadenBeschreibung; - @XmlAttribute(name = "VUNrGesch") - protected String vuNrGesch; - @XmlAttribute(name = "VUNameGesch") - protected String vuNameGesch; - @XmlAttribute(name = "PolNrGesch") - protected String polNrGesch; - @XmlAttribute(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlAttribute(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlAttribute(name = "Kennz_GeschKfz") - protected String kennzGeschKfz; - - /** - * Ruft den Wert der geschObjektLfnr-Eigenschaft ab. - * - */ - public int getGeschObjektLfnr() { - return geschObjektLfnr; - } - - /** - * Legt den Wert der geschObjektLfnr-Eigenschaft fest. - * - */ - public void setGeschObjektLfnr(int value) { - this.geschObjektLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GesFormCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GesFormCdType.java deleted file mode 100644 index edc5a807..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GesFormCdType.java +++ /dev/null @@ -1,145 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GesFormCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GesFormCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GBH"/>
- *     <enumeration value="AG"/>
- *     <enumeration value="OG"/>
- *     <enumeration value="KG"/>
- *     <enumeration value="GBR"/>
- *     <enumeration value="SG"/>
- *     <enumeration value="GEN"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="EU"/>
- *     <enumeration value="GKG"/>
- *     <enumeration value="PS"/>
- *     <enumeration value="SP"/>
- *     <enumeration value="VE"/>
- *     <enumeration value="WEG"/>
- *     <enumeration value="EWI"/>
- *     <enumeration value="ARG"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GesFormCd_Type") -@XmlEnum -public enum GesFormCdType { - - - /** - * Gesellschaft mit beschränkter Haftung - * - */ - GBH, - - /** - * Aktiengesellschaft - * - */ - AG, - - /** - * Offene Gesellschaft - * - */ - OG, - - /** - * Kommanditgesellschaft - * - */ - KG, - - /** - * Gesellschaft bürgerlichen Rechts - * - */ - GBR, - - /** - * Stille Gesellschaft - * - */ - SG, - - /** - * Erwerbs- und Wirtschaftsgenossenschaft - * - */ - GEN, - - /** - * Ausländ./EU Rechtsform - * - */ - EUR, - - /** - * Einzelunternehmen - * - */ - EU, - - /** - * GmbH und Co KG - * - */ - GKG, - - /** - * Privatstiftung - * - */ - PS, - - /** - * Sparkasse - * - */ - SP, - - /** - * Verein - * - */ - VE, - - /** - * Wohnungseigentümergemeinschaft - * - */ - WEG, - - /** - * Europäische Wirtschaftliche Interessenvereinigung - * - */ - EWI, - - /** - * Arbeitsgemeinschaft - * - */ - ARG; - - public String value() { - return name(); - } - - public static GesFormCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GrwArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GrwArtCdType.java deleted file mode 100644 index 0ce09880..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/GrwArtCdType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GrwArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GrwArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DFP"/>
- *     <enumeration value="KAM"/>
- *     <enumeration value="KAT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GrwArtCd_Type") -@XmlEnum -public enum GrwArtCdType { - - - /** - * DauerfolgenProz(UV) - * - */ - DFP, - - /** - * Karenzmonate - * - */ - KAM, - - /** - * Karenztage - * - */ - KAT; - - public String value() { - return name(); - } - - public static GrwArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/IdfArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/IdfArtCdType.java deleted file mode 100644 index 7ba7d2e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/IdfArtCdType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für IdfArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="IdfArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FB"/>
- *     <enumeration value="SV"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "IdfArtCd_Type") -@XmlEnum -public enum IdfArtCdType { - - - /** - * Firmenbuchnummer - * - */ - FB, - - /** - * Sozialversicherungsnr - * - */ - SV, - - /** - * Versicherungsbestätigung - * - */ - VB; - - public String value() { - return name(); - } - - public static IdfArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/KLAUSELType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/KLAUSELType.java deleted file mode 100644 index c2854716..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/KLAUSELType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für KLAUSEL_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KLAUSEL_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauselbez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauseltxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="7998"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigVon" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KLAUSEL_Type") -public class KLAUSELType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - @XmlAttribute(name = "Klauselbez", required = true) - protected String klauselbez; - @XmlAttribute(name = "Klauseltxt") - protected String klauseltxt; - @XmlAttribute(name = "GueltigVon") - protected XMLGregorianCalendar gueltigVon; - @XmlAttribute(name = "GueltigBis") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - - /** - * Ruft den Wert der klauselbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselbez() { - return klauselbez; - } - - /** - * Legt den Wert der klauselbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselbez(String value) { - this.klauselbez = value; - } - - /** - * Ruft den Wert der klauseltxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauseltxt() { - return klauseltxt; - } - - /** - * Legt den Wert der klauseltxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauseltxt(String value) { - this.klauseltxt = value; - } - - /** - * Ruft den Wert der gueltigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigVon() { - return gueltigVon; - } - - /** - * Legt den Wert der gueltigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigVon(XMLGregorianCalendar value) { - this.gueltigVon = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LOESCHANSTOSSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LOESCHANSTOSSType.java deleted file mode 100644 index 0c1baa1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LOESCHANSTOSSType.java +++ /dev/null @@ -1,327 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für LOESCHANSTOSS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LOESCHANSTOSS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit2" />
- *       <attribute name="SystemQuelle" default="  ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
- *       <attribute name="ProvisionsID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnverfahrenNr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LOESCHANSTOSS_Type") -public class LOESCHANSTOSSType { - - @XmlAttribute(name = "LoeschID", required = true) - protected XMLGregorianCalendar loeschID; - @XmlAttribute(name = "SystemQuelle") - protected String systemQuelle; - @XmlAttribute(name = "GueltigAb") - protected XMLGregorianCalendar gueltigAb; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "Schadennr") - protected String schadennr; - @XmlAttribute(name = "ProvisionsID") - protected String provisionsID; - @XmlAttribute(name = "MahnverfahrenNr") - protected String mahnverfahrenNr; - @XmlAttribute(name = "LoeschCd", required = true) - protected LoeschCdType loeschCd; - - /** - * Ruft den Wert der loeschID-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLoeschID() { - return loeschID; - } - - /** - * Legt den Wert der loeschID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLoeschID(XMLGregorianCalendar value) { - this.loeschID = value; - } - - /** - * Ruft den Wert der systemQuelle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSystemQuelle() { - if (systemQuelle == null) { - return " "; - } else { - return systemQuelle; - } - } - - /** - * Legt den Wert der systemQuelle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSystemQuelle(String value) { - this.systemQuelle = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der loeschCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link LoeschCdType } - * - */ - public LoeschCdType getLoeschCd() { - return loeschCd; - } - - /** - * Legt den Wert der loeschCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LoeschCdType } - * - */ - public void setLoeschCd(LoeschCdType value) { - this.loeschCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LoeschCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LoeschCdType.java deleted file mode 100644 index 754e0ae6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/LoeschCdType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für LoeschCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="LoeschCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="M"/>
- *     <enumeration value="L"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LoeschCd_Type") -@XmlEnum -public enum LoeschCdType { - - - /** - * Markieren als nichtmehrversorgt - * - */ - M, - - /** - * Löschen wg.z.B.Falschlieferung - * - */ - L, - - /** - * Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht - * - */ - G; - - public String value() { - return name(); - } - - public static LoeschCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/MAHNUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/MAHNUNGType.java deleted file mode 100644 index 5f45b79c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/MAHNUNGType.java +++ /dev/null @@ -1,707 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für MAHNUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MAHNUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="MahnverfahrenNr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
- *       <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleBeauftragt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVUNext">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
- *       <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
- *       <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MAHNUNG_Type", propOrder = { - "elText" -}) -public class MAHNUNGType { - - @XmlElement(name = "EL-Text") - protected List elText; - @XmlAttribute(name = "MahnverfahrenNr", required = true) - protected String mahnverfahrenNr; - @XmlAttribute(name = "MahnungNr") - @XmlSchemaType(name = "positiveInteger") - protected BigInteger mahnungNr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "MahnBetrag", required = true) - protected BigDecimal mahnBetrag; - @XmlAttribute(name = "MahnSpesen") - protected BigDecimal mahnSpesen; - @XmlAttribute(name = "MahnStufeCd", required = true) - protected String mahnStufeCd; - @XmlAttribute(name = "MahnStufeTextVU") - protected String mahnStufeTextVU; - @XmlAttribute(name = "MahnStelleVU") - protected String mahnStelleVU; - @XmlAttribute(name = "MahnStelleBeauftragt") - protected String mahnStelleBeauftragt; - @XmlAttribute(name = "MahnStufeGueltigAb") - protected XMLGregorianCalendar mahnStufeGueltigAb; - @XmlAttribute(name = "MahnStufeGueltigBis") - protected XMLGregorianCalendar mahnStufeGueltigBis; - @XmlAttribute(name = "MahnStufeCdNext") - protected String mahnStufeCdNext; - @XmlAttribute(name = "MahnStufeTextVUNext") - protected String mahnStufeTextVUNext; - @XmlAttribute(name = "MahnStufeGueltigAbNext") - protected XMLGregorianCalendar mahnStufeGueltigAbNext; - @XmlAttribute(name = "MahnLetzteZahlung") - protected XMLGregorianCalendar mahnLetzteZahlung; - @XmlAttribute(name = "MahnAeltesteFaelligkeit") - protected XMLGregorianCalendar mahnAeltesteFaelligkeit; - @XmlAttribute(name = "MahnAnzahlFaelligkeiten") - @XmlSchemaType(name = "unsignedShort") - protected Integer mahnAnzahlFaelligkeiten; - @XmlAttribute(name = "GrundRuecklaufCd") - protected String grundRuecklaufCd; - @XmlAttribute(name = "MahnDeckungBis") - protected XMLGregorianCalendar mahnDeckungBis; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der mahnungNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMahnungNr() { - return mahnungNr; - } - - /** - * Legt den Wert der mahnungNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMahnungNr(BigInteger value) { - this.mahnungNr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der mahnBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnBetrag() { - return mahnBetrag; - } - - /** - * Legt den Wert der mahnBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnBetrag(BigDecimal value) { - this.mahnBetrag = value; - } - - /** - * Ruft den Wert der mahnSpesen-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnSpesen() { - return mahnSpesen; - } - - /** - * Legt den Wert der mahnSpesen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnSpesen(BigDecimal value) { - this.mahnSpesen = value; - } - - /** - * Ruft den Wert der mahnStufeCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCd() { - return mahnStufeCd; - } - - /** - * Legt den Wert der mahnStufeCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCd(String value) { - this.mahnStufeCd = value; - } - - /** - * Ruft den Wert der mahnStufeTextVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVU() { - return mahnStufeTextVU; - } - - /** - * Legt den Wert der mahnStufeTextVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVU(String value) { - this.mahnStufeTextVU = value; - } - - /** - * Ruft den Wert der mahnStelleVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleVU() { - return mahnStelleVU; - } - - /** - * Legt den Wert der mahnStelleVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleVU(String value) { - this.mahnStelleVU = value; - } - - /** - * Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleBeauftragt() { - return mahnStelleBeauftragt; - } - - /** - * Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleBeauftragt(String value) { - this.mahnStelleBeauftragt = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAb() { - return mahnStufeGueltigAb; - } - - /** - * Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAb(XMLGregorianCalendar value) { - this.mahnStufeGueltigAb = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigBis() { - return mahnStufeGueltigBis; - } - - /** - * Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigBis(XMLGregorianCalendar value) { - this.mahnStufeGueltigBis = value; - } - - /** - * Ruft den Wert der mahnStufeCdNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCdNext() { - return mahnStufeCdNext; - } - - /** - * Legt den Wert der mahnStufeCdNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCdNext(String value) { - this.mahnStufeCdNext = value; - } - - /** - * Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVUNext() { - return mahnStufeTextVUNext; - } - - /** - * Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVUNext(String value) { - this.mahnStufeTextVUNext = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAbNext() { - return mahnStufeGueltigAbNext; - } - - /** - * Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) { - this.mahnStufeGueltigAbNext = value; - } - - /** - * Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnLetzteZahlung() { - return mahnLetzteZahlung; - } - - /** - * Legt den Wert der mahnLetzteZahlung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnLetzteZahlung(XMLGregorianCalendar value) { - this.mahnLetzteZahlung = value; - } - - /** - * Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnAeltesteFaelligkeit() { - return mahnAeltesteFaelligkeit; - } - - /** - * Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) { - this.mahnAeltesteFaelligkeit = value; - } - - /** - * Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMahnAnzahlFaelligkeiten() { - return mahnAnzahlFaelligkeiten; - } - - /** - * Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMahnAnzahlFaelligkeiten(Integer value) { - this.mahnAnzahlFaelligkeiten = value; - } - - /** - * Ruft den Wert der grundRuecklaufCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundRuecklaufCd() { - return grundRuecklaufCd; - } - - /** - * Legt den Wert der grundRuecklaufCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundRuecklaufCd(String value) { - this.grundRuecklaufCd = value; - } - - /** - * Ruft den Wert der mahnDeckungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnDeckungBis() { - return mahnDeckungBis; - } - - /** - * Legt den Wert der mahnDeckungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnDeckungBis(XMLGregorianCalendar value) { - this.mahnDeckungBis = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/NATUERLICHEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/NATUERLICHEPERSONType.java deleted file mode 100644 index 49790911..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/NATUERLICHEPERSONType.java +++ /dev/null @@ -1,315 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für NATUERLICHE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NATUERLICHE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GeschlechtCd" type="{urn:omds20}GeschlechtCd_Type" />
- *       <attribute name="Gebdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="FamilienstandCd" type="{urn:omds20}FamilienstandCd_Type" />
- *       <attribute name="GebLandCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="HauptWohnLandCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
- *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NATUERLICHE_PERSON_Type") -public class NATUERLICHEPERSONType { - - @XmlAttribute(name = "Familienname", required = true) - protected String familienname; - @XmlAttribute(name = "Vorname") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd") - protected String geschlechtCd; - @XmlAttribute(name = "Gebdat") - protected XMLGregorianCalendar gebdat; - @XmlAttribute(name = "LandesCd") - protected String landesCd; - @XmlAttribute(name = "FamilienstandCd") - protected String familienstandCd; - @XmlAttribute(name = "GebLandCd") - protected String gebLandCd; - @XmlAttribute(name = "HauptWohnLandCd") - protected String hauptWohnLandCd; - @XmlAttribute(name = "PersonID_VU") - protected String personIDVU; - @XmlAttribute(name = "PersonID_Makler") - protected String personIDMakler; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 familienstandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienstandCd() { - return familienstandCd; - } - - /** - * Legt den Wert der familienstandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienstandCd(String value) { - this.familienstandCd = value; - } - - /** - * Ruft den Wert der gebLandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebLandCd() { - return gebLandCd; - } - - /** - * Legt den Wert der gebLandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebLandCd(String value) { - this.gebLandCd = value; - } - - /** - * Ruft den Wert der hauptWohnLandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHauptWohnLandCd() { - return hauptWohnLandCd; - } - - /** - * Legt den Wert der hauptWohnLandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHauptWohnLandCd(String value) { - this.hauptWohnLandCd = value; - } - - /** - * Ruft den Wert der personIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonIDVU() { - return personIDVU; - } - - /** - * Legt den Wert der personIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonIDVU(String value) { - this.personIDVU = value; - } - - /** - * Ruft den Wert der personIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonIDMakler() { - return personIDMakler; - } - - /** - * Legt den Wert der personIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonIDMakler(String value) { - this.personIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/OMDS.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/OMDS.java deleted file mode 100644 index 786582a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/OMDS.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "paket" -}) -@XmlRootElement(name = "OMDS") -public class OMDS { - - @XmlElement(name = "PAKET", required = true) - protected List paket; - - /** - * Gets the value of the paket property. - * - *

- * 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 set method for the paket property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPAKET().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PAKET } - * - * - */ - public List getPAKET() { - if (paket == null) { - paket = new ArrayList(); - } - return this.paket; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ObjectFactory.java deleted file mode 100644 index 70feca61..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ObjectFactory.java +++ /dev/null @@ -1,1159 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds2Types.v2_14 package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation"); - private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL"); - private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS"); - private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON"); - private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag"); - private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl"); - private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag"); - private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung"); - private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung"); - private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage"); - private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung"); - private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel"); - private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer"); - private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung"); - private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur"); - private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung"); - private final static QName _ELRahmenvertrag_QNAME = new QName("urn:omds20", "EL-Rahmenvertrag"); - private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text"); - private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON"); - private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT"); - private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE"); - private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN"); - private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION"); - private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG"); - private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS"); - private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON"); - private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON"); - private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON"); - private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE"); - private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO"); - private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS"); - private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER"); - private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT"); - private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG"); - private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung"); - private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert"); - private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index"); - private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation"); - private final static QName _ELObjekt_QNAME = new QName("urn:omds20", "EL-Objekt"); - private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten"); - private final static QName _ELFlaeche_QNAME = new QName("urn:omds20", "EL-Flaeche"); - private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente"); - private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer"); - private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme"); - private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum"); - private final static QName _ELKFZKennzeichen_QNAME = new QName("urn:omds20", "EL-KFZ-Kennzeichen"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_14 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link OMDS } - * - */ - public OMDS createOMDS() { - return new OMDS(); - } - - /** - * Create an instance of {@link PAKET } - * - */ - public PAKET createPAKET() { - return new PAKET(); - } - - /** - * Create an instance of {@link VERSUNTERNEHMEN } - * - */ - public VERSUNTERNEHMEN createVERSUNTERNEHMEN() { - return new VERSUNTERNEHMEN(); - } - - /** - * Create an instance of {@link ELKommunikationType } - * - */ - public ELKommunikationType createELKommunikationType() { - return new ELKommunikationType(); - } - - /** - * Create an instance of {@link SCHLUESSELART } - * - */ - public SCHLUESSELART createSCHLUESSELART() { - return new SCHLUESSELART(); - } - - /** - * Create an instance of {@link SCHLUESSEL } - * - */ - public SCHLUESSEL createSCHLUESSEL() { - return new SCHLUESSEL(); - } - - /** - * Create an instance of {@link KLAUSELType } - * - */ - public KLAUSELType createKLAUSELType() { - return new KLAUSELType(); - } - - /** - * Create an instance of {@link LOESCHANSTOSSType } - * - */ - public LOESCHANSTOSSType createLOESCHANSTOSSType() { - return new LOESCHANSTOSSType(); - } - - /** - * Create an instance of {@link PERSONType } - * - */ - public PERSONType createPERSONType() { - return new PERSONType(); - } - - /** - * Create an instance of {@link VERTRAG } - * - */ - public VERTRAG createVERTRAG() { - return new VERTRAG(); - } - - /** - * Create an instance of {@link VERTRAGType } - * - */ - public VERTRAGType createVERTRAGType() { - return new VERTRAGType(); - } - - /** - * Create an instance of {@link ELAntragType } - * - */ - public ELAntragType createELAntragType() { - return new ELAntragType(); - } - - /** - * Create an instance of {@link ELAnzahlType } - * - */ - public ELAnzahlType createELAnzahlType() { - return new ELAnzahlType(); - } - - /** - * Create an instance of {@link ELBetragType } - * - */ - public ELBetragType createELBetragType() { - return new ELBetragType(); - } - - /** - * Create an instance of {@link ELBezugsberechtigungType } - * - */ - public ELBezugsberechtigungType createELBezugsberechtigungType() { - return new ELBezugsberechtigungType(); - } - - /** - * Create an instance of {@link ELEinstufungType } - * - */ - public ELEinstufungType createELEinstufungType() { - return new ELEinstufungType(); - } - - /** - * Create an instance of {@link ELEntscheidungsfrageType } - * - */ - public ELEntscheidungsfrageType createELEntscheidungsfrageType() { - return new ELEntscheidungsfrageType(); - } - - /** - * Create an instance of {@link ELIdentifizierungType } - * - */ - public ELIdentifizierungType createELIdentifizierungType() { - return new ELIdentifizierungType(); - } - - /** - * Create an instance of {@link ELKlauselType } - * - */ - public ELKlauselType createELKlauselType() { - return new ELKlauselType(); - } - - /** - * Create an instance of {@link ELPolizzennummerType } - * - */ - public ELPolizzennummerType createELPolizzennummerType() { - return new ELPolizzennummerType(); - } - - /** - * Create an instance of {@link ELPraemienfreistellungType } - * - */ - public ELPraemienfreistellungType createELPraemienfreistellungType() { - return new ELPraemienfreistellungType(); - } - - /** - * Create an instance of {@link ELPraemienkorrekturType } - * - */ - public ELPraemienkorrekturType createELPraemienkorrekturType() { - return new ELPraemienkorrekturType(); - } - - /** - * Create an instance of {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType createELRahmenvereinbarungType() { - return new ELRahmenvereinbarungType(); - } - - /** - * Create an instance of {@link ELRahmenvertragType } - * - */ - public ELRahmenvertragType createELRahmenvertragType() { - return new ELRahmenvertragType(); - } - - /** - * Create an instance of {@link ELSelbstbehalt } - * - */ - public ELSelbstbehalt createELSelbstbehalt() { - return new ELSelbstbehalt(); - } - - /** - * Create an instance of {@link ELSelbstbehaltType } - * - */ - public ELSelbstbehaltType createELSelbstbehaltType() { - return new ELSelbstbehaltType(); - } - - /** - * Create an instance of {@link ELTextType } - * - */ - public ELTextType createELTextType() { - return new ELTextType(); - } - - /** - * Create an instance of {@link VERTRAGSPERSONType } - * - */ - public VERTRAGSPERSONType createVERTRAGSPERSONType() { - return new VERTRAGSPERSONType(); - } - - /** - * Create an instance of {@link VERSOBJEKTType } - * - */ - public VERSOBJEKTType createVERSOBJEKTType() { - return new VERSOBJEKTType(); - } - - /** - * Create an instance of {@link SPARTEType } - * - */ - public SPARTEType createSPARTEType() { - return new SPARTEType(); - } - - /** - * Create an instance of {@link SCHADENType } - * - */ - public SCHADENType createSCHADENType() { - return new SCHADENType(); - } - - /** - * Create an instance of {@link PROVISIONType } - * - */ - public PROVISIONType createPROVISIONType() { - return new PROVISIONType(); - } - - /** - * Create an instance of {@link MAHNUNGType } - * - */ - public MAHNUNGType createMAHNUNGType() { - return new MAHNUNGType(); - } - - /** - * Create an instance of {@link VERTRAGSFONDSType } - * - */ - public VERTRAGSFONDSType createVERTRAGSFONDSType() { - return new VERTRAGSFONDSType(); - } - - /** - * Create an instance of {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType createNATUERLICHEPERSONType() { - return new NATUERLICHEPERSONType(); - } - - /** - * Create an instance of {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType createSONSTIGEPERSONType() { - return new SONSTIGEPERSONType(); - } - - /** - * Create an instance of {@link VERSPERSONType } - * - */ - public VERSPERSONType createVERSPERSONType() { - return new VERSPERSONType(); - } - - /** - * Create an instance of {@link VERSKFZ } - * - */ - public VERSKFZ createVERSKFZ() { - return new VERSKFZ(); - } - - /** - * Create an instance of {@link VERSKFZType } - * - */ - public VERSKFZType createVERSKFZType() { - return new VERSKFZType(); - } - - /** - * Create an instance of {@link VERSSACHEType } - * - */ - public VERSSACHEType createVERSSACHEType() { - return new VERSSACHEType(); - } - - /** - * Create an instance of {@link RISIKOType } - * - */ - public RISIKOType createRISIKOType() { - return new RISIKOType(); - } - - /** - * Create an instance of {@link FONDSType } - * - */ - public FONDSType createFONDSType() { - return new FONDSType(); - } - - /** - * Create an instance of {@link PORTFOLIO } - * - */ - public PORTFOLIO createPORTFOLIO() { - return new PORTFOLIO(); - } - - /** - * Create an instance of {@link PORTFOLIOTYPE } - * - */ - public PORTFOLIOTYPE createPORTFOLIOTYPE() { - return new PORTFOLIOTYPE(); - } - - /** - * Create an instance of {@link SCHADENBETEILIGTERType } - * - */ - public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() { - return new SCHADENBETEILIGTERType(); - } - - /** - * Create an instance of {@link GESCHAEDIGTESOBJEKTType } - * - */ - public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() { - return new GESCHAEDIGTESOBJEKTType(); - } - - /** - * Create an instance of {@link ZAHLUNGType } - * - */ - public ZAHLUNGType createZAHLUNGType() { - return new ZAHLUNGType(); - } - - /** - * Create an instance of {@link ELGewinnbeteiligungType } - * - */ - public ELGewinnbeteiligungType createELGewinnbeteiligungType() { - return new ELGewinnbeteiligungType(); - } - - /** - * Create an instance of {@link ELGrenzwertType } - * - */ - public ELGrenzwertType createELGrenzwertType() { - return new ELGrenzwertType(); - } - - /** - * Create an instance of {@link ELIndexType } - * - */ - public ELIndexType createELIndexType() { - return new ELIndexType(); - } - - /** - * Create an instance of {@link ELLegitimationType } - * - */ - public ELLegitimationType createELLegitimationType() { - return new ELLegitimationType(); - } - - /** - * Create an instance of {@link ELObjektType } - * - */ - public ELObjektType createELObjektType() { - return new ELObjektType(); - } - - /** - * Create an instance of {@link ELObjektdatenType } - * - */ - public ELObjektdatenType createELObjektdatenType() { - return new ELObjektdatenType(); - } - - /** - * Create an instance of {@link ELFlaecheType } - * - */ - public ELFlaecheType createELFlaecheType() { - return new ELFlaecheType(); - } - - /** - * Create an instance of {@link ELRenteType } - * - */ - public ELRenteType createELRenteType() { - return new ELRenteType(); - } - - /** - * Create an instance of {@link ELSteuerType } - * - */ - public ELSteuerType createELSteuerType() { - return new ELSteuerType(); - } - - /** - * Create an instance of {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType createELVersicherungssummeType() { - return new ELVersicherungssummeType(); - } - - /** - * Create an instance of {@link ELZeitraumType } - * - */ - public ELZeitraumType createELZeitraumType() { - return new ELZeitraumType(); - } - - /** - * Create an instance of {@link ELKFZKennzeichenType } - * - */ - public ELKFZKennzeichenType createELKFZKennzeichenType() { - return new ELKFZKennzeichenType(); - } - - /** - * Create an instance of {@link ADRESSEType } - * - */ - public ADRESSEType createADRESSEType() { - return new ADRESSEType(); - } - - /** - * 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") - public JAXBElement createELKommunikation(ELKommunikationType value) { - return new JAXBElement(_ELKommunikation_QNAME, ELKommunikationType.class, null, value); - } - - /** - * 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") - public JAXBElement createKLAUSEL(KLAUSELType value) { - return new JAXBElement(_KLAUSEL_QNAME, KLAUSELType.class, null, value); - } - - /** - * 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") - public JAXBElement createLOESCHANSTOSS(LOESCHANSTOSSType value) { - return new JAXBElement(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value); - } - - /** - * 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") - public JAXBElement createPERSON(PERSONType value) { - return new JAXBElement(_PERSON_QNAME, PERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createELAntrag(ELAntragType value) { - return new JAXBElement(_ELAntrag_QNAME, ELAntragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELAnzahl(ELAnzahlType value) { - return new JAXBElement(_ELAnzahl_QNAME, ELAnzahlType.class, null, value); - } - - /** - * 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") - public JAXBElement createELBetrag(ELBetragType value) { - return new JAXBElement(_ELBetrag_QNAME, ELBetragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELBezugsberechtigung(ELBezugsberechtigungType value) { - return new JAXBElement(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELEinstufung(ELEinstufungType value) { - return new JAXBElement(_ELEinstufung_QNAME, ELEinstufungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELEntscheidungsfrage(ELEntscheidungsfrageType value) { - return new JAXBElement(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value); - } - - /** - * 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") - public JAXBElement createELIdentifizierung(ELIdentifizierungType value) { - return new JAXBElement(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELKlausel(ELKlauselType value) { - return new JAXBElement(_ELKlausel_QNAME, ELKlauselType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPolizzennummer(ELPolizzennummerType value) { - return new JAXBElement(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPraemienfreistellung(ELPraemienfreistellungType value) { - return new JAXBElement(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPraemienkorrektur(ELPraemienkorrekturType value) { - return new JAXBElement(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRahmenvereinbarung(ELRahmenvereinbarungType value) { - return new JAXBElement(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRahmenvertrag(ELRahmenvertragType value) { - return new JAXBElement(_ELRahmenvertrag_QNAME, ELRahmenvertragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELText(ELTextType value) { - return new JAXBElement(_ELText_QNAME, ELTextType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERTRAGSPERSON(VERTRAGSPERSONType value) { - return new JAXBElement(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSOBJEKT(VERSOBJEKTType value) { - return new JAXBElement(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value); - } - - /** - * 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") - public JAXBElement createSPARTE(SPARTEType value) { - return new JAXBElement(_SPARTE_QNAME, SPARTEType.class, null, value); - } - - /** - * 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") - public JAXBElement createSCHADEN(SCHADENType value) { - return new JAXBElement(_SCHADEN_QNAME, SCHADENType.class, null, value); - } - - /** - * 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") - public JAXBElement createPROVISION(PROVISIONType value) { - return new JAXBElement(_PROVISION_QNAME, PROVISIONType.class, null, value); - } - - /** - * 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") - public JAXBElement createMAHNUNG(MAHNUNGType value) { - return new JAXBElement(_MAHNUNG_QNAME, MAHNUNGType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERTRAGSFONDS(VERTRAGSFONDSType value) { - return new JAXBElement(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value); - } - - /** - * 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") - public JAXBElement createNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - return new JAXBElement(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createSONSTIGEPERSON(SONSTIGEPERSONType value) { - return new JAXBElement(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSPERSON(VERSPERSONType value) { - return new JAXBElement(_VERSPERSON_QNAME, VERSPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSSACHE(VERSSACHEType value) { - return new JAXBElement(_VERSSACHE_QNAME, VERSSACHEType.class, null, value); - } - - /** - * 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") - public JAXBElement createRISIKO(RISIKOType value) { - return new JAXBElement(_RISIKO_QNAME, RISIKOType.class, null, value); - } - - /** - * 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") - public JAXBElement createFONDS(FONDSType value) { - return new JAXBElement(_FONDS_QNAME, FONDSType.class, null, value); - } - - /** - * 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") - public JAXBElement createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) { - return new JAXBElement(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value); - } - - /** - * 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") - public JAXBElement createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) { - return new JAXBElement(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value); - } - - /** - * 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") - public JAXBElement createZAHLUNG(ZAHLUNGType value) { - return new JAXBElement(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value); - } - - /** - * 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") - public JAXBElement createELGewinnbeteiligung(ELGewinnbeteiligungType value) { - return new JAXBElement(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELGrenzwert(ELGrenzwertType value) { - return new JAXBElement(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value); - } - - /** - * 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") - public JAXBElement createELIndex(ELIndexType value) { - return new JAXBElement(_ELIndex_QNAME, ELIndexType.class, null, value); - } - - /** - * 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") - public JAXBElement createELLegitimation(ELLegitimationType value) { - return new JAXBElement(_ELLegitimation_QNAME, ELLegitimationType.class, null, value); - } - - /** - * 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") - public JAXBElement createELObjekt(ELObjektType value) { - return new JAXBElement(_ELObjekt_QNAME, ELObjektType.class, null, value); - } - - /** - * 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") - public JAXBElement createELObjektdaten(ELObjektdatenType value) { - return new JAXBElement(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value); - } - - /** - * 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") - public JAXBElement createELFlaeche(ELFlaecheType value) { - return new JAXBElement(_ELFlaeche_QNAME, ELFlaecheType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRente(ELRenteType value) { - return new JAXBElement(_ELRente_QNAME, ELRenteType.class, null, value); - } - - /** - * 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") - public JAXBElement createELSteuer(ELSteuerType value) { - return new JAXBElement(_ELSteuer_QNAME, ELSteuerType.class, null, value); - } - - /** - * 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") - public JAXBElement createELVersicherungssumme(ELVersicherungssummeType value) { - return new JAXBElement(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value); - } - - /** - * 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") - public JAXBElement createELZeitraum(ELZeitraumType value) { - return new JAXBElement(_ELZeitraum_QNAME, ELZeitraumType.class, null, value); - } - - /** - * 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") - public JAXBElement createELKFZKennzeichen(ELKFZKennzeichenType value) { - return new JAXBElement(_ELKFZKennzeichen_QNAME, ELKFZKennzeichenType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PAKET.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PAKET.java deleted file mode 100644 index 81a0f762..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PAKET.java +++ /dev/null @@ -1,684 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
- *           <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <group ref="{urn:omds20}bestand"/>
- *       </choice>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="MaklerID" use="required" type="{urn:omds20}MaklerID_Type" />
- *       <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
- *       <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
- *       <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
- *       <attribute name="VUVersion">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="6"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DVRNrAbs" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="8"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PaketKommentar">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SprachCd" type="{urn:omds20}SprachCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versunternehmen", - "schluesselart", - "klausel", - "loeschanstoss", - "person", - "vertrag", - "schaden", - "provision", - "mahnung", - "vertragsfonds" -}) -@XmlRootElement(name = "PAKET") -public class PAKET { - - @XmlElement(name = "VERS_UNTERNEHMEN") - protected List versunternehmen; - @XmlElement(name = "SCHLUESSELART") - protected List schluesselart; - @XmlElement(name = "KLAUSEL") - protected List klausel; - @XmlElement(name = "LOESCHANSTOSS") - protected List loeschanstoss; - @XmlElement(name = "PERSON") - protected List person; - @XmlElement(name = "VERTRAG") - protected List vertrag; - @XmlElement(name = "SCHADEN") - protected List schaden; - @XmlElement(name = "PROVISION") - protected List provision; - @XmlElement(name = "MAHNUNG") - protected List mahnung; - @XmlElement(name = "VERTRAGSFONDS") - protected List vertragsfonds; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "MaklerID", required = true) - protected String maklerID; - @XmlAttribute(name = "PaketZpktErstell", required = true) - protected XMLGregorianCalendar paketZpktErstell; - @XmlAttribute(name = "PaketZpktLetztErstell") - protected XMLGregorianCalendar paketZpktLetztErstell; - @XmlAttribute(name = "PaketInhCd", required = true) - protected PaketInhCdType paketInhCd; - @XmlAttribute(name = "PaketUmfCd", required = true) - protected PaketUmfCdType paketUmfCd; - @XmlAttribute(name = "OMDSVersion", required = true) - protected String omdsVersion; - @XmlAttribute(name = "VUVersion") - protected String vuVersion; - @XmlAttribute(name = "DVRNrAbs", required = true) - protected String dvrNrAbs; - @XmlAttribute(name = "PaketKommentar") - protected String paketKommentar; - @XmlAttribute(name = "SprachCd") - protected SprachCdType sprachCd; - - /** - * Gets the value of the versunternehmen property. - * - *

- * 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 set method for the versunternehmen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSUNTERNEHMEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSUNTERNEHMEN } - * - * - */ - public List getVERSUNTERNEHMEN() { - if (versunternehmen == null) { - versunternehmen = new ArrayList(); - } - return this.versunternehmen; - } - - /** - * Gets the value of the schluesselart property. - * - *

- * 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 set method for the schluesselart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSELART().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSELART } - * - * - */ - public List getSCHLUESSELART() { - if (schluesselart == null) { - schluesselart = new ArrayList(); - } - return this.schluesselart; - } - - /** - * Gets the value of the klausel property. - * - *

- * 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 set method for the klausel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKLAUSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KLAUSELType } - * - * - */ - public List getKLAUSEL() { - if (klausel == null) { - klausel = new ArrayList(); - } - return this.klausel; - } - - /** - * Gets the value of the loeschanstoss property. - * - *

- * 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 set method for the loeschanstoss property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLOESCHANSTOSS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LOESCHANSTOSSType } - * - * - */ - public List getLOESCHANSTOSS() { - if (loeschanstoss == null) { - loeschanstoss = new ArrayList(); - } - return this.loeschanstoss; - } - - /** - * Gets the value of the person property. - * - *

- * 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 set method for the person property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PERSONType } - * - * - */ - public List getPERSON() { - if (person == null) { - person = new ArrayList(); - } - return this.person; - } - - /** - * Gets the value of the vertrag property. - * - *

- * 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 set method for the vertrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAG } - * - * - */ - public List getVERTRAG() { - if (vertrag == null) { - vertrag = new ArrayList(); - } - return this.vertrag; - } - - /** - * Gets the value of the schaden property. - * - *

- * 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 set method for the schaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENType } - * - * - */ - public List getSCHADEN() { - if (schaden == null) { - schaden = new ArrayList(); - } - return this.schaden; - } - - /** - * Gets the value of the provision property. - * - *

- * 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 set method for the provision property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPROVISION().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PROVISIONType } - * - * - */ - public List getPROVISION() { - if (provision == null) { - provision = new ArrayList(); - } - return this.provision; - } - - /** - * Gets the value of the mahnung property. - * - *

- * 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 set method for the mahnung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMAHNUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MAHNUNGType } - * - * - */ - public List getMAHNUNG() { - if (mahnung == null) { - mahnung = new ArrayList(); - } - return this.mahnung; - } - - /** - * Gets the value of the vertragsfonds property. - * - *

- * 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 set method for the vertragsfonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSFONDSType } - * - * - */ - public List getVERTRAGSFONDS() { - if (vertragsfonds == null) { - vertragsfonds = new ArrayList(); - } - return this.vertragsfonds; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der paketZpktErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktErstell() { - return paketZpktErstell; - } - - /** - * Legt den Wert der paketZpktErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktErstell(XMLGregorianCalendar value) { - this.paketZpktErstell = value; - } - - /** - * Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktLetztErstell() { - return paketZpktLetztErstell; - } - - /** - * Legt den Wert der paketZpktLetztErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktLetztErstell(XMLGregorianCalendar value) { - this.paketZpktLetztErstell = value; - } - - /** - * Ruft den Wert der paketInhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketInhCdType } - * - */ - public PaketInhCdType getPaketInhCd() { - return paketInhCd; - } - - /** - * Legt den Wert der paketInhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketInhCdType } - * - */ - public void setPaketInhCd(PaketInhCdType value) { - this.paketInhCd = value; - } - - /** - * Ruft den Wert der paketUmfCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPaketUmfCd() { - return paketUmfCd; - } - - /** - * Legt den Wert der paketUmfCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPaketUmfCd(PaketUmfCdType value) { - this.paketUmfCd = value; - } - - /** - * Ruft den Wert der omdsVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOMDSVersion() { - return omdsVersion; - } - - /** - * Legt den Wert der omdsVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOMDSVersion(String value) { - this.omdsVersion = value; - } - - /** - * Ruft den Wert der vuVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUVersion() { - return vuVersion; - } - - /** - * Legt den Wert der vuVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUVersion(String value) { - this.vuVersion = value; - } - - /** - * Ruft den Wert der dvrNrAbs-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDVRNrAbs() { - return dvrNrAbs; - } - - /** - * Legt den Wert der dvrNrAbs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDVRNrAbs(String value) { - this.dvrNrAbs = value; - } - - /** - * Ruft den Wert der paketKommentar-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaketKommentar() { - return paketKommentar; - } - - /** - * Legt den Wert der paketKommentar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaketKommentar(String value) { - this.paketKommentar = value; - } - - /** - * Ruft den Wert der sprachCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SprachCdType } - * - */ - public SprachCdType getSprachCd() { - return sprachCd; - } - - /** - * Legt den Wert der sprachCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SprachCdType } - * - */ - public void setSprachCd(SprachCdType value) { - this.sprachCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PERSONType.java deleted file mode 100644 index 9e00787d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PERSONType.java +++ /dev/null @@ -1,448 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Personennr">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PERSON_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class PERSONType { - - @XmlElement(name = "NATUERLICHE_PERSON") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - @XmlAttribute(name = "PersArtCd", required = true) - protected PersArtCdType persArtCd; - @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIO.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIO.java deleted file mode 100644 index a7b509df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIO.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}PORTFOLIO_TYPE">
- *       <sequence>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "fonds" -}) -@XmlRootElement(name = "PORTFOLIO") -public class PORTFOLIO - extends PORTFOLIOTYPE -{ - - @XmlElement(name = "FONDS") - protected List fonds; - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIOTYPE.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIOTYPE.java deleted file mode 100644 index e253a32f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PORTFOLIOTYPE.java +++ /dev/null @@ -1,307 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PORTFOLIO_TYPE complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PORTFOLIO_TYPE">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
- *       <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PORTFOLIO_TYPE") -@XmlSeeAlso({ - PORTFOLIO.class -}) -public class PORTFOLIOTYPE { - - @XmlAttribute(name = "PortfolioID", required = true) - protected String portfolioID; - @XmlAttribute(name = "ISIN") - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der portfolioID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPortfolioID() { - return portfolioID; - } - - /** - * Legt den Wert der portfolioID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPortfolioID(String value) { - this.portfolioID = value; - } - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PROVISIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PROVISIONType.java deleted file mode 100644 index d294db56..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PROVISIONType.java +++ /dev/null @@ -1,544 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PROVISION_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PROVISION_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ProvisionsID" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ProvVon" type="{urn:omds20}Datum" />
- *       <attribute name="ProvBis" type="{urn:omds20}Datum" />
- *       <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
- *       <attribute name="ProvTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
- *       <attribute name="ProvSatz" type="{urn:omds20}decimal" />
- *       <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ProvArtText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PROVISION_Type") -public class PROVISIONType { - - @XmlAttribute(name = "ProvisionsID", required = true) - protected String provisionsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "VerbandSparteCd") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung") - protected String spartenErweiterung; - @XmlAttribute(name = "BuchDat", required = true) - protected XMLGregorianCalendar buchDat; - @XmlAttribute(name = "ProvVon") - protected XMLGregorianCalendar provVon; - @XmlAttribute(name = "ProvBis") - protected XMLGregorianCalendar provBis; - @XmlAttribute(name = "ProvArtCd", required = true) - protected String provArtCd; - @XmlAttribute(name = "ProvTxt") - protected String provTxt; - @XmlAttribute(name = "ProvGrdlg") - protected BigDecimal provGrdlg; - @XmlAttribute(name = "ProvSatz") - protected BigDecimal provSatz; - @XmlAttribute(name = "ProvBetrag", required = true) - protected BigDecimal provBetrag; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ProvArtText") - protected String provArtText; - @XmlAttribute(name = "Vorpolizze") - protected String vorpolizze; - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der buchDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBuchDat() { - return buchDat; - } - - /** - * Legt den Wert der buchDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBuchDat(XMLGregorianCalendar value) { - this.buchDat = value; - } - - /** - * Ruft den Wert der provVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvVon() { - return provVon; - } - - /** - * Legt den Wert der provVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvVon(XMLGregorianCalendar value) { - this.provVon = value; - } - - /** - * Ruft den Wert der provBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvBis() { - return provBis; - } - - /** - * Legt den Wert der provBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvBis(XMLGregorianCalendar value) { - this.provBis = value; - } - - /** - * Ruft den Wert der provArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtCd() { - return provArtCd; - } - - /** - * Legt den Wert der provArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtCd(String value) { - this.provArtCd = value; - } - - /** - * Ruft den Wert der provTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvTxt() { - return provTxt; - } - - /** - * Legt den Wert der provTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvTxt(String value) { - this.provTxt = value; - } - - /** - * Ruft den Wert der provGrdlg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvGrdlg() { - return provGrdlg; - } - - /** - * Legt den Wert der provGrdlg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvGrdlg(BigDecimal value) { - this.provGrdlg = value; - } - - /** - * Ruft den Wert der provSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvSatz() { - return provSatz; - } - - /** - * Legt den Wert der provSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvSatz(BigDecimal value) { - this.provSatz = value; - } - - /** - * Ruft den Wert der provBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvBetrag() { - return provBetrag; - } - - /** - * Legt den Wert der provBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvBetrag(BigDecimal value) { - this.provBetrag = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der provArtText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtText() { - return provArtText; - } - - /** - * Legt den Wert der provArtText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtText(String value) { - this.provArtText = value; - } - - /** - * Ruft den Wert der vorpolizze-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorpolizze() { - return vorpolizze; - } - - /** - * Legt den Wert der vorpolizze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorpolizze(String value) { - this.vorpolizze = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketInhCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketInhCdType.java deleted file mode 100644 index 49ffccf9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketInhCdType.java +++ /dev/null @@ -1,89 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketInhCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PaketInhCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AI"/>
- *     <enumeration value="VF"/>
- *     <enumeration value="VI"/>
- *     <enumeration value="VK"/>
- *     <enumeration value="VM"/>
- *     <enumeration value="VP"/>
- *     <enumeration value="VS"/>
- *     <enumeration value="VV"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketInhCd_Type") -@XmlEnum -public enum PaketInhCdType { - - - /** - * Allgem. Initialbestand (generelle Schlüssel) - * - */ - AI, - - /** - * VU Fondsbestand - * - */ - VF, - - /** - * VU Initialbestand (VU Schlüssel) - * - */ - VI, - - /** - * VU Mahn/Klagebestand - * - */ - VK, - - /** - * VU Mischbestand - * - */ - VM, - - /** - * VU Provisionen - * - */ - VP, - - /** - * VU Schadenbestand - * - */ - VS, - - /** - * VU Vertragsbestand - * - */ - VV; - - public String value() { - return name(); - } - - public static PaketInhCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketUmfCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketUmfCdType.java deleted file mode 100644 index d444fa51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PaketUmfCdType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketUmfCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PaketUmfCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="D"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketUmfCd_Type") -@XmlEnum -public enum PaketUmfCdType { - - - /** - * Differenz - * - */ - D, - - /** - * gesamt - * - */ - G; - - public String value() { - return name(); - } - - public static PaketUmfCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PersArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PersArtCdType.java deleted file mode 100644 index c8d28710..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PersArtCdType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PersArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="N"/>
- *     <enumeration value="S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PersArtCd_Type") -@XmlEnum -public enum PersArtCdType { - - - /** - * natürliche Person - * - */ - N, - - /** - * sonstige Person - * - */ - S; - - public String value() { - return name(); - } - - public static PersArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PolArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PolArtCdType.java deleted file mode 100644 index 891d92d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PolArtCdType.java +++ /dev/null @@ -1,61 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="N"/>
- *     <enumeration value="V"/>
- *     <enumeration value="X"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolArtCd_Type") -@XmlEnum -public enum PolArtCdType { - - - /** - * Ersatzpolizze bei Ersatz/Konv. - * - */ - E, - - /** - * Nachversicherung - * - */ - N, - - /** - * Vorpolizze bei Ersatz/Konv. - * - */ - V, - - /** - * Vorpolizze bei Migration - * - */ - X; - - public String value() { - return name(); - } - - public static PolArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PraemFristCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PraemFristCdType.java deleted file mode 100644 index 71fbac7d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/PraemFristCdType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PraemFristCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PraemFristCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="J"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PraemFristCd_Type") -@XmlEnum -public enum PraemFristCdType { - - - /** - * Einmal - * - */ - E, - - /** - * Jahr - * - */ - J; - - public String value() { - return name(); - } - - public static PraemFristCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RISIKOType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RISIKOType.java deleted file mode 100644 index 4be9f5f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RISIKOType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RISIKO_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RISIKO_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Objekt"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="RisikoArtCd" use="required" type="{urn:omds20}RisikoArtCd_Type" />
- *       <attribute name="RisikoBez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemFristCd" type="{urn:omds20}PraemFristCd_Type" />
- *       <attribute name="PraemieNto" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RISIKO_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung" -}) -public class RISIKOType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Objekt", type = ELObjektType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlAttribute(name = "RisikoLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int risikoLfnr; - @XmlAttribute(name = "RisikoArtCd", required = true) - protected RisikoArtCdType risikoArtCd; - @XmlAttribute(name = "RisikoBez", required = true) - protected String risikoBez; - @XmlAttribute(name = "PraemFristCd") - protected PraemFristCdType praemFristCd; - @XmlAttribute(name = "PraemieNto") - protected BigDecimal praemieNto; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIdentifizierungType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELObjektType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELVersicherungssummeType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Ruft den Wert der risikoLfnr-Eigenschaft ab. - * - */ - public int getRisikoLfnr() { - return risikoLfnr; - } - - /** - * Legt den Wert der risikoLfnr-Eigenschaft fest. - * - */ - public void setRisikoLfnr(int value) { - this.risikoLfnr = value; - } - - /** - * Ruft den Wert der risikoArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoArtCdType } - * - */ - public RisikoArtCdType getRisikoArtCd() { - return risikoArtCd; - } - - /** - * Legt den Wert der risikoArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoArtCdType } - * - */ - public void setRisikoArtCd(RisikoArtCdType value) { - this.risikoArtCd = value; - } - - /** - * Ruft den Wert der risikoBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRisikoBez() { - return risikoBez; - } - - /** - * Legt den Wert der risikoBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRisikoBez(String value) { - this.risikoBez = value; - } - - /** - * Ruft den Wert der praemFristCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemFristCdType } - * - */ - public PraemFristCdType getPraemFristCd() { - return praemFristCd; - } - - /** - * Legt den Wert der praemFristCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemFristCdType } - * - */ - public void setPraemFristCd(PraemFristCdType value) { - this.praemFristCd = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RisikoArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RisikoArtCdType.java deleted file mode 100644 index d94d4f7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/RisikoArtCdType.java +++ /dev/null @@ -1,1124 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AH1"/>
- *     <enumeration value="AK1"/>
- *     <enumeration value="AK2"/>
- *     <enumeration value="AS1"/>
- *     <enumeration value="AS2"/>
- *     <enumeration value="AS3"/>
- *     <enumeration value="AS4"/>
- *     <enumeration value="AU1"/>
- *     <enumeration value="AU2"/>
- *     <enumeration value="AU3"/>
- *     <enumeration value="AU4"/>
- *     <enumeration value="AU5"/>
- *     <enumeration value="AV1"/>
- *     <enumeration value="BA1"/>
- *     <enumeration value="BD1"/>
- *     <enumeration value="B01"/>
- *     <enumeration value="B02"/>
- *     <enumeration value="B03"/>
- *     <enumeration value="B04"/>
- *     <enumeration value="B05"/>
- *     <enumeration value="B06"/>
- *     <enumeration value="B11"/>
- *     <enumeration value="BL1"/>
- *     <enumeration value="BL2"/>
- *     <enumeration value="E01"/>
- *     <enumeration value="E02"/>
- *     <enumeration value="EC1"/>
- *     <enumeration value="F01"/>
- *     <enumeration value="F02"/>
- *     <enumeration value="F03"/>
- *     <enumeration value="F04"/>
- *     <enumeration value="F05"/>
- *     <enumeration value="G01"/>
- *     <enumeration value="G02"/>
- *     <enumeration value="H01"/>
- *     <enumeration value="H02"/>
- *     <enumeration value="H03"/>
- *     <enumeration value="H04"/>
- *     <enumeration value="H05"/>
- *     <enumeration value="H06"/>
- *     <enumeration value="H07"/>
- *     <enumeration value="H08"/>
- *     <enumeration value="H99"/>
- *     <enumeration value="HH1"/>
- *     <enumeration value="K01"/>
- *     <enumeration value="K02"/>
- *     <enumeration value="K03"/>
- *     <enumeration value="K04"/>
- *     <enumeration value="K09"/>
- *     <enumeration value="K10"/>
- *     <enumeration value="K99"/>
- *     <enumeration value="L01"/>
- *     <enumeration value="L02"/>
- *     <enumeration value="L03"/>
- *     <enumeration value="L04"/>
- *     <enumeration value="L05"/>
- *     <enumeration value="L06"/>
- *     <enumeration value="L07"/>
- *     <enumeration value="L08"/>
- *     <enumeration value="L09"/>
- *     <enumeration value="L10"/>
- *     <enumeration value="L11"/>
- *     <enumeration value="L99"/>
- *     <enumeration value="LS1"/>
- *     <enumeration value="LW1"/>
- *     <enumeration value="M01"/>
- *     <enumeration value="M02"/>
- *     <enumeration value="M03"/>
- *     <enumeration value="M04"/>
- *     <enumeration value="M05"/>
- *     <enumeration value="M06"/>
- *     <enumeration value="M07"/>
- *     <enumeration value="R01"/>
- *     <enumeration value="R02"/>
- *     <enumeration value="R03"/>
- *     <enumeration value="R04"/>
- *     <enumeration value="R05"/>
- *     <enumeration value="R06"/>
- *     <enumeration value="R07"/>
- *     <enumeration value="R08"/>
- *     <enumeration value="R09"/>
- *     <enumeration value="R10"/>
- *     <enumeration value="R11"/>
- *     <enumeration value="R12"/>
- *     <enumeration value="R13"/>
- *     <enumeration value="R14"/>
- *     <enumeration value="R15"/>
- *     <enumeration value="R16"/>
- *     <enumeration value="R99"/>
- *     <enumeration value="RE1"/>
- *     <enumeration value="RE2"/>
- *     <enumeration value="RE3"/>
- *     <enumeration value="RE4"/>
- *     <enumeration value="S01"/>
- *     <enumeration value="S12"/>
- *     <enumeration value="S13"/>
- *     <enumeration value="S14"/>
- *     <enumeration value="S15"/>
- *     <enumeration value="S16"/>
- *     <enumeration value="S17"/>
- *     <enumeration value="S99"/>
- *     <enumeration value="ST1"/>
- *     <enumeration value="T01"/>
- *     <enumeration value="T02"/>
- *     <enumeration value="T03"/>
- *     <enumeration value="T04"/>
- *     <enumeration value="T05"/>
- *     <enumeration value="T06"/>
- *     <enumeration value="T07"/>
- *     <enumeration value="T08"/>
- *     <enumeration value="T09"/>
- *     <enumeration value="T11"/>
- *     <enumeration value="T12"/>
- *     <enumeration value="T13"/>
- *     <enumeration value="T20"/>
- *     <enumeration value="T21"/>
- *     <enumeration value="T22"/>
- *     <enumeration value="T23"/>
- *     <enumeration value="T99"/>
- *     <enumeration value="TI1"/>
- *     <enumeration value="U01"/>
- *     <enumeration value="U02"/>
- *     <enumeration value="U03"/>
- *     <enumeration value="U04"/>
- *     <enumeration value="U05"/>
- *     <enumeration value="U06"/>
- *     <enumeration value="U09"/>
- *     <enumeration value="U10"/>
- *     <enumeration value="U11"/>
- *     <enumeration value="U12"/>
- *     <enumeration value="U13"/>
- *     <enumeration value="U14"/>
- *     <enumeration value="U15"/>
- *     <enumeration value="U16"/>
- *     <enumeration value="U17"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoArtCd_Type") -@XmlEnum -public enum RisikoArtCdType { - - - /** - * KFZ-Haftpflicht - * - */ - @XmlEnumValue("AH1") - AH_1("AH1"), - - /** - * Voll- und Gross-Schadenkasko - * - */ - @XmlEnumValue("AK1") - AK_1("AK1"), - - /** - * Teilkasko - * - */ - @XmlEnumValue("AK2") - AK_2("AK2"), - - /** - * KFZ-Assistance - * - */ - @XmlEnumValue("AS1") - AS_1("AS1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("AS2") - AS_2("AS2"), - - /** - * Wohn-Assistance - * - */ - @XmlEnumValue("AS3") - AS_3("AS3"), - - /** - * Unfall-Assistance - * - */ - @XmlEnumValue("AS4") - AS_4("AS4"), - - /** - * Insassen-Unfall - * - */ - @XmlEnumValue("AU1") - AU_1("AU1"), - - /** - * Insassen-Unfall Todesfall - * - */ - @XmlEnumValue("AU2") - AU_2("AU2"), - - /** - * Insassen-Unfall Invalidität - * - */ - @XmlEnumValue("AU3") - AU_3("AU3"), - - /** - * Insassen-Unfall Taggeld - * - */ - @XmlEnumValue("AU4") - AU_4("AU4"), - - /** - * Insassen-Unfall Heilkosten - * - */ - @XmlEnumValue("AU5") - AU_5("AU5"), - - /** - * Abfertigungs-Versicherung - * - */ - @XmlEnumValue("AV1") - AV_1("AV1"), - - /** - * Bausparen Ansparen - * - */ - @XmlEnumValue("BA1") - BA_1("BA1"), - - /** - * Bausparen Darlehen - * - */ - @XmlEnumValue("BD1") - BD_1("BD1"), - - /** - * Betr.Unterbrechung-Feuer-Zivil - * - */ - @XmlEnumValue("B01") - B_01("B01"), - - /** - * Betr.Unterbrechung Feuer-Industrie - * - */ - @XmlEnumValue("B02") - B_02("B02"), - - /** - * Betr.Unterbrechung-EC - * - */ - @XmlEnumValue("B03") - B_03("B03"), - - /** - * Betr.Unterbrechung-Maschinenbruch - * - */ - @XmlEnumValue("B04") - B_04("B04"), - - /** - * Betr.Unterbrechung-Elementarschaden - * - */ - @XmlEnumValue("B05") - B_05("B05"), - - /** - * Betr.Unterbrechung f.freiber. Tätige - * - */ - @XmlEnumValue("B06") - B_06("B06"), - - /** - * Veranstaltungen - * - */ - @XmlEnumValue("B11") - B_11("B11"), - - /** - * Blitzschlag - * - */ - @XmlEnumValue("BL1") - BL_1("BL1"), - - /** - * indirekter Blitzschlag - * - */ - @XmlEnumValue("BL2") - BL_2("BL2"), - - /** - * Einbruch-Diebstahl - * - */ - @XmlEnumValue("E01") - E_01("E01"), - - /** - * Kassenboten - * - */ - @XmlEnumValue("E02") - E_02("E02"), - - /** - * Extended Coverage - * - */ - @XmlEnumValue("EC1") - EC_1("EC1"), - - /** - * Feuer-Zivil - * - */ - @XmlEnumValue("F01") - F_01("F01"), - - /** - * Feuer-Landwirtschaft - * - */ - @XmlEnumValue("F02") - F_02("F02"), - - /** - * Feuer-Industrie - * - */ - @XmlEnumValue("F03") - F_03("F03"), - - /** - * Feuer-EC - * - */ - @XmlEnumValue("F04") - F_04("F04"), - - /** - * Waldbrand - * - */ - @XmlEnumValue("F05") - F_05("F05"), - - /** - * Glasbruch privat - * - */ - @XmlEnumValue("G01") - G_01("G01"), - - /** - * Glasbruch Geschäft - * - */ - @XmlEnumValue("G02") - G_02("G02"), - - /** - * Allg.Haftpflicht - * - */ - @XmlEnumValue("H01") - H_01("H01"), - - /** - * Sonder-Haftpflicht - * - */ - @XmlEnumValue("H02") - H_02("H02"), - - /** - * Flug-Haftpflicht - * - */ - @XmlEnumValue("H03") - H_03("H03"), - - /** - * Vermögensschaden - * - */ - @XmlEnumValue("H04") - H_04("H04"), - - /** - * Atom-Haftpflicht - * - */ - @XmlEnumValue("H05") - H_05("H05"), - - /** - * Verkehrs-Haftpflicht - * - */ - @XmlEnumValue("H06") - H_06("H06"), - - /** - * Bauherrn-Haftpflicht - * - */ - @XmlEnumValue("H07") - H_07("H07"), - - /** - * Boots-Haftpflicht - * - */ - @XmlEnumValue("H08") - H_08("H08"), - - /** - * Sonstige Haftpflicht - * - */ - @XmlEnumValue("H99") - H_99("H99"), - - /** - * Haushalt - * - */ - @XmlEnumValue("HH1") - HH_1("HH1"), - - /** - * Spital - * - */ - @XmlEnumValue("K01") - K_01("K01"), - - /** - * Ambulanz - * - */ - @XmlEnumValue("K02") - K_02("K02"), - - /** - * Heilmittel - * - */ - @XmlEnumValue("K03") - K_03("K03"), - - /** - * Taggeld - * - */ - @XmlEnumValue("K04") - K_04("K04"), - - /** - * Reise-KV - * - */ - @XmlEnumValue("K09") - K_09("K09"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("K10") - K_10("K10"), - - /** - * KV sonstige - * - */ - @XmlEnumValue("K99") - K_99("K99"), - - /** - * Leben Kapital - * - */ - @XmlEnumValue("L01") - L_01("L01"), - - /** - * Leben Risiko - * - */ - @XmlEnumValue("L02") - L_02("L02"), - - /** - * Leben Rente - * - */ - @XmlEnumValue("L03") - L_03("L03"), - - /** - * Leben Dread Disease - * - */ - @XmlEnumValue("L04") - L_04("L04"), - - /** - * Leben veranlagungsorientiert - * - */ - @XmlEnumValue("L05") - L_05("L05"), - - /** - * Leben Kreditrestschuld - * - */ - @XmlEnumValue("L06") - L_06("L06"), - - /** - * Leben prämiengefördert - * - */ - @XmlEnumValue("L07") - L_07("L07"), - - /** - * Leben fondgebunden - * - */ - @XmlEnumValue("L08") - L_08("L08"), - - /** - * Berufsunfähigkeit - * - */ - @XmlEnumValue("L09") - L_09("L09"), - - /** - * Erwerbsunfähigkeit - * - */ - @XmlEnumValue("L10") - L_10("L10"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("L11") - L_11("L11"), - - /** - * Leben sonstige - * - */ - @XmlEnumValue("L99") - L_99("L99"), - - /** - * Leasing - * - */ - @XmlEnumValue("LS1") - LS_1("LS1"), - - /** - * Leitungswasser - * - */ - @XmlEnumValue("LW1") - LW_1("LW1"), - - /** - * Maschinenbruch - * - */ - @XmlEnumValue("M01") - M_01("M01"), - - /** - * Maschinen-Montage - * - */ - @XmlEnumValue("M02") - M_02("M02"), - - /** - * Maschinen-Garantie - * - */ - @XmlEnumValue("M03") - M_03("M03"), - - /** - * Elektrogeräte - * - */ - @XmlEnumValue("M04") - M_04("M04"), - - /** - * Computer und Unterhaltungselektronik - * - */ - @XmlEnumValue("M05") - M_05("M05"), - - /** - * Tiefkühltruhen - * - */ - @XmlEnumValue("M06") - M_06("M06"), - - /** - * Haustechnik - * - */ - @XmlEnumValue("M07") - M_07("M07"), - - /** - * Privat Rechtsschutz - * - */ - @XmlEnumValue("R01") - R_01("R01"), - - /** - * Kfz-Rechtsschutz - * - */ - @XmlEnumValue("R02") - R_02("R02"), - - /** - * Firmen-Rechtsschutz - * - */ - @XmlEnumValue("R03") - R_03("R03"), - - /** - * Schadenersatz- und Strafrechtsschutz - * - */ - @XmlEnumValue("R04") - R_04("R04"), - - /** - * Arbeitsgerichtsrechtsschutz - * - */ - @XmlEnumValue("R05") - R_05("R05"), - - /** - * Sozialversicherungsrechtsschutz - * - */ - @XmlEnumValue("R06") - R_06("R06"), - - /** - * Beratungsrechtsschutz - * - */ - @XmlEnumValue("R07") - R_07("R07"), - - /** - * Allgemeiner Vertragsrechtsschutz - * - */ - @XmlEnumValue("R08") - R_08("R08"), - - /** - * Grundstückseigentum- und Mietenrechtsschutz - * - */ - @XmlEnumValue("R09") - R_09("R09"), - - /** - * Erb- und Familienrechtsschutz - * - */ - @XmlEnumValue("R10") - R_10("R10"), - - /** - * Disziplinarverfahren - * - */ - @XmlEnumValue("R11") - R_11("R11"), - - /** - * Disziplinarverfahren für angestellte Ärzte - * - */ - @XmlEnumValue("R12") - R_12("R12"), - - /** - * Vorsatzdelikte - * - */ - @XmlEnumValue("R13") - R_13("R13"), - - /** - * Fahrzeugrechtsschutz - * - */ - @XmlEnumValue("R14") - R_14("R14"), - - /** - * Lenkerrechtsschutz - * - */ - @XmlEnumValue("R15") - R_15("R15"), - - /** - * Fahrzeugvertragsrechtsschutz - * - */ - @XmlEnumValue("R16") - R_16("R16"), - - /** - * Sonstiger Rechtsschutz - * - */ - @XmlEnumValue("R99") - R_99("R99"), - - /** - * Reise-Storno - * - */ - @XmlEnumValue("RE1") - RE_1("RE1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("RE2") - RE_2("RE2"), - - /** - * Reise-Kranken - * - */ - @XmlEnumValue("RE3") - RE_3("RE3"), - - /** - * Reise-Unfall - * - */ - @XmlEnumValue("RE4") - RE_4("RE4"), - - /** - * Kühlgut - * - */ - @XmlEnumValue("S01") - S_01("S01"), - - /** - * Lizenzverlust - * - */ - @XmlEnumValue("S12") - S_12("S12"), - - /** - * Atom-Sach - * - */ - @XmlEnumValue("S13") - S_13("S13"), - - /** - * Bauwesen - * - */ - @XmlEnumValue("S14") - S_14("S14"), - - /** - * Flugkasko - * - */ - @XmlEnumValue("S15") - S_15("S15"), - - /** - * Bootskasko - * - */ - @XmlEnumValue("S16") - S_16("S16"), - - /** - * Grabstätten - * - */ - @XmlEnumValue("S17") - S_17("S17"), - - /** - * sonstige SV - * - */ - @XmlEnumValue("S99") - S_99("S99"), - - /** - * Sturm - * - */ - @XmlEnumValue("ST1") - ST_1("ST1"), - - /** - * Land-Binnenwaren - * - */ - @XmlEnumValue("T01") - T_01("T01"), - - /** - * See - * - */ - @XmlEnumValue("T02") - T_02("T02"), - - /** - * Krieg - * - */ - @XmlEnumValue("T03") - T_03("T03"), - - /** - * Lager - * - */ - @XmlEnumValue("T04") - T_04("T04"), - - /** - * Valoren-Gewerblich - * - */ - @XmlEnumValue("T05") - T_05("T05"), - - /** - * Valoren-Privat - * - */ - @XmlEnumValue("T06") - T_06("T06"), - - /** - * Sportboot-Kasko - * - */ - @XmlEnumValue("T07") - T_07("T07"), - - /** - * Musik-Instrumente - * - */ - @XmlEnumValue("T08") - T_08("T08"), - - /** - * Kunst - * - */ - @XmlEnumValue("T09") - T_09("T09"), - - /** - * Seekasko - * - */ - @XmlEnumValue("T11") - T_11("T11"), - - /** - * Flusskasko - * - */ - @XmlEnumValue("T12") - T_12("T12"), - - /** - * Landkasko - * - */ - @XmlEnumValue("T13") - T_13("T13"), - - /** - * Reisegepäck - * - */ - @XmlEnumValue("T20") - T_20("T20"), - - /** - * Fotoapparate - * - */ - @XmlEnumValue("T21") - T_21("T21"), - - /** - * Film/Sach - * - */ - @XmlEnumValue("T22") - T_22("T22"), - - /** - * Film/Ausfall - * - */ - @XmlEnumValue("T23") - T_23("T23"), - - /** - * Sonstige Transport - * - */ - @XmlEnumValue("T99") - T_99("T99"), - - /** - * Tier - * - */ - @XmlEnumValue("TI1") - TI_1("TI1"), - - /** - * Allg.Unfall - * - */ - @XmlEnumValue("U01") - U_01("U01"), - - /** - * Kollektiv Unfall - * - */ - @XmlEnumValue("U02") - U_02("U02"), - - /** - * Schülerunfall - * - */ - @XmlEnumValue("U03") - U_03("U03"), - - /** - * Volksunfall - * - */ - @XmlEnumValue("U04") - U_04("U04"), - - /** - * Flug-Unfall - * - */ - @XmlEnumValue("U05") - U_05("U05"), - - /** - * Boots-Unfall - * - */ - @XmlEnumValue("U06") - U_06("U06"), - - /** - * Besucher-Unfall - * - */ - @XmlEnumValue("U09") - U_09("U09"), - - /** - * Unfall mit Kapitalrückgewähr - * - */ - @XmlEnumValue("U10") - U_10("U10"), - - /** - * Taggeld - * - */ - @XmlEnumValue("U11") - U_11("U11"), - - /** - * Invalidität - * - */ - @XmlEnumValue("U12") - U_12("U12"), - - /** - * Unfallrente - * - */ - @XmlEnumValue("U13") - U_13("U13"), - - /** - * Unfalltod - * - */ - @XmlEnumValue("U14") - U_14("U14"), - - /** - * Spitalgeld - * - */ - @XmlEnumValue("U15") - U_15("U15"), - - /** - * Unfallkosten - * - */ - @XmlEnumValue("U16") - U_16("U16"), - - /** - * Kostenersatz - * - */ - @XmlEnumValue("U17") - U_17("U17"); - private final String value; - - RisikoArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoArtCdType fromValue(String v) { - for (RisikoArtCdType c: RisikoArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENBETEILIGTERType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENBETEILIGTERType.java deleted file mode 100644 index 727dc599..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENBETEILIGTERType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SCHADEN_BETEILIGTER_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_BETEILIGTER_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = { - "geschaedigtesobjekt", - "zahlung" -}) -public class SCHADENBETEILIGTERType { - - @XmlElement(name = "GESCHAEDIGTES_OBJEKT") - protected List geschaedigtesobjekt; - @XmlElement(name = "ZAHLUNG") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "BetRolleCd", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt") - protected String betTxt; - - /** - * Gets the value of the geschaedigtesobjekt property. - * - *

- * 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 set method for the geschaedigtesobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGESCHAEDIGTESOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GESCHAEDIGTESOBJEKTType } - * - * - */ - public List getGESCHAEDIGTESOBJEKT() { - if (geschaedigtesobjekt == null) { - geschaedigtesobjekt = new ArrayList(); - } - return this.geschaedigtesobjekt; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZAHLUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENType.java deleted file mode 100644 index f2e3272a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHADENType.java +++ /dev/null @@ -1,658 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SCHADEN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-KFZ-Kennzeichen" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
- *       <attribute name="SchadUrsTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
- *       <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
- *       <attribute name="ErledDat" type="{urn:omds20}Datum" />
- *       <attribute name="SachbearbVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_Type", propOrder = { - "elAnzahlOrELBetragOrELEinstufung", - "schadenbeteiligter", - "elkfzKennzeichen" -}) -public class SCHADENType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlElement(name = "SCHADEN_BETEILIGTER") - protected List schadenbeteiligter; - @XmlElement(name = "EL-KFZ-Kennzeichen") - protected ELKFZKennzeichenType elkfzKennzeichen; - @XmlAttribute(name = "Schadennr", required = true) - protected String schadennr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr") - protected String vermnr; - @XmlAttribute(name = "VerbandSparteCd") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "Ereigniszpkt", required = true) - protected XMLGregorianCalendar ereigniszpkt; - @XmlAttribute(name = "Meldedat", required = true) - protected XMLGregorianCalendar meldedat; - @XmlAttribute(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlAttribute(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlAttribute(name = "VerschuldenCd") - protected String verschuldenCd; - @XmlAttribute(name = "MalusWirksamKz") - protected Entsch2Type malusWirksamKz; - @XmlAttribute(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlAttribute(name = "ErledDat") - protected XMLGregorianCalendar erledDat; - @XmlAttribute(name = "SachbearbVU") - protected String sachbearbVU; - @XmlAttribute(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELPolizzennummerType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Gets the value of the schadenbeteiligter property. - * - *

- * 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 set method for the schadenbeteiligter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADENBETEILIGTER().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENBETEILIGTERType } - * - * - */ - public List getSCHADENBETEILIGTER() { - if (schadenbeteiligter == null) { - schadenbeteiligter = new ArrayList(); - } - return this.schadenbeteiligter; - } - - /** - * Ruft den Wert der elkfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELKFZKennzeichenType } - * - */ - public ELKFZKennzeichenType getELKFZKennzeichen() { - return elkfzKennzeichen; - } - - /** - * Legt den Wert der elkfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELKFZKennzeichenType } - * - */ - public void setELKFZKennzeichen(ELKFZKennzeichenType value) { - this.elkfzKennzeichen = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - - /** - * Ruft den Wert der malusWirksamKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getMalusWirksamKz() { - return malusWirksamKz; - } - - /** - * Legt den Wert der malusWirksamKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setMalusWirksamKz(Entsch2Type value) { - this.malusWirksamKz = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSachbearbVU(String value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSEL.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSEL.java deleted file mode 100644 index 6ebb96c8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSEL.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SchlWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Schlbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="50"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SchlWert_generell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SCHLUESSEL") -public class SCHLUESSEL { - - @XmlAttribute(name = "SchlWert", required = true) - protected String schlWert; - @XmlAttribute(name = "Schlbez") - protected String schlbez; - @XmlAttribute(name = "SchlWert_generell") - protected String schlWertGenerell; - - /** - * Ruft den Wert der schlWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWert() { - return schlWert; - } - - /** - * Legt den Wert der schlWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWert(String value) { - this.schlWert = value; - } - - /** - * Ruft den Wert der schlbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlbez() { - return schlbez; - } - - /** - * Legt den Wert der schlbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlbez(String value) { - this.schlbez = value; - } - - /** - * Ruft den Wert der schlWertGenerell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWertGenerell() { - return schlWertGenerell; - } - - /** - * Legt den Wert der schlWertGenerell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWertGenerell(String value) { - this.schlWertGenerell = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSELART.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSELART.java deleted file mode 100644 index 40b40159..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SCHLUESSELART.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element ref="{urn:omds20}SCHLUESSEL"/>
- *       </sequence>
- *       <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
- *       <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="SchlArtBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "schluessel" -}) -@XmlRootElement(name = "SCHLUESSELART") -public class SCHLUESSELART { - - @XmlElement(name = "SCHLUESSEL", required = true) - protected List schluessel; - @XmlAttribute(name = "SchlArtCd", required = true) - protected SchlArtCdType schlArtCd; - @XmlAttribute(name = "VUWertErlaubtKz", required = true) - protected Entsch2Type vuWertErlaubtKz; - @XmlAttribute(name = "SchlArtBez") - protected String schlArtBez; - - /** - * Gets the value of the schluessel property. - * - *

- * 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 set method for the schluessel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSEL } - * - * - */ - public List getSCHLUESSEL() { - if (schluessel == null) { - schluessel = new ArrayList(); - } - return this.schluessel; - } - - /** - * Ruft den Wert der schlArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchlArtCdType } - * - */ - public SchlArtCdType getSchlArtCd() { - return schlArtCd; - } - - /** - * Legt den Wert der schlArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchlArtCdType } - * - */ - public void setSchlArtCd(SchlArtCdType value) { - this.schlArtCd = value; - } - - /** - * Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getVUWertErlaubtKz() { - return vuWertErlaubtKz; - } - - /** - * Legt den Wert der vuWertErlaubtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setVUWertErlaubtKz(Entsch2Type value) { - this.vuWertErlaubtKz = value; - } - - /** - * Ruft den Wert der schlArtBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlArtBez() { - return schlArtBez; - } - - /** - * Legt den Wert der schlArtBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlArtBez(String value) { - this.schlArtBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SONSTIGEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SONSTIGEPERSONType.java deleted file mode 100644 index ca01bed2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SONSTIGEPERSONType.java +++ /dev/null @@ -1,206 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SONSTIGE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SONSTIGE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Name" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="120"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kurzname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
- *       <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" />
- *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
- *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SONSTIGE_PERSON_Type") -public class SONSTIGEPERSONType { - - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Kurzname") - protected String kurzname; - @XmlAttribute(name = "SonstPersArtCd", required = true) - protected String sonstPersArtCd; - @XmlAttribute(name = "GesFormCd") - protected GesFormCdType gesFormCd; - @XmlAttribute(name = "PersonID_VU") - protected String personIDVU; - @XmlAttribute(name = "PersonID_Makler") - protected String personIDMakler; - - /** - * 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 kurzname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKurzname() { - return kurzname; - } - - /** - * Legt den Wert der kurzname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKurzname(String value) { - this.kurzname = value; - } - - /** - * Ruft den Wert der sonstPersArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSonstPersArtCd() { - return sonstPersArtCd; - } - - /** - * Legt den Wert der sonstPersArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSonstPersArtCd(String value) { - this.sonstPersArtCd = value; - } - - /** - * Ruft den Wert der gesFormCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GesFormCdType } - * - */ - public GesFormCdType getGesFormCd() { - return gesFormCd; - } - - /** - * Legt den Wert der gesFormCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GesFormCdType } - * - */ - public void setGesFormCd(GesFormCdType value) { - this.gesFormCd = value; - } - - /** - * Ruft den Wert der personIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonIDVU() { - return personIDVU; - } - - /** - * Legt den Wert der personIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonIDVU(String value) { - this.personIDVU = value; - } - - /** - * Ruft den Wert der personIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonIDMakler() { - return personIDMakler; - } - - /** - * Legt den Wert der personIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonIDMakler(String value) { - this.personIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SPARTEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SPARTEType.java deleted file mode 100644 index 5193fc62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SPARTEType.java +++ /dev/null @@ -1,583 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SPARTE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SPARTE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *         <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="Spartentxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
- *       <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="HauptTarifBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="25"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SPARTE_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung", - "risiko" -}) -public class SPARTEType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlElement(name = "RISIKO", required = true) - protected List risiko; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "SpartenID") - protected String spartenID; - @XmlAttribute(name = "VerbandSparteCd", required = true) - protected String verbandSparteCd; - @XmlAttribute(name = "Spartentxt") - protected String spartentxt; - @XmlAttribute(name = "SpartenBeg") - protected XMLGregorianCalendar spartenBeg; - @XmlAttribute(name = "SpartenEnd") - protected XMLGregorianCalendar spartenEnd; - @XmlAttribute(name = "StatusCd") - protected String statusCd; - @XmlAttribute(name = "HauptTarifBez") - protected String hauptTarifBez; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "DirBeteiligtKz") - protected String dirBeteiligtKz; - @XmlAttribute(name = "SondervereinbarungKz") - protected String sondervereinbarungKz; - @XmlAttribute(name = "PraemieNtoSp", required = true) - protected BigDecimal praemieNtoSp; - @XmlAttribute(name = "PraemieBtoSp", required = true) - protected BigDecimal praemieBtoSp; - @XmlAttribute(name = "nmoKuendDat") - protected XMLGregorianCalendar nmoKuendDat; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Gets the value of the risiko property. - * - *

- * 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 set method for the risiko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRISIKO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RISIKOType } - * - * - */ - public List getRISIKO() { - if (risiko == null) { - risiko = new ArrayList(); - } - return this.risiko; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der spartenID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenID() { - return spartenID; - } - - /** - * Legt den Wert der spartenID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenID(String value) { - this.spartenID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartentxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartentxt() { - return spartentxt; - } - - /** - * Legt den Wert der spartentxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartentxt(String value) { - this.spartentxt = value; - } - - /** - * Ruft den Wert der spartenBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenBeg() { - return spartenBeg; - } - - /** - * Legt den Wert der spartenBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenBeg(XMLGregorianCalendar value) { - this.spartenBeg = value; - } - - /** - * Ruft den Wert der spartenEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenEnd() { - return spartenEnd; - } - - /** - * Legt den Wert der spartenEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenEnd(XMLGregorianCalendar value) { - this.spartenEnd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hauptTarifBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHauptTarifBez() { - return hauptTarifBez; - } - - /** - * Legt den Wert der hauptTarifBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHauptTarifBez(String value) { - this.hauptTarifBez = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der dirBeteiligtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirBeteiligtKz() { - return dirBeteiligtKz; - } - - /** - * Legt den Wert der dirBeteiligtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirBeteiligtKz(String value) { - this.dirBeteiligtKz = value; - } - - /** - * Ruft den Wert der sondervereinbarungKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSondervereinbarungKz() { - return sondervereinbarungKz; - } - - /** - * Legt den Wert der sondervereinbarungKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSondervereinbarungKz(String value) { - this.sondervereinbarungKz = value; - } - - /** - * Ruft den Wert der praemieNtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoSp() { - return praemieNtoSp; - } - - /** - * Legt den Wert der praemieNtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoSp(BigDecimal value) { - this.praemieNtoSp = value; - } - - /** - * Ruft den Wert der praemieBtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoSp() { - return praemieBtoSp; - } - - /** - * Legt den Wert der praemieBtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoSp(BigDecimal value) { - this.praemieBtoSp = value; - } - - /** - * Ruft den Wert der nmoKuendDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getNmoKuendDat() { - return nmoKuendDat; - } - - /** - * Legt den Wert der nmoKuendDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setNmoKuendDat(XMLGregorianCalendar value) { - this.nmoKuendDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SbhArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SbhArtCdType.java deleted file mode 100644 index 42f5b5f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SbhArtCdType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SbhArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SbhArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MIS"/>
- *     <enumeration value="MXK"/>
- *     <enumeration value="MXS"/>
- *     <enumeration value="STS"/>
- *     <enumeration value="SSO"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SbhArtCd_Type") -@XmlEnum -public enum SbhArtCdType { - - - /** - * Mindestselbstbehalt je Schadenfall - * - */ - MIS, - - /** - * Maximalselbstbehalt kumuliert - * - */ - MXK, - - /** - * Maximalselbstbehalt je Schadenfall - * - */ - MXS, - - /** - * Standardselbstbehalt je Schadenfall - * - */ - STS, - - /** - * Selbstbehalt sonst - * - */ - SSO; - - public String value() { - return name(); - } - - public static SbhArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SchlArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SchlArtCdType.java deleted file mode 100644 index d1731746..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SchlArtCdType.java +++ /dev/null @@ -1,566 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchlArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchlArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="25"/>
- *     <enumeration value="AendGrundCd"/>
- *     <enumeration value="AntriebsArtCd"/>
- *     <enumeration value="AusstattungCd"/>
- *     <enumeration value="BauartCd"/>
- *     <enumeration value="BBArtCd"/>
- *     <enumeration value="BearbStandCd"/>
- *     <enumeration value="BetragArtCd"/>
- *     <enumeration value="BetRolleCd"/>
- *     <enumeration value="DachungCd"/>
- *     <enumeration value="EFrageCd"/>
- *     <enumeration value="EstArtCd"/>
- *     <enumeration value="FamilienstandCd"/>
- *     <enumeration value="FlaechenAttributCd"/>
- *     <enumeration value="FzgArtCd"/>
- *     <enumeration value="GebaeudeArtCd"/>
- *     <enumeration value="GebaeudeHoeheCd"/>
- *     <enumeration value="GeschlechtCd"/>
- *     <enumeration value="GrundRuecklaufCd"/>
- *     <enumeration value="GrwArtCd"/>
- *     <enumeration value="IdfArtCd"/>
- *     <enumeration value="IndexArtCd"/>
- *     <enumeration value="KomArtCd"/>
- *     <enumeration value="LandesCd"/>
- *     <enumeration value="LegArtCd"/>
- *     <enumeration value="LoeschCd"/>
- *     <enumeration value="NutzungCd"/>
- *     <enumeration value="ObjektdatenCd"/>
- *     <enumeration value="PaketInhCd"/>
- *     <enumeration value="PaketUmfCd"/>
- *     <enumeration value="PersArtCd"/>
- *     <enumeration value="PfrArtCd"/>
- *     <enumeration value="PolArtCd"/>
- *     <enumeration value="PraemFristCd"/>
- *     <enumeration value="PraemKorrArtCd"/>
- *     <enumeration value="ProvArtCd"/>
- *     <enumeration value="RisikoArtCd"/>
- *     <enumeration value="RntRhythmCd"/>
- *     <enumeration value="SbhArtCd"/>
- *     <enumeration value="SchadUrsCd"/>
- *     <enumeration value="SonstPersArtCd"/>
- *     <enumeration value="SpartenCd"/>
- *     <enumeration value="StArtCd"/>
- *     <enumeration value="TxtArtCd"/>
- *     <enumeration value="VSArtCd"/>
- *     <enumeration value="VerbandSparteCd"/>
- *     <enumeration value="VersLwCd"/>
- *     <enumeration value="StatusCd"/>
- *     <enumeration value="VersSacheCd"/>
- *     <enumeration value="VerschuldenCd"/>
- *     <enumeration value="VerwendzweckCd"/>
- *     <enumeration value="VtgProdCd"/>
- *     <enumeration value="VtgRolleCd"/>
- *     <enumeration value="VtgSparteCd"/>
- *     <enumeration value="VtgStatusCd"/>
- *     <enumeration value="WaehrungsCd"/>
- *     <enumeration value="ZRArtCd"/>
- *     <enumeration value="ZahlGrundCd"/>
- *     <enumeration value="ZahlRhythmCd"/>
- *     <enumeration value="ZahlWegCd"/>
- *     <enumeration value="MahnStufeCd"/>
- *     <enumeration value="RueckGrundCd"/>
- *     <enumeration value="SprachCd"/>
- *     <enumeration value="VerbrEinhCd"/>
- *     <enumeration value="GesFormCd"/>
- *     <enumeration value="RahmenvertragsartCd"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchlArtCd_Type") -@XmlEnum -public enum SchlArtCdType { - - - /** - * Änderungsgrund - * - */ - @XmlEnumValue("AendGrundCd") - AEND_GRUND_CD("AendGrundCd"), - - /** - * Antriebsart - * - */ - @XmlEnumValue("AntriebsArtCd") - ANTRIEBS_ART_CD("AntriebsArtCd"), - - /** - * Ausstattung - * - */ - @XmlEnumValue("AusstattungCd") - AUSSTATTUNG_CD("AusstattungCd"), - - /** - * Bauart - * - */ - @XmlEnumValue("BauartCd") - BAUART_CD("BauartCd"), - - /** - * Bezugsberechtigungsart - * - */ - @XmlEnumValue("BBArtCd") - BB_ART_CD("BBArtCd"), - - /** - * Bearbeitungsstand - * - */ - @XmlEnumValue("BearbStandCd") - BEARB_STAND_CD("BearbStandCd"), - - /** - * Betragsart - * - */ - @XmlEnumValue("BetragArtCd") - BETRAG_ART_CD("BetragArtCd"), - - /** - * Beteiligungsrolle - * - */ - @XmlEnumValue("BetRolleCd") - BET_ROLLE_CD("BetRolleCd"), - - /** - * Dachung - * - */ - @XmlEnumValue("DachungCd") - DACHUNG_CD("DachungCd"), - - /** - * Entscheidungsfrage - * - */ - @XmlEnumValue("EFrageCd") - E_FRAGE_CD("EFrageCd"), - - /** - * Einstufungsart - * - */ - @XmlEnumValue("EstArtCd") - EST_ART_CD("EstArtCd"), - - /** - * Familienstand - * - */ - @XmlEnumValue("FamilienstandCd") - FAMILIENSTAND_CD("FamilienstandCd"), - - /** - * Flächenattribut - * - */ - @XmlEnumValue("FlaechenAttributCd") - FLAECHEN_ATTRIBUT_CD("FlaechenAttributCd"), - - /** - * Fahrzeugart - * - */ - @XmlEnumValue("FzgArtCd") - FZG_ART_CD("FzgArtCd"), - - /** - * Art des Gebäudes - * - */ - @XmlEnumValue("GebaeudeArtCd") - GEBAEUDE_ART_CD("GebaeudeArtCd"), - - /** - * Gebäudehöhe - * - */ - @XmlEnumValue("GebaeudeHoeheCd") - GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"), - - /** - * Geschlecht - * - */ - @XmlEnumValue("GeschlechtCd") - GESCHLECHT_CD("GeschlechtCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("GrundRuecklaufCd") - GRUND_RUECKLAUF_CD("GrundRuecklaufCd"), - - /** - * Grenzwertart - * - */ - @XmlEnumValue("GrwArtCd") - GRW_ART_CD("GrwArtCd"), - - /** - * Identifizierungsart - * - */ - @XmlEnumValue("IdfArtCd") - IDF_ART_CD("IdfArtCd"), - - /** - * Indexart - * - */ - @XmlEnumValue("IndexArtCd") - INDEX_ART_CD("IndexArtCd"), - - /** - * KommunikationsArt - * - */ - @XmlEnumValue("KomArtCd") - KOM_ART_CD("KomArtCd"), - - /** - * Ländercode - * - */ - @XmlEnumValue("LandesCd") - LANDES_CD("LandesCd"), - - /** - * Legitimierungsart - * - */ - @XmlEnumValue("LegArtCd") - LEG_ART_CD("LegArtCd"), - - /** - * Löschungsarten - * - */ - @XmlEnumValue("LoeschCd") - LOESCH_CD("LoeschCd"), - - /** - * Nutzung - * - */ - @XmlEnumValue("NutzungCd") - NUTZUNG_CD("NutzungCd"), - - /** - * Objektdatenart - * - */ - @XmlEnumValue("ObjektdatenCd") - OBJEKTDATEN_CD("ObjektdatenCd"), - - /** - * Paketinhalt - * - */ - @XmlEnumValue("PaketInhCd") - PAKET_INH_CD("PaketInhCd"), - - /** - * Paketumfang - * - */ - @XmlEnumValue("PaketUmfCd") - PAKET_UMF_CD("PaketUmfCd"), - - /** - * Personenart - * - */ - @XmlEnumValue("PersArtCd") - PERS_ART_CD("PersArtCd"), - - /** - * Prämienfreiart - * - */ - @XmlEnumValue("PfrArtCd") - PFR_ART_CD("PfrArtCd"), - - /** - * Polizzenart - * - */ - @XmlEnumValue("PolArtCd") - POL_ART_CD("PolArtCd"), - - /** - * Prämienfrist - * - */ - @XmlEnumValue("PraemFristCd") - PRAEM_FRIST_CD("PraemFristCd"), - - /** - * Prämienkorrekturart - * - */ - @XmlEnumValue("PraemKorrArtCd") - PRAEM_KORR_ART_CD("PraemKorrArtCd"), - - /** - * Provisionsart - * - */ - @XmlEnumValue("ProvArtCd") - PROV_ART_CD("ProvArtCd"), - - /** - * Risikoart - * - */ - @XmlEnumValue("RisikoArtCd") - RISIKO_ART_CD("RisikoArtCd"), - - /** - * Rentenzahlungsrhythmus - * - */ - @XmlEnumValue("RntRhythmCd") - RNT_RHYTHM_CD("RntRhythmCd"), - - /** - * Selbstbehaltart - * - */ - @XmlEnumValue("SbhArtCd") - SBH_ART_CD("SbhArtCd"), - - /** - * Schadenursache - * - */ - @XmlEnumValue("SchadUrsCd") - SCHAD_URS_CD("SchadUrsCd"), - - /** - * Art der sonstigen Person - * - */ - @XmlEnumValue("SonstPersArtCd") - SONST_PERS_ART_CD("SonstPersArtCd"), - - /** - * Sparte - * - */ - @XmlEnumValue("SpartenCd") - SPARTEN_CD("SpartenCd"), - - /** - * Steuerart - * - */ - @XmlEnumValue("StArtCd") - ST_ART_CD("StArtCd"), - - /** - * Textart - * - */ - @XmlEnumValue("TxtArtCd") - TXT_ART_CD("TxtArtCd"), - - /** - * Versicherungssummenart - * - */ - @XmlEnumValue("VSArtCd") - VS_ART_CD("VSArtCd"), - - /** - * Verbandssparte - * - */ - @XmlEnumValue("VerbandSparteCd") - VERBAND_SPARTE_CD("VerbandSparteCd"), - - /** - * Versicherte Landwirtschaft - * - */ - @XmlEnumValue("VersLwCd") - VERS_LW_CD("VersLwCd"), - - /** - * Status - * - */ - @XmlEnumValue("StatusCd") - STATUS_CD("StatusCd"), - - /** - * Versicherte Sache - * - */ - @XmlEnumValue("VersSacheCd") - VERS_SACHE_CD("VersSacheCd"), - - /** - * Verschulden - * - */ - @XmlEnumValue("VerschuldenCd") - VERSCHULDEN_CD("VerschuldenCd"), - - /** - * Verwendungszweck - * - */ - @XmlEnumValue("VerwendzweckCd") - VERWENDZWECK_CD("VerwendzweckCd"), - - /** - * Vertragsprodukt - * - */ - @XmlEnumValue("VtgProdCd") - VTG_PROD_CD("VtgProdCd"), - - /** - * Vertragsrolle - * - */ - @XmlEnumValue("VtgRolleCd") - VTG_ROLLE_CD("VtgRolleCd"), - - /** - * Vertragssparte - * - */ - @XmlEnumValue("VtgSparteCd") - VTG_SPARTE_CD("VtgSparteCd"), - - /** - * Vertragsstatus - * - */ - @XmlEnumValue("VtgStatusCd") - VTG_STATUS_CD("VtgStatusCd"), - - /** - * Währung - * - */ - @XmlEnumValue("WaehrungsCd") - WAEHRUNGS_CD("WaehrungsCd"), - - /** - * Art des Zeitraumes - * - */ - @XmlEnumValue("ZRArtCd") - ZR_ART_CD("ZRArtCd"), - - /** - * Zahlungsgrund - * - */ - @XmlEnumValue("ZahlGrundCd") - ZAHL_GRUND_CD("ZahlGrundCd"), - - /** - * Zahlungsrhythmus - * - */ - @XmlEnumValue("ZahlRhythmCd") - ZAHL_RHYTHM_CD("ZahlRhythmCd"), - - /** - * Zahlungsweg - * - */ - @XmlEnumValue("ZahlWegCd") - ZAHL_WEG_CD("ZahlWegCd"), - - /** - * MahnStufe - * - */ - @XmlEnumValue("MahnStufeCd") - MAHN_STUFE_CD("MahnStufeCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("RueckGrundCd") - RUECK_GRUND_CD("RueckGrundCd"), - - /** - * Sprachenschlüssel - * - */ - @XmlEnumValue("SprachCd") - SPRACH_CD("SprachCd"), - - /** - * Einheit für Verbrauch - * - */ - @XmlEnumValue("VerbrEinhCd") - VERBR_EINH_CD("VerbrEinhCd"), - - /** - * Gesellschaftsform - * - */ - @XmlEnumValue("GesFormCd") - GES_FORM_CD("GesFormCd"), - - /** - * Rahmenvertragsart - * - */ - @XmlEnumValue("RahmenvertragsartCd") - RAHMENVERTRAGSART_CD("RahmenvertragsartCd"); - private final String value; - - SchlArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchlArtCdType fromValue(String v) { - for (SchlArtCdType c: SchlArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SprachCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SprachCdType.java deleted file mode 100644 index b169dee2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/SprachCdType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SprachCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SprachCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="2"/>
- *     <maxLength value="2"/>
- *     <enumeration value="CS"/>
- *     <enumeration value="DE"/>
- *     <enumeration value="EN"/>
- *     <enumeration value="HU"/>
- *     <enumeration value="IT"/>
- *     <enumeration value="SK"/>
- *     <enumeration value="SL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SprachCd_Type") -@XmlEnum -public enum SprachCdType { - - - /** - * Tschechisch - * - */ - CS, - - /** - * Deutsch - * - */ - DE, - - /** - * Englisch - * - */ - EN, - - /** - * Ungarisch - * - */ - HU, - - /** - * Italienisch - * - */ - IT, - - /** - * Slowakisch - * - */ - SK, - - /** - * Slowenisch - * - */ - SL; - - public String value() { - return name(); - } - - public static SprachCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/TxtArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/TxtArtCdType.java deleted file mode 100644 index 46045201..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/TxtArtCdType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für TxtArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="TxtArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ANR"/>
- *     <enumeration value="BER"/>
- *     <enumeration value="FRT"/>
- *     <enumeration value="TIT"/>
- *     <enumeration value="TIN"/>
- *     <enumeration value="VKL"/>
- *     <enumeration value="SRT"/>
- *     <enumeration value="EXP"/>
- *     <enumeration value="ONR"/>
- *     <enumeration value="FZU"/>
- *     <enumeration value="RIM"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TxtArtCd_Type") -@XmlEnum -public enum TxtArtCdType { - - - /** - * Anrede - * - */ - ANR, - - /** - * Beruf - * - */ - BER, - - /** - * Freitext - * - */ - FRT, - - /** - * Titel - * - */ - TIT, - - /** - * Titel nachgestellt - * - */ - TIN, - - /** - * Vertragsspez. Klausel - * - */ - VKL, - - /** - * Beschreibung Schadenort - * - */ - SRT, - - /** - * Schaden-Expertise (Besichtigungsdaten) - * - */ - EXP, - - /** - * Oeamtc-Clubkarten-Nr - * - */ - ONR, - - /** - * Ordnungsbegriff für Zuordnung Fremdsystem - * - */ - FZU, - - /** - * Risikomerkmal - * - */ - RIM; - - public String value() { - return name(); - } - - public static TxtArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZ.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZ.java deleted file mode 100644 index e30882a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZ.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERS_KFZ_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERS_KFZ") -public class VERSKFZ - extends VERSKFZType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZType.java deleted file mode 100644 index e014dcb7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSKFZType.java +++ /dev/null @@ -1,891 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERS_KFZ_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_KFZ_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung_ElektroMot" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
- *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
- *       <attribute name="VerbrEinhCd" type="{urn:omds20}VerbrEinhCd_Type" />
- *       <attribute name="Fahrgestnr" use="required" type="{urn:omds20}Fahrgestnr_Type" />
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz" type="{urn:omds20}Pol_Kennz_Type" />
- *       <attribute name="Eigengew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="HzulGesgew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="HGeschw">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_KFZ_Type") -@XmlSeeAlso({ - VERSKFZ.class -}) -public class VERSKFZType { - - @XmlAttribute(name = "FzgArtCd", required = true) - protected String fzgArtCd; - @XmlAttribute(name = "Marke", required = true) - protected String marke; - @XmlAttribute(name = "Handelsbez") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Leistung_ElektroMot") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistungElektroMot; - @XmlAttribute(name = "Plaetze") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", required = true) - protected String antriebsArtCd; - @XmlAttribute(name = "Katkz", required = true) - protected String katkz; - @XmlAttribute(name = "ABSKz") - protected Entsch2Type absKz; - @XmlAttribute(name = "CO2_Ausstoss") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "CO2_WLTP_WMTC") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2WLTPWMTC; - @XmlAttribute(name = "Kraftstoffverbr_NEFZ") - protected BigDecimal kraftstoffverbrNEFZ; - @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC") - protected BigDecimal kraftstoffverbrWLTPWMTC; - @XmlAttribute(name = "VerbrEinhCd") - protected String verbrEinhCd; - @XmlAttribute(name = "Fahrgestnr", required = true) - protected String fahrgestnr; - @XmlAttribute(name = "Motornr") - protected String motornr; - @XmlAttribute(name = "NatCode") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz") - protected String polKennz; - @XmlAttribute(name = "Eigengew") - protected BigDecimal eigengew; - @XmlAttribute(name = "HzulGesgew") - protected BigDecimal hzulGesgew; - @XmlAttribute(name = "HGeschw") - protected BigDecimal hGeschw; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der leistungElektroMot-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistungElektroMot() { - return leistungElektroMot; - } - - /** - * Legt den Wert der leistungElektroMot-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistungElektroMot(Integer value) { - this.leistungElektroMot = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der katkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKatkz() { - return katkz; - } - - /** - * Legt den Wert der katkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKatkz(String value) { - this.katkz = value; - } - - /** - * Ruft den Wert der absKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getABSKz() { - return absKz; - } - - /** - * Legt den Wert der absKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setABSKz(Entsch2Type value) { - this.absKz = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2WLTPWMTC() { - return co2WLTPWMTC; - } - - /** - * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2WLTPWMTC(Integer value) { - this.co2WLTPWMTC = value; - } - - /** - * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKraftstoffverbrNEFZ() { - return kraftstoffverbrNEFZ; - } - - /** - * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKraftstoffverbrNEFZ(BigDecimal value) { - this.kraftstoffverbrNEFZ = value; - } - - /** - * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKraftstoffverbrWLTPWMTC() { - return kraftstoffverbrWLTPWMTC; - } - - /** - * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { - this.kraftstoffverbrWLTPWMTC = value; - } - - /** - * Ruft den Wert der verbrEinhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbrEinhCd() { - return verbrEinhCd; - } - - /** - * Legt den Wert der verbrEinhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbrEinhCd(String value) { - this.verbrEinhCd = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der eigengew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getEigengew() { - return eigengew; - } - - /** - * Legt den Wert der eigengew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setEigengew(BigDecimal value) { - this.eigengew = value; - } - - /** - * Ruft den Wert der hzulGesgew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHzulGesgew() { - return hzulGesgew; - } - - /** - * Legt den Wert der hzulGesgew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHzulGesgew(BigDecimal value) { - this.hzulGesgew = value; - } - - /** - * Ruft den Wert der hGeschw-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHGeschw() { - return hGeschw; - } - - /** - * Legt den Wert der hGeschw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHGeschw(BigDecimal value) { - this.hGeschw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSOBJEKTType.java deleted file mode 100644 index a0fb9520..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSOBJEKTType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element ref="{urn:omds20}VERS_PERSON"/>
- *           <element ref="{urn:omds20}VERS_KFZ"/>
- *           <element ref="{urn:omds20}VERS_SACHE"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="VersObjTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_OBJEKT_Type", propOrder = { - "versperson", - "verskfz", - "verssache", - "elAnzahlOrELBetragOrELEinstufung" -}) -public class VERSOBJEKTType { - - @XmlElement(name = "VERS_PERSON") - protected VERSPERSONType versperson; - @XmlElement(name = "VERS_KFZ") - protected VERSKFZ verskfz; - @XmlElement(name = "VERS_SACHE") - protected VERSSACHEType verssache; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int objLfnr; - @XmlAttribute(name = "VersObjTxt") - protected String versObjTxt; - - /** - * Ruft den Wert der versperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSPERSONType } - * - */ - public VERSPERSONType getVERSPERSON() { - return versperson; - } - - /** - * Legt den Wert der versperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSPERSONType } - * - */ - public void setVERSPERSON(VERSPERSONType value) { - this.versperson = value; - } - - /** - * Ruft den Wert der verskfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSKFZ } - * - */ - public VERSKFZ getVERSKFZ() { - return verskfz; - } - - /** - * Legt den Wert der verskfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSKFZ } - * - */ - public void setVERSKFZ(VERSKFZ value) { - this.verskfz = value; - } - - /** - * Ruft den Wert der verssache-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSSACHEType } - * - */ - public VERSSACHEType getVERSSACHE() { - return verssache; - } - - /** - * Legt den Wert der verssache-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSSACHEType } - * - */ - public void setVERSSACHE(VERSSACHEType value) { - this.verssache = value; - } - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGrenzwertType } - * {@link ELIdentifizierungType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - public void setObjLfnr(int value) { - this.objLfnr = value; - } - - /** - * Ruft den Wert der versObjTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersObjTxt() { - return versObjTxt; - } - - /** - * Legt den Wert der versObjTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersObjTxt(String value) { - this.versObjTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSPERSONType.java deleted file mode 100644 index 2adc170c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSPERSONType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_PERSON_Type") -public class VERSPERSONType { - - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSSACHEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSSACHEType.java deleted file mode 100644 index 7d2fe2fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSSACHEType.java +++ /dev/null @@ -1,742 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_SACHE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_SACHE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}EL-Objektdaten" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Flaeche" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
- *       <attribute name="VersSacheBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
- *       <attribute name="GebaeudeBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
- *       <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
- *       <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
- *       <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
- *       <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="VersLwCd" type="{urn:omds20}VersLwCd_Type" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="Hersteller">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Modell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_SACHE_Type", propOrder = { - "elObjektdaten", - "elFlaeche" -}) -public class VERSSACHEType { - - @XmlElement(name = "EL-Objektdaten") - protected List elObjektdaten; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlAttribute(name = "VersSacheCd", required = true) - protected String versSacheCd; - @XmlAttribute(name = "VersSacheBez") - protected String versSacheBez; - @XmlAttribute(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlAttribute(name = "GebaeudeBez") - protected String gebaeudeBez; - @XmlAttribute(name = "BauartCd") - protected String bauartCd; - @XmlAttribute(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlAttribute(name = "AusstattungCd") - protected String ausstattungCd; - @XmlAttribute(name = "DachungCd") - protected String dachungCd; - @XmlAttribute(name = "NutzungCd") - protected String nutzungCd; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "VersLwCd") - protected String versLwCd; - @XmlAttribute(name = "StatusCd") - protected String statusCd; - @XmlAttribute(name = "Hersteller") - protected String hersteller; - @XmlAttribute(name = "Modell") - protected String modell; - @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; - - /** - * Gets the value of the elObjektdaten property. - * - *

- * 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 set method for the elObjektdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELObjektdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELObjektdatenType } - * - * - */ - public List getELObjektdaten() { - if (elObjektdaten == null) { - elObjektdaten = new ArrayList(); - } - return this.elObjektdaten; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Ruft den Wert der versSacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersSacheCd() { - return versSacheCd; - } - - /** - * Legt den Wert der versSacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersSacheCd(String value) { - this.versSacheCd = value; - } - - /** - * Ruft den Wert der versSacheBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersSacheBez() { - return versSacheBez; - } - - /** - * Legt den Wert der versSacheBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersSacheBez(String value) { - this.versSacheBez = value; - } - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der versLwCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersLwCd() { - return versLwCd; - } - - /** - * Legt den Wert der versLwCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersLwCd(String value) { - this.versLwCd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hersteller-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHersteller() { - return hersteller; - } - - /** - * Legt den Wert der hersteller-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHersteller(String value) { - this.hersteller = value; - } - - /** - * Ruft den Wert der modell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModell() { - return modell; - } - - /** - * Legt den Wert der modell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModell(String value) { - this.modell = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSUNTERNEHMEN.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSUNTERNEHMEN.java deleted file mode 100644 index ea347e97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERSUNTERNEHMEN.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <element ref="{urn:omds20}EL-Kommunikation"/>
- *       </sequence>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="VUBezeichnung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "elKommunikation" -}) -@XmlRootElement(name = "VERS_UNTERNEHMEN") -public class VERSUNTERNEHMEN { - - @XmlElement(name = "EL-Kommunikation") - protected List elKommunikation; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "VUBezeichnung") - protected String vuBezeichnung; - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * 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 vuBezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUBezeichnung() { - return vuBezeichnung; - } - - /** - * Legt den Wert der vuBezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUBezeichnung(String value) { - this.vuBezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAG.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAG.java deleted file mode 100644 index df01847a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAG.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERTRAG_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERTRAG") -public class VERTRAG - extends VERTRAGType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSFONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSFONDSType.java deleted file mode 100644 index 81fd8297..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSFONDSType.java +++ /dev/null @@ -1,223 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSFONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSFONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSFONDS_Type", propOrder = { - "portfolio", - "fonds", - "elBetrag", - "elText" -}) -public class VERTRAGSFONDSType { - - @XmlElement(name = "PORTFOLIO") - protected List portfolio; - @XmlElement(name = "FONDS") - protected List fonds; - @XmlElement(name = "EL-Betrag") - protected List elBetrag; - @XmlElement(name = "EL-Text") - protected List elText; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - - /** - * Gets the value of the portfolio property. - * - *

- * 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 set method for the portfolio property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPORTFOLIO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PORTFOLIO } - * - * - */ - public List getPORTFOLIO() { - if (portfolio == null) { - portfolio = new ArrayList(); - } - return this.portfolio; - } - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - - /** - * Gets the value of the elBetrag property. - * - *

- * 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 set method for the elBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - public List getELBetrag() { - if (elBetrag == null) { - elBetrag = new ArrayList(); - } - return this.elBetrag; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSPERSONType.java deleted file mode 100644 index da81e19d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGSPERSONType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSPERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSPERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSPERSON_Type") -public class VERTRAGSPERSONType { - - @XmlAttribute(name = "VtgRolleCd", required = true) - protected VtgRolleCdType vtgRolleCd; - @XmlAttribute(name = "Lfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der vtgRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVtgRolleCd() { - return vtgRolleCd; - } - - /** - * Legt den Wert der vtgRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVtgRolleCd(VtgRolleCdType value) { - this.vtgRolleCd = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGType.java deleted file mode 100644 index e8f920dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VERTRAGType.java +++ /dev/null @@ -1,949 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERTRAG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Antrag"/>
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Praemienfreistellung"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
- *           <element ref="{urn:omds20}EL-Rahmenvertrag"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
- *         <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
- *       <attribute name="VtgProdukt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *       <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
- *       <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
- *       <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="VtgEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StornoGiltAb" type="{urn:omds20}Datum" />
- *       <attribute name="Hptfaelligkeit">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
- *             <minInclusive value="--01-01"/>
- *             <maxInclusive value="--12-31"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
- *       <attribute name="AendGrundbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieNtoVtg" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}decimal">
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ktonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAG_Type", propOrder = { - "elAntragOrELAnzahlOrELBetrag", - "vertragsperson", - "versobjekt", - "sparte" -}) -@XmlSeeAlso({ - VERTRAG.class -}) -public class VERTRAGType { - - @XmlElements({ - @XmlElement(name = "EL-Antrag", type = ELAntragType.class), - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class), - @XmlElement(name = "EL-Rahmenvertrag", type = ELRahmenvertragType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAntragOrELAnzahlOrELBetrag; - @XmlElement(name = "VERTRAGSPERSON", required = true) - protected List vertragsperson; - @XmlElement(name = "VERS_OBJEKT") - protected List versobjekt; - @XmlElement(name = "SPARTE", required = true) - protected List sparte; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "VtgProdCd", required = true) - protected String vtgProdCd; - @XmlAttribute(name = "VtgProdukt") - protected String vtgProdukt; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlAttribute(name = "ZahlRhythmCd", required = true) - protected String zahlRhythmCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "VtgStatusCd", required = true) - protected String vtgStatusCd; - @XmlAttribute(name = "VtgStatusBeg") - protected XMLGregorianCalendar vtgStatusBeg; - @XmlAttribute(name = "VtgBeg", required = true) - protected XMLGregorianCalendar vtgBeg; - @XmlAttribute(name = "VtgEnd") - protected XMLGregorianCalendar vtgEnd; - @XmlAttribute(name = "StornoGiltAb") - protected XMLGregorianCalendar stornoGiltAb; - @XmlAttribute(name = "Hptfaelligkeit") - protected XMLGregorianCalendar hptfaelligkeit; - @XmlAttribute(name = "DurchfDat", required = true) - protected XMLGregorianCalendar durchfDat; - @XmlAttribute(name = "GueltigBeg", required = true) - protected XMLGregorianCalendar gueltigBeg; - @XmlAttribute(name = "AendGrundCd", required = true) - protected String aendGrundCd; - @XmlAttribute(name = "AendGrundbez") - protected String aendGrundbez; - @XmlAttribute(name = "PraemieNtoVtg", required = true) - protected BigDecimal praemieNtoVtg; - @XmlAttribute(name = "PraemieBtoVtg", required = true) - protected BigDecimal praemieBtoVtg; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Ktonr") - protected String ktonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Gets the value of the elAntragOrELAnzahlOrELBetrag property. - * - *

- * 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 set method for the elAntragOrELAnzahlOrELBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAntragOrELAnzahlOrELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAntragType } - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELPolizzennummerType } - * {@link ELPraemienfreistellungType } - * {@link ELPraemienkorrekturType } - * {@link ELRahmenvereinbarungType } - * {@link ELRahmenvertragType } - * {@link ELSelbstbehalt } - * {@link ELTextType } - * - * - */ - public List getELAntragOrELAnzahlOrELBetrag() { - if (elAntragOrELAnzahlOrELBetrag == null) { - elAntragOrELAnzahlOrELBetrag = new ArrayList(); - } - return this.elAntragOrELAnzahlOrELBetrag; - } - - /** - * Gets the value of the vertragsperson property. - * - *

- * 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 set method for the vertragsperson property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSPERSONType } - * - * - */ - public List getVERTRAGSPERSON() { - if (vertragsperson == null) { - vertragsperson = new ArrayList(); - } - return this.vertragsperson; - } - - /** - * Gets the value of the versobjekt property. - * - *

- * 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 set method for the versobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSOBJEKTType } - * - * - */ - public List getVERSOBJEKT() { - if (versobjekt == null) { - versobjekt = new ArrayList(); - } - return this.versobjekt; - } - - /** - * Gets the value of the sparte property. - * - *

- * 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 set method for the sparte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSPARTE().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SPARTEType } - * - * - */ - public List getSPARTE() { - if (sparte == null) { - sparte = new ArrayList(); - } - return this.sparte; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Ruft den Wert der vtgProdukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdukt() { - return vtgProdukt; - } - - /** - * Legt den Wert der vtgProdukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdukt(String value) { - this.vtgProdukt = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Ruft den Wert der zahlRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlRhythmCd() { - return zahlRhythmCd; - } - - /** - * Legt den Wert der zahlRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlRhythmCd(String value) { - this.zahlRhythmCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der vtgStatusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgStatusCd() { - return vtgStatusCd; - } - - /** - * Legt den Wert der vtgStatusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgStatusCd(String value) { - this.vtgStatusCd = value; - } - - /** - * Ruft den Wert der vtgStatusBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgStatusBeg() { - return vtgStatusBeg; - } - - /** - * Legt den Wert der vtgStatusBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgStatusBeg(XMLGregorianCalendar value) { - this.vtgStatusBeg = value; - } - - /** - * 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 vtgEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnd() { - return vtgEnd; - } - - /** - * Legt den Wert der vtgEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnd(XMLGregorianCalendar value) { - this.vtgEnd = value; - } - - /** - * Ruft den Wert der stornoGiltAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStornoGiltAb() { - return stornoGiltAb; - } - - /** - * Legt den Wert der stornoGiltAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStornoGiltAb(XMLGregorianCalendar value) { - this.stornoGiltAb = value; - } - - /** - * Ruft den Wert der hptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHptfaelligkeit() { - return hptfaelligkeit; - } - - /** - * Legt den Wert der hptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHptfaelligkeit(XMLGregorianCalendar value) { - this.hptfaelligkeit = value; - } - - /** - * Ruft den Wert der durchfDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDurchfDat() { - return durchfDat; - } - - /** - * Legt den Wert der durchfDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDurchfDat(XMLGregorianCalendar value) { - this.durchfDat = value; - } - - /** - * Ruft den Wert der gueltigBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBeg() { - return gueltigBeg; - } - - /** - * Legt den Wert der gueltigBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBeg(XMLGregorianCalendar value) { - this.gueltigBeg = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der praemieNtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoVtg() { - return praemieNtoVtg; - } - - /** - * Legt den Wert der praemieNtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoVtg(BigDecimal value) { - this.praemieNtoVtg = value; - } - - /** - * Ruft den Wert der praemieBtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoVtg() { - return praemieBtoVtg; - } - - /** - * Legt den Wert der praemieBtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoVtg(BigDecimal value) { - this.praemieBtoVtg = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der ktonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKtonr() { - return ktonr; - } - - /** - * Legt den Wert der ktonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKtonr(String value) { - this.ktonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VSArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VSArtCdType.java deleted file mode 100644 index f1f22dc9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VSArtCdType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VSArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VSArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ALS"/>
- *     <enumeration value="BDS"/>
- *     <enumeration value="BVS"/>
- *     <enumeration value="ELS"/>
- *     <enumeration value="EVS"/>
- *     <enumeration value="HHS"/>
- *     <enumeration value="HLS"/>
- *     <enumeration value="OVS"/>
- *     <enumeration value="PFR"/>
- *     <enumeration value="PPF"/>
- *     <enumeration value="PVS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VSArtCd_Type") -@XmlEnum -public enum VSArtCdType { - - - /** - * Ablebensumme - * - */ - ALS, - - /** - * Bausparen Darlehenssumme - * - */ - BDS, - - /** - * Bausparen Vertragssumme - * - */ - BVS, - - /** - * Erlebensumme - * - */ - ELS, - - /** - * EinzelVS - * - */ - EVS, - - /** - * Höchsthaftungssumme - * - */ - HHS, - - /** - * Höchstleistungssumme - * - */ - HLS, - - /** - * ohne Versicherungssumme - * - */ - OVS, - - /** - * prämienfrei - * - */ - PFR, - - /** - * prämienpflichtig - * - */ - PPF, - - /** - * PauschalVS - * - */ - PVS; - - public String value() { - return name(); - } - - public static VSArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VtgRolleCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VtgRolleCdType.java deleted file mode 100644 index a432f86d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/VtgRolleCdType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VtgRolleCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VtgRolleCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AP"/>
- *     <enumeration value="AZ"/>
- *     <enumeration value="BG"/>
- *     <enumeration value="BM"/>
- *     <enumeration value="BO"/>
- *     <enumeration value="IA"/>
- *     <enumeration value="FI"/>
- *     <enumeration value="GV"/>
- *     <enumeration value="LE"/>
- *     <enumeration value="KA"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="ZB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VtgRolleCd_Type") -@XmlEnum -public enum VtgRolleCdType { - - - /** - * Ansprechperson - * - */ - AP, - - /** - * abweichender Zulassungsbesitzer - * - */ - AZ, - - /** - * Bausparer gesetzlicher Vertreter - * - */ - BG, - - /** - * Bausparer mit Prämie - * - */ - BM, - - /** - * Bausparer ohne Prämie - * - */ - BO, - - /** - * Inkassoadresse - * - */ - IA, - - /** - * Firmeninhaber - * - */ - FI, - - /** - * Gesetzlicher Vertreter - * - */ - GV, - - /** - * Lenker - * - */ - LE, - - /** - * Korrespondenz/Zustelladresse - * - */ - KA, - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Zustellbevollmächtigter - * - */ - ZB; - - public String value() { - return name(); - } - - public static VtgRolleCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/WaehrungsCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/WaehrungsCdType.java deleted file mode 100644 index be68a221..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/WaehrungsCdType.java +++ /dev/null @@ -1,278 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für WaehrungsCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="WaehrungsCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AUD"/>
- *     <enumeration value="BGL"/>
- *     <enumeration value="CAD"/>
- *     <enumeration value="CHF"/>
- *     <enumeration value="CYP"/>
- *     <enumeration value="CZR"/>
- *     <enumeration value="DKK"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="GBP"/>
- *     <enumeration value="GIP"/>
- *     <enumeration value="HKD"/>
- *     <enumeration value="HRK"/>
- *     <enumeration value="HUF"/>
- *     <enumeration value="ILS"/>
- *     <enumeration value="INR"/>
- *     <enumeration value="ISK"/>
- *     <enumeration value="JOD"/>
- *     <enumeration value="JPY"/>
- *     <enumeration value="MLT"/>
- *     <enumeration value="MXP"/>
- *     <enumeration value="NOK"/>
- *     <enumeration value="NZD"/>
- *     <enumeration value="PLZ"/>
- *     <enumeration value="ROL"/>
- *     <enumeration value="SEK"/>
- *     <enumeration value="SGD"/>
- *     <enumeration value="SIT"/>
- *     <enumeration value="SKK"/>
- *     <enumeration value="SUR"/>
- *     <enumeration value="TND"/>
- *     <enumeration value="TRL"/>
- *     <enumeration value="TWD"/>
- *     <enumeration value="USD"/>
- *     <enumeration value="YUN"/>
- *     <enumeration value="ZAR"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "WaehrungsCd_Type") -@XmlEnum -public enum WaehrungsCdType { - - - /** - * Dollar Australien - * - */ - AUD, - - /** - * Lewa Bulgarien - * - */ - BGL, - - /** - * Dollar Kanadien - * - */ - CAD, - - /** - * Franken Schweiz - * - */ - CHF, - - /** - * Pfund Zypern - * - */ - CYP, - - /** - * Krone Tschechien - * - */ - CZR, - - /** - * Krone Dänemark - * - */ - DKK, - - /** - * EURO - * - */ - EUR, - - /** - * Pfund Großbritannien - * - */ - GBP, - - /** - * Pfund Gibraltar - * - */ - GIP, - - /** - * Dollar Hongkong - * - */ - HKD, - - /** - * Kuna Kroatia - * - */ - HRK, - - /** - * Forint Ungarn - * - */ - HUF, - - /** - * Shekel Israel - * - */ - ILS, - - /** - * Rupie Indien - * - */ - INR, - - /** - * Krone Island - * - */ - ISK, - - /** - * Dinar Jordanien - * - */ - JOD, - - /** - * Yen Japan - * - */ - JPY, - - /** - * Pfund Malta - * - */ - MLT, - - /** - * Peso Mexiko - * - */ - MXP, - - /** - * Krone Norwegen - * - */ - NOK, - - /** - * Dollar Neuseeland - * - */ - NZD, - - /** - * Zloty Polen - * - */ - PLZ, - - /** - * Lau Rumänien - * - */ - ROL, - - /** - * Krone Schweden - * - */ - SEK, - - /** - * Dollar Singapur - * - */ - SGD, - - /** - * Tolar Slowenien - * - */ - SIT, - - /** - * Krone Slowakei - * - */ - SKK, - - /** - * Rubel Rußland - * - */ - SUR, - - /** - * Dinar Tunesien - * - */ - TND, - - /** - * Lira Türkei - * - */ - TRL, - - /** - * Dollar Taiwan - * - */ - TWD, - - /** - * US Dollar $ - * - */ - USD, - - /** - * Dinar Jugoslawien-Rest - * - */ - YUN, - - /** - * Rand Südafrika - * - */ - ZAR; - - public String value() { - return name(); - } - - public static WaehrungsCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ZAHLUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ZAHLUNGType.java deleted file mode 100644 index 3a05e9ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/ZAHLUNGType.java +++ /dev/null @@ -1,323 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_14; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für ZAHLUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZAHLUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kontonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZAHLUNG_Type") -public class ZAHLUNGType { - - @XmlAttribute(name = "ZahlungsLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int zahlungsLfnr; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ZahlBetrag", required = true) - protected BigDecimal zahlBetrag; - @XmlAttribute(name = "ZahlDat", required = true) - protected XMLGregorianCalendar zahlDat; - @XmlAttribute(name = "ZahlGrundCd", required = true) - protected String zahlGrundCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Kontonr") - protected String kontonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Ruft den Wert der zahlungsLfnr-Eigenschaft ab. - * - */ - public int getZahlungsLfnr() { - return zahlungsLfnr; - } - - /** - * Legt den Wert der zahlungsLfnr-Eigenschaft fest. - * - */ - public void setZahlungsLfnr(int value) { - this.zahlungsLfnr = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der zahlBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZahlBetrag() { - return zahlBetrag; - } - - /** - * Legt den Wert der zahlBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZahlBetrag(BigDecimal value) { - this.zahlBetrag = value; - } - - /** - * Ruft den Wert der zahlDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZahlDat() { - return zahlDat; - } - - /** - * Legt den Wert der zahlDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZahlDat(XMLGregorianCalendar value) { - this.zahlDat = value; - } - - /** - * Ruft den Wert der zahlGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlGrundCd() { - return zahlGrundCd; - } - - /** - * Legt den Wert der zahlGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlGrundCd(String value) { - this.zahlGrundCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der kontonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonr() { - return kontonr; - } - - /** - * Legt den Wert der kontonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonr(String value) { - this.kontonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/package-info.java deleted file mode 100644 index aac1bd5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_14/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds2Types.v2_14; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ADRESSEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ADRESSEType.java deleted file mode 100644 index 84680714..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ADRESSEType.java +++ /dev/null @@ -1,302 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -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_10_0.on2antrag.sachPrivat.RisikoAdresseType; - - -/** - *

Java-Klasse für ADRESSE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ADRESSE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ADRESSE_Type") -@XmlSeeAlso({ - RisikoAdresseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ADRESSEType { - - @XmlAttribute(name = "Pac") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long pac; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlAttribute(name = "Ort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ort; - @XmlAttribute(name = "Strasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String strasse; - @XmlAttribute(name = "Hausnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hausnr; - @XmlAttribute(name = "Zusatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zusatz; - @XmlAttribute(name = "AdressID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDVU; - @XmlAttribute(name = "AdressID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDMakler; - - /** - * Ruft den Wert der pac-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getPac() { - return pac; - } - - /** - * Legt den Wert der pac-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPac(Long value) { - this.pac = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der ort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrt() { - return ort; - } - - /** - * Legt den Wert der ort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrt(String value) { - this.ort = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der hausnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHausnr() { - return hausnr; - } - - /** - * Legt den Wert der hausnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHausnr(String value) { - this.hausnr = value; - } - - /** - * Ruft den Wert der zusatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZusatz() { - return zusatz; - } - - /** - * Legt den Wert der zusatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusatz(String value) { - this.zusatz = value; - } - - /** - * Ruft den Wert der adressIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDVU() { - return adressIDVU; - } - - /** - * Legt den Wert der adressIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDVU(String value) { - this.adressIDVU = value; - } - - /** - * Ruft den Wert der adressIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDMakler() { - return adressIDMakler; - } - - /** - * Legt den Wert der adressIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDMakler(String value) { - this.adressIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/BBArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/BBArtCdType.java deleted file mode 100644 index af03793b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/BBArtCdType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BBArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="BBArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ABL"/>
- *     <enumeration value="ERL"/>
- *     <enumeration value="SLF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BBArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum BBArtCdType { - - - /** - * Ablebensfall - * - */ - ABL, - - /** - * Erlebensfall - * - */ - ERL, - - /** - * sonstiger Leistungsfall - * - */ - SLF; - - public String value() { - return name(); - } - - public static BBArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAntragType.java deleted file mode 100644 index e3487dd7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAntragType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Antrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Antrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Antrag_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELAntragType { - - @XmlAttribute(name = "Nummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nummer; - @XmlAttribute(name = "Datum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAnzahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAnzahlType.java deleted file mode 100644 index 7c68dc55..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELAnzahlType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Anzahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Anzahl_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Anzahl_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELAnzahlType { - - @XmlAttribute(name = "Bezeichnung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlAttribute(name = "Wert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBetragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBetragType.java deleted file mode 100644 index d1a99eb6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBetragType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Betrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Betrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetragArtCd" type="{urn:omds20}BetragArtCd_Type" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Betrag_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELBetragType { - - @XmlAttribute(name = "BetragArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String betragArtCd; - @XmlAttribute(name = "Datum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Bezeichnung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlAttribute(name = "WaehrungsCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Wert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - - /** - * Ruft den Wert der betragArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBetragArtCd() { - return betragArtCd; - } - - /** - * Legt den Wert der betragArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetragArtCd(String value) { - this.betragArtCd = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBezugsberechtigungType.java deleted file mode 100644 index 4b9c4d4b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELBezugsberechtigungType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Bezugsberechtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
- *       <attribute name="BBTxt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Bezugsberechtigung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELBezugsberechtigungType { - - @XmlAttribute(name = "BBArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BBArtCdType bbArtCd; - @XmlAttribute(name = "BBTxt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bbTxt; - - /** - * Ruft den Wert der bbArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link BBArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BBArtCdType getBBArtCd() { - return bbArtCd; - } - - /** - * Legt den Wert der bbArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BBArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBBArtCd(BBArtCdType value) { - this.bbArtCd = value; - } - - /** - * Ruft den Wert der bbTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBBTxt() { - return bbTxt; - } - - /** - * Legt den Wert der bbTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBBTxt(String value) { - this.bbTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEinstufungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEinstufungType.java deleted file mode 100644 index 14cf9870..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEinstufungType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Einstufung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Einstufung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
- *       <attribute name="EstWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="5"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Einstufung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELEinstufungType { - - @XmlAttribute(name = "EstArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected EstArtCdType estArtCd; - @XmlAttribute(name = "EstWert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String estWert; - - /** - * Ruft den Wert der estArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link EstArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public EstArtCdType getEstArtCd() { - return estArtCd; - } - - /** - * Legt den Wert der estArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link EstArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEstArtCd(EstArtCdType value) { - this.estArtCd = value; - } - - /** - * Ruft den Wert der estWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getEstWert() { - return estWert; - } - - /** - * Legt den Wert der estWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEstWert(String value) { - this.estWert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEntscheidungsfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEntscheidungsfrageType.java deleted file mode 100644 index 6837d7ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELEntscheidungsfrageType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Entscheidungsfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Entscheidungsfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
- *       <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Entscheidungsfrage_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELEntscheidungsfrageType { - - @XmlAttribute(name = "EFrageCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String eFrageCd; - @XmlAttribute(name = "EFrageAntw", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String eFrageAntw; - - /** - * Ruft den Wert der eFrageCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getEFrageCd() { - return eFrageCd; - } - - /** - * Legt den Wert der eFrageCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEFrageCd(String value) { - this.eFrageCd = value; - } - - /** - * Ruft den Wert der eFrageAntw-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getEFrageAntw() { - return eFrageAntw; - } - - /** - * Legt den Wert der eFrageAntw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEFrageAntw(String value) { - this.eFrageAntw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELFlaecheType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELFlaecheType.java deleted file mode 100644 index a0aeeceb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELFlaecheType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Flaeche_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Flaeche_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FlaechenAttributCd" use="required" type="{urn:omds20}FlaechenAttributCd_Type" />
- *       <attribute name="Nummer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="InnenFlaeche" type="{urn:omds20}decimal" />
- *       <attribute name="VerbauteFlaeche" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Flaeche_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELFlaecheType { - - @XmlAttribute(name = "FlaechenAttributCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected FlaechenAttributCdType flaechenAttributCd; - @XmlAttribute(name = "Nummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nummer; - @XmlAttribute(name = "InnenFlaeche") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal innenFlaeche; - @XmlAttribute(name = "VerbauteFlaeche") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal verbauteFlaeche; - - /** - * Ruft den Wert der flaechenAttributCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link FlaechenAttributCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public FlaechenAttributCdType getFlaechenAttributCd() { - return flaechenAttributCd; - } - - /** - * Legt den Wert der flaechenAttributCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FlaechenAttributCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFlaechenAttributCd(FlaechenAttributCdType value) { - this.flaechenAttributCd = value; - } - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Ruft den Wert der innenFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getInnenFlaeche() { - return innenFlaeche; - } - - /** - * Legt den Wert der innenFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setInnenFlaeche(BigDecimal value) { - this.innenFlaeche = value; - } - - /** - * Ruft den Wert der verbauteFlaeche-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVerbauteFlaeche() { - return verbauteFlaeche; - } - - /** - * Legt den Wert der verbauteFlaeche-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerbauteFlaeche(BigDecimal value) { - this.verbauteFlaeche = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGewinnbeteiligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGewinnbeteiligungType.java deleted file mode 100644 index 384a2bb4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGewinnbeteiligungType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Gewinnbeteiligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Gewinnbeteiligung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Gewinnbeteiligung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELGewinnbeteiligungType { - - @XmlAttribute(name = "Datum", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGrenzwertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGrenzwertType.java deleted file mode 100644 index d60b9b7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELGrenzwertType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Grenzwert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Grenzwert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
- *       <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="GrwTyp">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Grenzwert_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELGrenzwertType { - - @XmlAttribute(name = "GrwArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GrwArtCdType grwArtCd; - @XmlAttribute(name = "GrWert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal grWert; - @XmlAttribute(name = "GrwTyp") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String grwTyp; - - /** - * Ruft den Wert der grwArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GrwArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GrwArtCdType getGrwArtCd() { - return grwArtCd; - } - - /** - * Legt den Wert der grwArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GrwArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrwArtCd(GrwArtCdType value) { - this.grwArtCd = value; - } - - /** - * Ruft den Wert der grWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getGrWert() { - return grWert; - } - - /** - * Legt den Wert der grWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrWert(BigDecimal value) { - this.grWert = value; - } - - /** - * Ruft den Wert der grwTyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGrwTyp() { - return grwTyp; - } - - /** - * Legt den Wert der grwTyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrwTyp(String value) { - this.grwTyp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIdentifizierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIdentifizierungType.java deleted file mode 100644 index 8c28ff04..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIdentifizierungType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Identifizierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Identifizierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
- *       <attribute name="IdfSchluessel" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IdfDatum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Identifizierung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELIdentifizierungType { - - @XmlAttribute(name = "IdfArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected IdfArtCdType idfArtCd; - @XmlAttribute(name = "IdfSchluessel", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String idfSchluessel; - @XmlAttribute(name = "IdfDatum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar idfDatum; - - /** - * Ruft den Wert der idfArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link IdfArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public IdfArtCdType getIdfArtCd() { - return idfArtCd; - } - - /** - * Legt den Wert der idfArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link IdfArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIdfArtCd(IdfArtCdType value) { - this.idfArtCd = value; - } - - /** - * Ruft den Wert der idfSchluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getIdfSchluessel() { - return idfSchluessel; - } - - /** - * Legt den Wert der idfSchluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIdfSchluessel(String value) { - this.idfSchluessel = value; - } - - /** - * Ruft den Wert der idfDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getIdfDatum() { - return idfDatum; - } - - /** - * Legt den Wert der idfDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIdfDatum(XMLGregorianCalendar value) { - this.idfDatum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIndexType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIndexType.java deleted file mode 100644 index 55d7daf0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELIndexType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Index_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Index_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
- *       <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
- *       <attribute name="Wert" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Index_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELIndexType { - - @XmlAttribute(name = "IndexArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String indexArtCd; - @XmlAttribute(name = "Datum") - @XmlSchemaType(name = "gYearMonth") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - - /** - * Ruft den Wert der indexArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getIndexArtCd() { - return indexArtCd; - } - - /** - * Legt den Wert der indexArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIndexArtCd(String value) { - this.indexArtCd = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKFZKennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKFZKennzeichenType.java deleted file mode 100644 index 856e24a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKFZKennzeichenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-KFZ-Kennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-KFZ-Kennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Pol_Kennz" use="required" type="{urn:omds20}Pol_Kennz_Type" />
- *       <attribute name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-KFZ-Kennzeichen_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELKFZKennzeichenType { - - @XmlAttribute(name = "Pol_Kennz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polKennz; - @XmlAttribute(name = "Fahrgestnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestnr; - - /** - * Ruft den Wert der polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKlauselType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKlauselType.java deleted file mode 100644 index a748598b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKlauselType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Klausel_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Klausel_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Klausel_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELKlauselType { - - @XmlAttribute(name = "Klauselnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String klauselnr; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKlauselnr(String value) { - this.klauselnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKommunikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKommunikationType.java deleted file mode 100644 index 22280ab6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELKommunikationType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Kommunikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Kommunikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
- *       <attribute name="Kennung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Kommunikation_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELKommunikationType { - - @XmlAttribute(name = "KomArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String komArtCd; - @XmlAttribute(name = "Kennung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennung; - - /** - * Ruft den Wert der komArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKomArtCd() { - return komArtCd; - } - - /** - * Legt den Wert der komArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKomArtCd(String value) { - this.komArtCd = value; - } - - /** - * Ruft den Wert der kennung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennung() { - return kennung; - } - - /** - * Legt den Wert der kennung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennung(String value) { - this.kennung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELLegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELLegitimationType.java deleted file mode 100644 index 60b47619..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELLegitimationType.java +++ /dev/null @@ -1,202 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds3Types.r1_10_0.common.LegitimationType; - - -/** - *

Java-Klasse für EL-Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Legitimation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
- *       <attribute name="Ausstellungsbehoerde">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="Nummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Legitimation_Type") -@XmlSeeAlso({ - LegitimationType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELLegitimationType { - - @XmlAttribute(name = "LegArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String legArtCd; - @XmlAttribute(name = "Ausstellungsbehoerde") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ausstellungsbehoerde; - @XmlAttribute(name = "Datum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "GueltigBis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigBis; - @XmlAttribute(name = "Nummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nummer; - - /** - * Ruft den Wert der legArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLegArtCd() { - return legArtCd; - } - - /** - * Legt den Wert der legArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLegArtCd(String value) { - this.legArtCd = value; - } - - /** - * Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAusstellungsbehoerde() { - return ausstellungsbehoerde; - } - - /** - * Legt den Wert der ausstellungsbehoerde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusstellungsbehoerde(String value) { - this.ausstellungsbehoerde = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNummer(String value) { - this.nummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektType.java deleted file mode 100644 index 41d1b2a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objekt_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELObjektType { - - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int objLfnr; - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjLfnr(int value) { - this.objLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektdatenType.java deleted file mode 100644 index 6d08ceef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELObjektdatenType.java +++ /dev/null @@ -1,136 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objektdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objektdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
- *       <attribute name="Wert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ObjektdatenInfo">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objektdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELObjektdatenType { - - @XmlAttribute(name = "ObjektdatenCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String objektdatenCd; - @XmlAttribute(name = "Wert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String wert; - @XmlAttribute(name = "ObjektdatenInfo") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String objektdatenInfo; - - /** - * Ruft den Wert der objektdatenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getObjektdatenCd() { - return objektdatenCd; - } - - /** - * Legt den Wert der objektdatenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektdatenCd(String value) { - this.objektdatenCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(String value) { - this.wert = value; - } - - /** - * Ruft den Wert der objektdatenInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getObjektdatenInfo() { - return objektdatenInfo; - } - - /** - * Legt den Wert der objektdatenInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektdatenInfo(String value) { - this.objektdatenInfo = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPolizzennummerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPolizzennummerType.java deleted file mode 100644 index 4d0c43b0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPolizzennummerType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Polizzennummer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Polizzennummer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
- *       <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Polizzennummer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELPolizzennummerType { - - @XmlAttribute(name = "PolArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PolArtCdType polArtCd; - @XmlAttribute(name = "PolNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polNr; - - /** - * Ruft den Wert der polArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PolArtCdType getPolArtCd() { - return polArtCd; - } - - /** - * Legt den Wert der polArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolArtCd(PolArtCdType value) { - this.polArtCd = value; - } - - /** - * Ruft den Wert der polNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolNr() { - return polNr; - } - - /** - * Legt den Wert der polNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolNr(String value) { - this.polNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienfreistellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienfreistellungType.java deleted file mode 100644 index 74ba32fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienfreistellungType.java +++ /dev/null @@ -1,124 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Praemienfreistellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienfreistellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
- *       <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="PfrEnde" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienfreistellung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELPraemienfreistellungType { - - @XmlAttribute(name = "PfrArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String pfrArtCd; - @XmlAttribute(name = "PfrBeg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar pfrBeg; - @XmlAttribute(name = "PfrEnde") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar pfrEnde; - - /** - * Ruft den Wert der pfrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPfrArtCd() { - return pfrArtCd; - } - - /** - * Legt den Wert der pfrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPfrArtCd(String value) { - this.pfrArtCd = value; - } - - /** - * Ruft den Wert der pfrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getPfrBeg() { - return pfrBeg; - } - - /** - * Legt den Wert der pfrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPfrBeg(XMLGregorianCalendar value) { - this.pfrBeg = value; - } - - /** - * Ruft den Wert der pfrEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getPfrEnde() { - return pfrEnde; - } - - /** - * Legt den Wert der pfrEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPfrEnde(XMLGregorianCalendar value) { - this.pfrEnde = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienkorrekturType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienkorrekturType.java deleted file mode 100644 index 70a616ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELPraemienkorrekturType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Praemienkorrektur_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienkorrektur_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
- *       <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienkorrektur_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELPraemienkorrekturType { - - @XmlAttribute(name = "PraemKorrArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String praemKorrArtCd; - @XmlAttribute(name = "PraemKorrWert") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemKorrWert; - @XmlAttribute(name = "PraemKorrProz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemKorrProz; - @XmlAttribute(name = "PraemKorrText") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String praemKorrText; - - /** - * Ruft den Wert der praemKorrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPraemKorrArtCd() { - return praemKorrArtCd; - } - - /** - * Legt den Wert der praemKorrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemKorrArtCd(String value) { - this.praemKorrArtCd = value; - } - - /** - * Ruft den Wert der praemKorrWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemKorrWert() { - return praemKorrWert; - } - - /** - * Legt den Wert der praemKorrWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemKorrWert(BigDecimal value) { - this.praemKorrWert = value; - } - - /** - * Ruft den Wert der praemKorrProz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemKorrProz() { - return praemKorrProz; - } - - /** - * Legt den Wert der praemKorrProz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemKorrProz(BigDecimal value) { - this.praemKorrProz = value; - } - - /** - * Ruft den Wert der praemKorrText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPraemKorrText() { - return praemKorrText; - } - - /** - * Legt den Wert der praemKorrText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemKorrText(String value) { - this.praemKorrText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvereinbarungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvereinbarungType.java deleted file mode 100644 index 95489e95..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvereinbarungType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvereinbarung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvereinbarung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenVebnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvereinbarung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELRahmenvereinbarungType { - - @XmlAttribute(name = "RahmenVebnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rahmenVebnr; - - /** - * Ruft den Wert der rahmenVebnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRahmenVebnr() { - return rahmenVebnr; - } - - /** - * Legt den Wert der rahmenVebnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRahmenVebnr(String value) { - this.rahmenVebnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvertragType.java deleted file mode 100644 index 8f14a768..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRahmenvertragType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvertrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenvertragsartCd" use="required" type="{urn:omds20}RahmenvertragsartCd_Type" />
- *       <attribute name="Rahmenvertragsnummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvertrag_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELRahmenvertragType { - - @XmlAttribute(name = "RahmenvertragsartCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rahmenvertragsartCd; - @XmlAttribute(name = "Rahmenvertragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rahmenvertragsnummer; - - /** - * Ruft den Wert der rahmenvertragsartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRahmenvertragsartCd() { - return rahmenvertragsartCd; - } - - /** - * Legt den Wert der rahmenvertragsartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRahmenvertragsartCd(String value) { - this.rahmenvertragsartCd = value; - } - - /** - * Ruft den Wert der rahmenvertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRahmenvertragsnummer() { - return rahmenvertragsnummer; - } - - /** - * Legt den Wert der rahmenvertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRahmenvertragsnummer(String value) { - this.rahmenvertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRenteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRenteType.java deleted file mode 100644 index f4eecbe1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELRenteType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Rente_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rente_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
- *       <attribute name="RntBeg" type="{urn:omds20}Datum" />
- *       <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rente_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELRenteType { - - @XmlAttribute(name = "RntRhythmCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rntRhythmCd; - @XmlAttribute(name = "RntBeg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar rntBeg; - @XmlAttribute(name = "RntBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal rntBetrag; - - /** - * Ruft den Wert der rntRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRntRhythmCd() { - return rntRhythmCd; - } - - /** - * Legt den Wert der rntRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRntRhythmCd(String value) { - this.rntRhythmCd = value; - } - - /** - * Ruft den Wert der rntBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getRntBeg() { - return rntBeg; - } - - /** - * Legt den Wert der rntBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRntBeg(XMLGregorianCalendar value) { - this.rntBeg = value; - } - - /** - * Ruft den Wert der rntBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getRntBetrag() { - return rntBetrag; - } - - /** - * Legt den Wert der rntBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRntBetrag(BigDecimal value) { - this.rntBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehalt.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehalt.java deleted file mode 100644 index 2d3f7337..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehalt.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Selbstbehalt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "EL-Selbstbehalt") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELSelbstbehalt - extends ELSelbstbehaltType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehaltType.java deleted file mode 100644 index 25def22b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSelbstbehaltType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
- *       <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
- *       <attribute name="SbhProzent" type="{urn:omds20}decimal" />
- *       <attribute name="SbhText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Selbstbehalt_Type") -@XmlSeeAlso({ - ELSelbstbehalt.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELSelbstbehaltType { - - @XmlAttribute(name = "SbhArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SbhArtCdType sbhArtCd; - @XmlAttribute(name = "SbhBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal sbhBetrag; - @XmlAttribute(name = "SbhProzent") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal sbhProzent; - @XmlAttribute(name = "SbhText") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sbhText; - - /** - * Ruft den Wert der sbhArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SbhArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SbhArtCdType getSbhArtCd() { - return sbhArtCd; - } - - /** - * Legt den Wert der sbhArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SbhArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSbhArtCd(SbhArtCdType value) { - this.sbhArtCd = value; - } - - /** - * Ruft den Wert der sbhBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSbhBetrag() { - return sbhBetrag; - } - - /** - * Legt den Wert der sbhBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSbhBetrag(BigDecimal value) { - this.sbhBetrag = value; - } - - /** - * Ruft den Wert der sbhProzent-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSbhProzent() { - return sbhProzent; - } - - /** - * Legt den Wert der sbhProzent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSbhProzent(BigDecimal value) { - this.sbhProzent = value; - } - - /** - * Ruft den Wert der sbhText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSbhText() { - return sbhText; - } - - /** - * Legt den Wert der sbhText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSbhText(String value) { - this.sbhText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSteuerType.java deleted file mode 100644 index 9133f24b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELSteuerType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Steuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Steuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
- *       <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Steuer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELSteuerType { - - @XmlAttribute(name = "StArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String stArtCd; - @XmlAttribute(name = "StBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal stBetrag; - - /** - * Ruft den Wert der stArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStArtCd() { - return stArtCd; - } - - /** - * Legt den Wert der stArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStArtCd(String value) { - this.stArtCd = value; - } - - /** - * Ruft den Wert der stBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getStBetrag() { - return stBetrag; - } - - /** - * Legt den Wert der stBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStBetrag(BigDecimal value) { - this.stBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELTextType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELTextType.java deleted file mode 100644 index 93d0c537..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELTextType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Text_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Text_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
- *       <attribute name="TxtInhalt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Text_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELTextType { - - @XmlAttribute(name = "TxtArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected TxtArtCdType txtArtCd; - @XmlAttribute(name = "TxtInhalt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String txtInhalt; - - /** - * Ruft den Wert der txtArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link TxtArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public TxtArtCdType getTxtArtCd() { - return txtArtCd; - } - - /** - * Legt den Wert der txtArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TxtArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTxtArtCd(TxtArtCdType value) { - this.txtArtCd = value; - } - - /** - * Ruft den Wert der txtInhalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTxtInhalt() { - return txtInhalt; - } - - /** - * Legt den Wert der txtInhalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTxtInhalt(String value) { - this.txtInhalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELVersicherungssummeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELVersicherungssummeType.java deleted file mode 100644 index 74937afb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELVersicherungssummeType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Versicherungssumme_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Versicherungssumme_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
- *       <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="VSBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Versicherungssumme_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELVersicherungssummeType { - - @XmlAttribute(name = "VSArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VSArtCdType vsArtCd; - @XmlAttribute(name = "VSBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal vsBetrag; - @XmlAttribute(name = "WaehrungsCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "VSBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vsBez; - - /** - * Ruft den Wert der vsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VSArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VSArtCdType getVSArtCd() { - return vsArtCd; - } - - /** - * Legt den Wert der vsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VSArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVSArtCd(VSArtCdType value) { - this.vsArtCd = value; - } - - /** - * Ruft den Wert der vsBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVSBetrag() { - return vsBetrag; - } - - /** - * Legt den Wert der vsBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVSBetrag(BigDecimal value) { - this.vsBetrag = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der vsBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVSBez() { - return vsBez; - } - - /** - * Legt den Wert der vsBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVSBez(String value) { - this.vsBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELZeitraumType.java deleted file mode 100644 index e798c059..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ELZeitraumType.java +++ /dev/null @@ -1,124 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Zeitraum_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ELZeitraumType { - - @XmlAttribute(name = "ZRArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zrArtCd; - @XmlAttribute(name = "ZRBeg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZRArtCd() { - return zrArtCd; - } - - /** - * Legt den Wert der zrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZRArtCd(String value) { - this.zrArtCd = value; - } - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/Entsch2Type.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/Entsch2Type.java deleted file mode 100644 index fe39bf30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/Entsch2Type.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Entsch2_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Entsch2_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="1"/>
- *     <enumeration value="J"/>
- *     <enumeration value="N"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Entsch2_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum Entsch2Type { - - J, - N; - - public String value() { - return name(); - } - - public static Entsch2Type fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/EstArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/EstArtCdType.java deleted file mode 100644 index 1058b028..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/EstArtCdType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EstArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="EstArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="G"/>
- *     <enumeration value="T"/>
- *     <enumeration value="TVU"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EstArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum EstArtCdType { - - - /** - * Gefahrenklasse - * - */ - G, - - /** - * Tarif-, Bonus/Malus-Stufe offiziell - * - */ - T, - - /** - * Tarif-, Bonus/Malus-Stufe VU-intern - * - */ - TVU; - - public String value() { - return name(); - } - - public static EstArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FONDSType.java deleted file mode 100644 index e71b4154..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FONDSType.java +++ /dev/null @@ -1,305 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für FONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" use="required" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" use="required" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FONDS_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FONDSType { - - @XmlAttribute(name = "ISIN", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String isin; - @XmlAttribute(name = "WKN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String wkn; - @XmlAttribute(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWKN(String value) { - this.wkn = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FlaechenAttributCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FlaechenAttributCdType.java deleted file mode 100644 index 2b805490..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/FlaechenAttributCdType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für FlaechenAttributCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="FlaechenAttributCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="EG"/>
- *     <enumeration value="SW"/>
- *     <enumeration value="MA"/>
- *     <enumeration value="KM"/>
- *     <enumeration value="KO"/>
- *     <enumeration value="WF"/>
- *     <enumeration value="GF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "FlaechenAttributCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum FlaechenAttributCdType { - - - /** - * Erdgeschoß - * - */ - EG, - - /** - * Stockwerk - * - */ - SW, - - /** - * Mansarde - * - */ - MA, - - /** - * Keller mit Wohnnutzung - * - */ - KM, - - /** - * Keller ohne Wohnnutzung - * - */ - KO, - - /** - * Wohnfläche - * - */ - WF, - - /** - * Grundfläche - * - */ - GF; - - public String value() { - return name(); - } - - public static FlaechenAttributCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GESCHAEDIGTESOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GESCHAEDIGTESOBJEKTType.java deleted file mode 100644 index 4ff6be48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GESCHAEDIGTESOBJEKTType.java +++ /dev/null @@ -1,291 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GESCHAEDIGTES_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="SchadenBeschreibung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
- *       <attribute name="VUNameGesch">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
- *       <attribute name="SchadennrGesch">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Schadennr">
- *             <maxLength value="35"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Kennz_GeschKfz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GESCHAEDIGTESOBJEKTType { - - @XmlAttribute(name = "GeschObjektLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int geschObjektLfnr; - @XmlAttribute(name = "SchadenBeschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadenBeschreibung; - @XmlAttribute(name = "VUNrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNrGesch; - @XmlAttribute(name = "VUNameGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNameGesch; - @XmlAttribute(name = "PolNrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polNrGesch; - @XmlAttribute(name = "SchadennrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennrGesch; - @XmlAttribute(name = "LandesCd_GeschKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCdGeschKfz; - @XmlAttribute(name = "Kennz_GeschKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennzGeschKfz; - - /** - * Ruft den Wert der geschObjektLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getGeschObjektLfnr() { - return geschObjektLfnr; - } - - /** - * Legt den Wert der geschObjektLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschObjektLfnr(int value) { - this.geschObjektLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GesFormCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GesFormCdType.java deleted file mode 100644 index 42db04c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GesFormCdType.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GesFormCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GesFormCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GBH"/>
- *     <enumeration value="AG"/>
- *     <enumeration value="OG"/>
- *     <enumeration value="KG"/>
- *     <enumeration value="GBR"/>
- *     <enumeration value="SG"/>
- *     <enumeration value="GEN"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="EU"/>
- *     <enumeration value="GKG"/>
- *     <enumeration value="PS"/>
- *     <enumeration value="SP"/>
- *     <enumeration value="VE"/>
- *     <enumeration value="WEG"/>
- *     <enumeration value="EWI"/>
- *     <enumeration value="ARG"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GesFormCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum GesFormCdType { - - - /** - * Gesellschaft mit beschränkter Haftung - * - */ - GBH, - - /** - * Aktiengesellschaft - * - */ - AG, - - /** - * Offene Gesellschaft - * - */ - OG, - - /** - * Kommanditgesellschaft - * - */ - KG, - - /** - * Gesellschaft bürgerlichen Rechts - * - */ - GBR, - - /** - * Stille Gesellschaft - * - */ - SG, - - /** - * Erwerbs- und Wirtschaftsgenossenschaft - * - */ - GEN, - - /** - * Ausländ./EU Rechtsform - * - */ - EUR, - - /** - * Einzelunternehmen - * - */ - EU, - - /** - * GmbH und Co KG - * - */ - GKG, - - /** - * Privatstiftung - * - */ - PS, - - /** - * Sparkasse - * - */ - SP, - - /** - * Verein - * - */ - VE, - - /** - * Wohnungseigentümergemeinschaft - * - */ - WEG, - - /** - * Europäische Wirtschaftliche Interessenvereinigung - * - */ - EWI, - - /** - * Arbeitsgemeinschaft - * - */ - ARG; - - public String value() { - return name(); - } - - public static GesFormCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GrwArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GrwArtCdType.java deleted file mode 100644 index 3f8eb54d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/GrwArtCdType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GrwArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GrwArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DFP"/>
- *     <enumeration value="KAM"/>
- *     <enumeration value="KAT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GrwArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum GrwArtCdType { - - - /** - * DauerfolgenProz(UV) - * - */ - DFP, - - /** - * Karenzmonate - * - */ - KAM, - - /** - * Karenztage - * - */ - KAT; - - public String value() { - return name(); - } - - public static GrwArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/IdfArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/IdfArtCdType.java deleted file mode 100644 index 1e633545..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/IdfArtCdType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für IdfArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="IdfArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FB"/>
- *     <enumeration value="SV"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "IdfArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum IdfArtCdType { - - - /** - * Firmenbuchnummer - * - */ - FB, - - /** - * Sozialversicherungsnr - * - */ - SV, - - /** - * Versicherungsbestätigung - * - */ - VB; - - public String value() { - return name(); - } - - public static IdfArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/KLAUSELType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/KLAUSELType.java deleted file mode 100644 index b9270107..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/KLAUSELType.java +++ /dev/null @@ -1,204 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für KLAUSEL_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KLAUSEL_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauselbez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauseltxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="7998"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigVon" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KLAUSEL_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KLAUSELType { - - @XmlAttribute(name = "Klauselnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String klauselnr; - @XmlAttribute(name = "Klauselbez", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String klauselbez; - @XmlAttribute(name = "Klauseltxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String klauseltxt; - @XmlAttribute(name = "GueltigVon") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigVon; - @XmlAttribute(name = "GueltigBis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKlauselnr(String value) { - this.klauselnr = value; - } - - /** - * Ruft den Wert der klauselbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKlauselbez() { - return klauselbez; - } - - /** - * Legt den Wert der klauselbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKlauselbez(String value) { - this.klauselbez = value; - } - - /** - * Ruft den Wert der klauseltxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKlauseltxt() { - return klauseltxt; - } - - /** - * Legt den Wert der klauseltxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKlauseltxt(String value) { - this.klauseltxt = value; - } - - /** - * Ruft den Wert der gueltigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigVon() { - return gueltigVon; - } - - /** - * Legt den Wert der gueltigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigVon(XMLGregorianCalendar value) { - this.gueltigVon = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LOESCHANSTOSSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LOESCHANSTOSSType.java deleted file mode 100644 index d55c9911..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LOESCHANSTOSSType.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für LOESCHANSTOSS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LOESCHANSTOSS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit2" />
- *       <attribute name="SystemQuelle" default="  ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
- *       <attribute name="ProvisionsID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnverfahrenNr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LOESCHANSTOSS_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class LOESCHANSTOSSType { - - @XmlAttribute(name = "LoeschID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar loeschID; - @XmlAttribute(name = "SystemQuelle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String systemQuelle; - @XmlAttribute(name = "GueltigAb") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigAb; - @XmlAttribute(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlAttribute(name = "Personennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - @XmlAttribute(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - @XmlAttribute(name = "ProvisionsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provisionsID; - @XmlAttribute(name = "MahnverfahrenNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnverfahrenNr; - @XmlAttribute(name = "LoeschCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected LoeschCdType loeschCd; - - /** - * Ruft den Wert der loeschID-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getLoeschID() { - return loeschID; - } - - /** - * Legt den Wert der loeschID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLoeschID(XMLGregorianCalendar value) { - this.loeschID = value; - } - - /** - * Ruft den Wert der systemQuelle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSystemQuelle() { - if (systemQuelle == null) { - return " "; - } else { - return systemQuelle; - } - } - - /** - * Legt den Wert der systemQuelle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSystemQuelle(String value) { - this.systemQuelle = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der loeschCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link LoeschCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public LoeschCdType getLoeschCd() { - return loeschCd; - } - - /** - * Legt den Wert der loeschCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LoeschCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLoeschCd(LoeschCdType value) { - this.loeschCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LoeschCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LoeschCdType.java deleted file mode 100644 index 2e0e0f84..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/LoeschCdType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für LoeschCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="LoeschCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="M"/>
- *     <enumeration value="L"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LoeschCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum LoeschCdType { - - - /** - * Markieren als nichtmehrversorgt - * - */ - M, - - /** - * Löschen wg.z.B.Falschlieferung - * - */ - L, - - /** - * Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht - * - */ - G; - - public String value() { - return name(); - } - - public static LoeschCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MAHNUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MAHNUNGType.java deleted file mode 100644 index aa5f2785..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MAHNUNGType.java +++ /dev/null @@ -1,777 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für MAHNUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MAHNUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="MahnverfahrenNr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
- *       <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleBeauftragt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVUNext">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
- *       <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
- *       <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MAHNUNG_Type", propOrder = { - "elText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class MAHNUNGType { - - @XmlElement(name = "EL-Text") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elText; - @XmlAttribute(name = "MahnverfahrenNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnverfahrenNr; - @XmlAttribute(name = "MahnungNr") - @XmlSchemaType(name = "positiveInteger") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger mahnungNr; - @XmlAttribute(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - @XmlAttribute(name = "MahnBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal mahnBetrag; - @XmlAttribute(name = "MahnSpesen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal mahnSpesen; - @XmlAttribute(name = "MahnStufeCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStufeCd; - @XmlAttribute(name = "MahnStufeTextVU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStufeTextVU; - @XmlAttribute(name = "MahnStelleVU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStelleVU; - @XmlAttribute(name = "MahnStelleBeauftragt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStelleBeauftragt; - @XmlAttribute(name = "MahnStufeGueltigAb") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnStufeGueltigAb; - @XmlAttribute(name = "MahnStufeGueltigBis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnStufeGueltigBis; - @XmlAttribute(name = "MahnStufeCdNext") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStufeCdNext; - @XmlAttribute(name = "MahnStufeTextVUNext") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnStufeTextVUNext; - @XmlAttribute(name = "MahnStufeGueltigAbNext") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnStufeGueltigAbNext; - @XmlAttribute(name = "MahnLetzteZahlung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnLetzteZahlung; - @XmlAttribute(name = "MahnAeltesteFaelligkeit") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnAeltesteFaelligkeit; - @XmlAttribute(name = "MahnAnzahlFaelligkeiten") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer mahnAnzahlFaelligkeiten; - @XmlAttribute(name = "GrundRuecklaufCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String grundRuecklaufCd; - @XmlAttribute(name = "MahnDeckungBis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar mahnDeckungBis; - @XmlAttribute(name = "VtgSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgSparteCd; - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der mahnungNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getMahnungNr() { - return mahnungNr; - } - - /** - * Legt den Wert der mahnungNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnungNr(BigInteger value) { - this.mahnungNr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der mahnBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMahnBetrag() { - return mahnBetrag; - } - - /** - * Legt den Wert der mahnBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnBetrag(BigDecimal value) { - this.mahnBetrag = value; - } - - /** - * Ruft den Wert der mahnSpesen-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMahnSpesen() { - return mahnSpesen; - } - - /** - * Legt den Wert der mahnSpesen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnSpesen(BigDecimal value) { - this.mahnSpesen = value; - } - - /** - * Ruft den Wert der mahnStufeCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStufeCd() { - return mahnStufeCd; - } - - /** - * Legt den Wert der mahnStufeCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeCd(String value) { - this.mahnStufeCd = value; - } - - /** - * Ruft den Wert der mahnStufeTextVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStufeTextVU() { - return mahnStufeTextVU; - } - - /** - * Legt den Wert der mahnStufeTextVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeTextVU(String value) { - this.mahnStufeTextVU = value; - } - - /** - * Ruft den Wert der mahnStelleVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStelleVU() { - return mahnStelleVU; - } - - /** - * Legt den Wert der mahnStelleVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStelleVU(String value) { - this.mahnStelleVU = value; - } - - /** - * Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStelleBeauftragt() { - return mahnStelleBeauftragt; - } - - /** - * Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStelleBeauftragt(String value) { - this.mahnStelleBeauftragt = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnStufeGueltigAb() { - return mahnStufeGueltigAb; - } - - /** - * Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeGueltigAb(XMLGregorianCalendar value) { - this.mahnStufeGueltigAb = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnStufeGueltigBis() { - return mahnStufeGueltigBis; - } - - /** - * Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeGueltigBis(XMLGregorianCalendar value) { - this.mahnStufeGueltigBis = value; - } - - /** - * Ruft den Wert der mahnStufeCdNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStufeCdNext() { - return mahnStufeCdNext; - } - - /** - * Legt den Wert der mahnStufeCdNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeCdNext(String value) { - this.mahnStufeCdNext = value; - } - - /** - * Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnStufeTextVUNext() { - return mahnStufeTextVUNext; - } - - /** - * Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeTextVUNext(String value) { - this.mahnStufeTextVUNext = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnStufeGueltigAbNext() { - return mahnStufeGueltigAbNext; - } - - /** - * Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) { - this.mahnStufeGueltigAbNext = value; - } - - /** - * Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnLetzteZahlung() { - return mahnLetzteZahlung; - } - - /** - * Legt den Wert der mahnLetzteZahlung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnLetzteZahlung(XMLGregorianCalendar value) { - this.mahnLetzteZahlung = value; - } - - /** - * Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnAeltesteFaelligkeit() { - return mahnAeltesteFaelligkeit; - } - - /** - * Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) { - this.mahnAeltesteFaelligkeit = value; - } - - /** - * Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMahnAnzahlFaelligkeiten() { - return mahnAnzahlFaelligkeiten; - } - - /** - * Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnAnzahlFaelligkeiten(Integer value) { - this.mahnAnzahlFaelligkeiten = value; - } - - /** - * Ruft den Wert der grundRuecklaufCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGrundRuecklaufCd() { - return grundRuecklaufCd; - } - - /** - * Legt den Wert der grundRuecklaufCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrundRuecklaufCd(String value) { - this.grundRuecklaufCd = value; - } - - /** - * Ruft den Wert der mahnDeckungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMahnDeckungBis() { - return mahnDeckungBis; - } - - /** - * Legt den Wert der mahnDeckungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnDeckungBis(XMLGregorianCalendar value) { - this.mahnDeckungBis = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MIGRATIONSINFORMATIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MIGRATIONSINFORMATIONType.java deleted file mode 100644 index 4eaabc1f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/MIGRATIONSINFORMATIONType.java +++ /dev/null @@ -1,168 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für MIGRATIONSINFORMATION_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MIGRATIONSINFORMATION_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="MigrationsCd" use="required" type="{urn:omds20}MigrationsCd_Type" />
- *       <attribute name="Wert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VorgaengerWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MIGRATIONSINFORMATION_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class MIGRATIONSINFORMATIONType { - - @XmlAttribute(name = "MigrationsCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String migrationsCd; - @XmlAttribute(name = "Wert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String wert; - @XmlAttribute(name = "VorgaengerWert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vorgaengerWert; - @XmlAttribute(name = "GueltigAb") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigAb; - - /** - * Ruft den Wert der migrationsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMigrationsCd() { - return migrationsCd; - } - - /** - * Legt den Wert der migrationsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMigrationsCd(String value) { - this.migrationsCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(String value) { - this.wert = value; - } - - /** - * Ruft den Wert der vorgaengerWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVorgaengerWert() { - return vorgaengerWert; - } - - /** - * Legt den Wert der vorgaengerWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorgaengerWert(String value) { - this.vorgaengerWert = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/NATUERLICHEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/NATUERLICHEPERSONType.java deleted file mode 100644 index b7df91ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/NATUERLICHEPERSONType.java +++ /dev/null @@ -1,347 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für NATUERLICHE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NATUERLICHE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GeschlechtCd" type="{urn:omds20}GeschlechtCd_Type" />
- *       <attribute name="Gebdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="FamilienstandCd" type="{urn:omds20}FamilienstandCd_Type" />
- *       <attribute name="GebLandCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="HauptWohnLandCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
- *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NATUERLICHE_PERSON_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class NATUERLICHEPERSONType { - - @XmlAttribute(name = "Familienname", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String familienname; - @XmlAttribute(name = "Vorname") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschlechtCd; - @XmlAttribute(name = "Gebdat") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gebdat; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "FamilienstandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String familienstandCd; - @XmlAttribute(name = "GebLandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebLandCd; - @XmlAttribute(name = "HauptWohnLandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hauptWohnLandCd; - @XmlAttribute(name = "PersonID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personIDVU; - @XmlAttribute(name = "PersonID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personIDMakler; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der familienstandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFamilienstandCd() { - return familienstandCd; - } - - /** - * Legt den Wert der familienstandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFamilienstandCd(String value) { - this.familienstandCd = value; - } - - /** - * Ruft den Wert der gebLandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebLandCd() { - return gebLandCd; - } - - /** - * Legt den Wert der gebLandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebLandCd(String value) { - this.gebLandCd = value; - } - - /** - * Ruft den Wert der hauptWohnLandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHauptWohnLandCd() { - return hauptWohnLandCd; - } - - /** - * Legt den Wert der hauptWohnLandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHauptWohnLandCd(String value) { - this.hauptWohnLandCd = value; - } - - /** - * Ruft den Wert der personIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonIDVU() { - return personIDVU; - } - - /** - * Legt den Wert der personIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonIDVU(String value) { - this.personIDVU = value; - } - - /** - * Ruft den Wert der personIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonIDMakler() { - return personIDMakler; - } - - /** - * Legt den Wert der personIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonIDMakler(String value) { - this.personIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/OMDS.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/OMDS.java deleted file mode 100644 index 79a4da57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/OMDS.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "paket" -}) -@XmlRootElement(name = "OMDS") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDS { - - @XmlElement(name = "PAKET", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List paket; - - /** - * Gets the value of the paket property. - * - *

- * 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 set method for the paket property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPAKET().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PAKET } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPAKET() { - if (paket == null) { - paket = new ArrayList(); - } - return this.paket; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ObjectFactory.java deleted file mode 100644 index f1eae230..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ObjectFactory.java +++ /dev/null @@ -1,1183 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds2Types.v2_15 package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation"); - private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL"); - private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS"); - private final static QName _MIGRATIONSINFORMATION_QNAME = new QName("urn:omds20", "MIGRATIONSINFORMATION"); - private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON"); - private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag"); - private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl"); - private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag"); - private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung"); - private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung"); - private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage"); - private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung"); - private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel"); - private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer"); - private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung"); - private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur"); - private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung"); - private final static QName _ELRahmenvertrag_QNAME = new QName("urn:omds20", "EL-Rahmenvertrag"); - private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text"); - private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON"); - private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT"); - private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE"); - private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN"); - private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION"); - private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG"); - private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS"); - private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON"); - private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON"); - private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON"); - private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE"); - private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO"); - private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS"); - private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER"); - private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT"); - private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG"); - private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung"); - private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert"); - private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index"); - private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation"); - private final static QName _ELObjekt_QNAME = new QName("urn:omds20", "EL-Objekt"); - private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten"); - private final static QName _ELFlaeche_QNAME = new QName("urn:omds20", "EL-Flaeche"); - private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente"); - private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer"); - private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme"); - private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum"); - private final static QName _ELKFZKennzeichen_QNAME = new QName("urn:omds20", "EL-KFZ-Kennzeichen"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_15 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link OMDS } - * - */ - public OMDS createOMDS() { - return new OMDS(); - } - - /** - * Create an instance of {@link PAKET } - * - */ - public PAKET createPAKET() { - return new PAKET(); - } - - /** - * Create an instance of {@link VERSUNTERNEHMEN } - * - */ - public VERSUNTERNEHMEN createVERSUNTERNEHMEN() { - return new VERSUNTERNEHMEN(); - } - - /** - * Create an instance of {@link ELKommunikationType } - * - */ - public ELKommunikationType createELKommunikationType() { - return new ELKommunikationType(); - } - - /** - * Create an instance of {@link SCHLUESSELART } - * - */ - public SCHLUESSELART createSCHLUESSELART() { - return new SCHLUESSELART(); - } - - /** - * Create an instance of {@link SCHLUESSEL } - * - */ - public SCHLUESSEL createSCHLUESSEL() { - return new SCHLUESSEL(); - } - - /** - * Create an instance of {@link KLAUSELType } - * - */ - public KLAUSELType createKLAUSELType() { - return new KLAUSELType(); - } - - /** - * Create an instance of {@link LOESCHANSTOSSType } - * - */ - public LOESCHANSTOSSType createLOESCHANSTOSSType() { - return new LOESCHANSTOSSType(); - } - - /** - * Create an instance of {@link MIGRATIONSINFORMATIONType } - * - */ - public MIGRATIONSINFORMATIONType createMIGRATIONSINFORMATIONType() { - return new MIGRATIONSINFORMATIONType(); - } - - /** - * Create an instance of {@link PERSONType } - * - */ - public PERSONType createPERSONType() { - return new PERSONType(); - } - - /** - * Create an instance of {@link VERTRAG } - * - */ - public VERTRAG createVERTRAG() { - return new VERTRAG(); - } - - /** - * Create an instance of {@link VERTRAGType } - * - */ - public VERTRAGType createVERTRAGType() { - return new VERTRAGType(); - } - - /** - * Create an instance of {@link ELAntragType } - * - */ - public ELAntragType createELAntragType() { - return new ELAntragType(); - } - - /** - * Create an instance of {@link ELAnzahlType } - * - */ - public ELAnzahlType createELAnzahlType() { - return new ELAnzahlType(); - } - - /** - * Create an instance of {@link ELBetragType } - * - */ - public ELBetragType createELBetragType() { - return new ELBetragType(); - } - - /** - * Create an instance of {@link ELBezugsberechtigungType } - * - */ - public ELBezugsberechtigungType createELBezugsberechtigungType() { - return new ELBezugsberechtigungType(); - } - - /** - * Create an instance of {@link ELEinstufungType } - * - */ - public ELEinstufungType createELEinstufungType() { - return new ELEinstufungType(); - } - - /** - * Create an instance of {@link ELEntscheidungsfrageType } - * - */ - public ELEntscheidungsfrageType createELEntscheidungsfrageType() { - return new ELEntscheidungsfrageType(); - } - - /** - * Create an instance of {@link ELIdentifizierungType } - * - */ - public ELIdentifizierungType createELIdentifizierungType() { - return new ELIdentifizierungType(); - } - - /** - * Create an instance of {@link ELKlauselType } - * - */ - public ELKlauselType createELKlauselType() { - return new ELKlauselType(); - } - - /** - * Create an instance of {@link ELPolizzennummerType } - * - */ - public ELPolizzennummerType createELPolizzennummerType() { - return new ELPolizzennummerType(); - } - - /** - * Create an instance of {@link ELPraemienfreistellungType } - * - */ - public ELPraemienfreistellungType createELPraemienfreistellungType() { - return new ELPraemienfreistellungType(); - } - - /** - * Create an instance of {@link ELPraemienkorrekturType } - * - */ - public ELPraemienkorrekturType createELPraemienkorrekturType() { - return new ELPraemienkorrekturType(); - } - - /** - * Create an instance of {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType createELRahmenvereinbarungType() { - return new ELRahmenvereinbarungType(); - } - - /** - * Create an instance of {@link ELRahmenvertragType } - * - */ - public ELRahmenvertragType createELRahmenvertragType() { - return new ELRahmenvertragType(); - } - - /** - * Create an instance of {@link ELSelbstbehalt } - * - */ - public ELSelbstbehalt createELSelbstbehalt() { - return new ELSelbstbehalt(); - } - - /** - * Create an instance of {@link ELSelbstbehaltType } - * - */ - public ELSelbstbehaltType createELSelbstbehaltType() { - return new ELSelbstbehaltType(); - } - - /** - * Create an instance of {@link ELTextType } - * - */ - public ELTextType createELTextType() { - return new ELTextType(); - } - - /** - * Create an instance of {@link VERTRAGSPERSONType } - * - */ - public VERTRAGSPERSONType createVERTRAGSPERSONType() { - return new VERTRAGSPERSONType(); - } - - /** - * Create an instance of {@link VERSOBJEKTType } - * - */ - public VERSOBJEKTType createVERSOBJEKTType() { - return new VERSOBJEKTType(); - } - - /** - * Create an instance of {@link SPARTEType } - * - */ - public SPARTEType createSPARTEType() { - return new SPARTEType(); - } - - /** - * Create an instance of {@link SCHADENType } - * - */ - public SCHADENType createSCHADENType() { - return new SCHADENType(); - } - - /** - * Create an instance of {@link PROVISIONType } - * - */ - public PROVISIONType createPROVISIONType() { - return new PROVISIONType(); - } - - /** - * Create an instance of {@link MAHNUNGType } - * - */ - public MAHNUNGType createMAHNUNGType() { - return new MAHNUNGType(); - } - - /** - * Create an instance of {@link VERTRAGSFONDSType } - * - */ - public VERTRAGSFONDSType createVERTRAGSFONDSType() { - return new VERTRAGSFONDSType(); - } - - /** - * Create an instance of {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType createNATUERLICHEPERSONType() { - return new NATUERLICHEPERSONType(); - } - - /** - * Create an instance of {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType createSONSTIGEPERSONType() { - return new SONSTIGEPERSONType(); - } - - /** - * Create an instance of {@link VERSPERSONType } - * - */ - public VERSPERSONType createVERSPERSONType() { - return new VERSPERSONType(); - } - - /** - * Create an instance of {@link VERSKFZ } - * - */ - public VERSKFZ createVERSKFZ() { - return new VERSKFZ(); - } - - /** - * Create an instance of {@link VERSKFZType } - * - */ - public VERSKFZType createVERSKFZType() { - return new VERSKFZType(); - } - - /** - * Create an instance of {@link VERSSACHEType } - * - */ - public VERSSACHEType createVERSSACHEType() { - return new VERSSACHEType(); - } - - /** - * Create an instance of {@link RISIKOType } - * - */ - public RISIKOType createRISIKOType() { - return new RISIKOType(); - } - - /** - * Create an instance of {@link FONDSType } - * - */ - public FONDSType createFONDSType() { - return new FONDSType(); - } - - /** - * Create an instance of {@link PORTFOLIO } - * - */ - public PORTFOLIO createPORTFOLIO() { - return new PORTFOLIO(); - } - - /** - * Create an instance of {@link PORTFOLIOTYPE } - * - */ - public PORTFOLIOTYPE createPORTFOLIOTYPE() { - return new PORTFOLIOTYPE(); - } - - /** - * Create an instance of {@link SCHADENBETEILIGTERType } - * - */ - public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() { - return new SCHADENBETEILIGTERType(); - } - - /** - * Create an instance of {@link GESCHAEDIGTESOBJEKTType } - * - */ - public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() { - return new GESCHAEDIGTESOBJEKTType(); - } - - /** - * Create an instance of {@link ZAHLUNGType } - * - */ - public ZAHLUNGType createZAHLUNGType() { - return new ZAHLUNGType(); - } - - /** - * Create an instance of {@link ELGewinnbeteiligungType } - * - */ - public ELGewinnbeteiligungType createELGewinnbeteiligungType() { - return new ELGewinnbeteiligungType(); - } - - /** - * Create an instance of {@link ELGrenzwertType } - * - */ - public ELGrenzwertType createELGrenzwertType() { - return new ELGrenzwertType(); - } - - /** - * Create an instance of {@link ELIndexType } - * - */ - public ELIndexType createELIndexType() { - return new ELIndexType(); - } - - /** - * Create an instance of {@link ELLegitimationType } - * - */ - public ELLegitimationType createELLegitimationType() { - return new ELLegitimationType(); - } - - /** - * Create an instance of {@link ELObjektType } - * - */ - public ELObjektType createELObjektType() { - return new ELObjektType(); - } - - /** - * Create an instance of {@link ELObjektdatenType } - * - */ - public ELObjektdatenType createELObjektdatenType() { - return new ELObjektdatenType(); - } - - /** - * Create an instance of {@link ELFlaecheType } - * - */ - public ELFlaecheType createELFlaecheType() { - return new ELFlaecheType(); - } - - /** - * Create an instance of {@link ELRenteType } - * - */ - public ELRenteType createELRenteType() { - return new ELRenteType(); - } - - /** - * Create an instance of {@link ELSteuerType } - * - */ - public ELSteuerType createELSteuerType() { - return new ELSteuerType(); - } - - /** - * Create an instance of {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType createELVersicherungssummeType() { - return new ELVersicherungssummeType(); - } - - /** - * Create an instance of {@link ELZeitraumType } - * - */ - public ELZeitraumType createELZeitraumType() { - return new ELZeitraumType(); - } - - /** - * Create an instance of {@link ELKFZKennzeichenType } - * - */ - public ELKFZKennzeichenType createELKFZKennzeichenType() { - return new ELKFZKennzeichenType(); - } - - /** - * Create an instance of {@link ADRESSEType } - * - */ - public ADRESSEType createADRESSEType() { - return new ADRESSEType(); - } - - /** - * 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") - public JAXBElement createELKommunikation(ELKommunikationType value) { - return new JAXBElement(_ELKommunikation_QNAME, ELKommunikationType.class, null, value); - } - - /** - * 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") - public JAXBElement createKLAUSEL(KLAUSELType value) { - return new JAXBElement(_KLAUSEL_QNAME, KLAUSELType.class, null, value); - } - - /** - * 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") - public JAXBElement createLOESCHANSTOSS(LOESCHANSTOSSType value) { - return new JAXBElement(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MIGRATIONSINFORMATIONType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link MIGRATIONSINFORMATIONType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds20", name = "MIGRATIONSINFORMATION") - public JAXBElement createMIGRATIONSINFORMATION(MIGRATIONSINFORMATIONType value) { - return new JAXBElement(_MIGRATIONSINFORMATION_QNAME, MIGRATIONSINFORMATIONType.class, null, value); - } - - /** - * 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") - public JAXBElement createPERSON(PERSONType value) { - return new JAXBElement(_PERSON_QNAME, PERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createELAntrag(ELAntragType value) { - return new JAXBElement(_ELAntrag_QNAME, ELAntragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELAnzahl(ELAnzahlType value) { - return new JAXBElement(_ELAnzahl_QNAME, ELAnzahlType.class, null, value); - } - - /** - * 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") - public JAXBElement createELBetrag(ELBetragType value) { - return new JAXBElement(_ELBetrag_QNAME, ELBetragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELBezugsberechtigung(ELBezugsberechtigungType value) { - return new JAXBElement(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELEinstufung(ELEinstufungType value) { - return new JAXBElement(_ELEinstufung_QNAME, ELEinstufungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELEntscheidungsfrage(ELEntscheidungsfrageType value) { - return new JAXBElement(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value); - } - - /** - * 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") - public JAXBElement createELIdentifizierung(ELIdentifizierungType value) { - return new JAXBElement(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELKlausel(ELKlauselType value) { - return new JAXBElement(_ELKlausel_QNAME, ELKlauselType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPolizzennummer(ELPolizzennummerType value) { - return new JAXBElement(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPraemienfreistellung(ELPraemienfreistellungType value) { - return new JAXBElement(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELPraemienkorrektur(ELPraemienkorrekturType value) { - return new JAXBElement(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRahmenvereinbarung(ELRahmenvereinbarungType value) { - return new JAXBElement(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRahmenvertrag(ELRahmenvertragType value) { - return new JAXBElement(_ELRahmenvertrag_QNAME, ELRahmenvertragType.class, null, value); - } - - /** - * 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") - public JAXBElement createELText(ELTextType value) { - return new JAXBElement(_ELText_QNAME, ELTextType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERTRAGSPERSON(VERTRAGSPERSONType value) { - return new JAXBElement(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSOBJEKT(VERSOBJEKTType value) { - return new JAXBElement(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value); - } - - /** - * 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") - public JAXBElement createSPARTE(SPARTEType value) { - return new JAXBElement(_SPARTE_QNAME, SPARTEType.class, null, value); - } - - /** - * 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") - public JAXBElement createSCHADEN(SCHADENType value) { - return new JAXBElement(_SCHADEN_QNAME, SCHADENType.class, null, value); - } - - /** - * 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") - public JAXBElement createPROVISION(PROVISIONType value) { - return new JAXBElement(_PROVISION_QNAME, PROVISIONType.class, null, value); - } - - /** - * 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") - public JAXBElement createMAHNUNG(MAHNUNGType value) { - return new JAXBElement(_MAHNUNG_QNAME, MAHNUNGType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERTRAGSFONDS(VERTRAGSFONDSType value) { - return new JAXBElement(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value); - } - - /** - * 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") - public JAXBElement createNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - return new JAXBElement(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createSONSTIGEPERSON(SONSTIGEPERSONType value) { - return new JAXBElement(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSPERSON(VERSPERSONType value) { - return new JAXBElement(_VERSPERSON_QNAME, VERSPERSONType.class, null, value); - } - - /** - * 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") - public JAXBElement createVERSSACHE(VERSSACHEType value) { - return new JAXBElement(_VERSSACHE_QNAME, VERSSACHEType.class, null, value); - } - - /** - * 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") - public JAXBElement createRISIKO(RISIKOType value) { - return new JAXBElement(_RISIKO_QNAME, RISIKOType.class, null, value); - } - - /** - * 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") - public JAXBElement createFONDS(FONDSType value) { - return new JAXBElement(_FONDS_QNAME, FONDSType.class, null, value); - } - - /** - * 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") - public JAXBElement createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) { - return new JAXBElement(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value); - } - - /** - * 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") - public JAXBElement createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) { - return new JAXBElement(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value); - } - - /** - * 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") - public JAXBElement createZAHLUNG(ZAHLUNGType value) { - return new JAXBElement(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value); - } - - /** - * 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") - public JAXBElement createELGewinnbeteiligung(ELGewinnbeteiligungType value) { - return new JAXBElement(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value); - } - - /** - * 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") - public JAXBElement createELGrenzwert(ELGrenzwertType value) { - return new JAXBElement(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value); - } - - /** - * 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") - public JAXBElement createELIndex(ELIndexType value) { - return new JAXBElement(_ELIndex_QNAME, ELIndexType.class, null, value); - } - - /** - * 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") - public JAXBElement createELLegitimation(ELLegitimationType value) { - return new JAXBElement(_ELLegitimation_QNAME, ELLegitimationType.class, null, value); - } - - /** - * 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") - public JAXBElement createELObjekt(ELObjektType value) { - return new JAXBElement(_ELObjekt_QNAME, ELObjektType.class, null, value); - } - - /** - * 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") - public JAXBElement createELObjektdaten(ELObjektdatenType value) { - return new JAXBElement(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value); - } - - /** - * 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") - public JAXBElement createELFlaeche(ELFlaecheType value) { - return new JAXBElement(_ELFlaeche_QNAME, ELFlaecheType.class, null, value); - } - - /** - * 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") - public JAXBElement createELRente(ELRenteType value) { - return new JAXBElement(_ELRente_QNAME, ELRenteType.class, null, value); - } - - /** - * 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") - public JAXBElement createELSteuer(ELSteuerType value) { - return new JAXBElement(_ELSteuer_QNAME, ELSteuerType.class, null, value); - } - - /** - * 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") - public JAXBElement createELVersicherungssumme(ELVersicherungssummeType value) { - return new JAXBElement(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value); - } - - /** - * 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") - public JAXBElement createELZeitraum(ELZeitraumType value) { - return new JAXBElement(_ELZeitraum_QNAME, ELZeitraumType.class, null, value); - } - - /** - * 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") - public JAXBElement createELKFZKennzeichen(ELKFZKennzeichenType value) { - return new JAXBElement(_ELKFZKennzeichen_QNAME, ELKFZKennzeichenType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PAKET.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PAKET.java deleted file mode 100644 index 8cd64d1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PAKET.java +++ /dev/null @@ -1,773 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
- *           <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <group ref="{urn:omds20}bestand"/>
- *       </choice>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="MaklerID" use="required" type="{urn:omds20}MaklerID_Type" />
- *       <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
- *       <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
- *       <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
- *       <attribute name="VUVersion">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="6"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DVRNrAbs" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="8"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PaketKommentar">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SprachCd" type="{urn:omds20}SprachCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versunternehmen", - "schluesselart", - "klausel", - "loeschanstoss", - "migrationsinformation", - "person", - "vertrag", - "schaden", - "provision", - "mahnung", - "vertragsfonds" -}) -@XmlRootElement(name = "PAKET") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PAKET { - - @XmlElement(name = "VERS_UNTERNEHMEN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versunternehmen; - @XmlElement(name = "SCHLUESSELART") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schluesselart; - @XmlElement(name = "KLAUSEL") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List klausel; - @XmlElement(name = "LOESCHANSTOSS") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List loeschanstoss; - @XmlElement(name = "MIGRATIONSINFORMATION") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List migrationsinformation; - @XmlElement(name = "PERSON") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List person; - @XmlElement(name = "VERTRAG") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertrag; - @XmlElement(name = "SCHADEN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schaden; - @XmlElement(name = "PROVISION") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List provision; - @XmlElement(name = "MAHNUNG") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List mahnung; - @XmlElement(name = "VERTRAGSFONDS") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertragsfonds; - @XmlAttribute(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlAttribute(name = "MaklerID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String maklerID; - @XmlAttribute(name = "PaketZpktErstell", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar paketZpktErstell; - @XmlAttribute(name = "PaketZpktLetztErstell") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar paketZpktLetztErstell; - @XmlAttribute(name = "PaketInhCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PaketInhCdType paketInhCd; - @XmlAttribute(name = "PaketUmfCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PaketUmfCdType paketUmfCd; - @XmlAttribute(name = "OMDSVersion", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String omdsVersion; - @XmlAttribute(name = "VUVersion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuVersion; - @XmlAttribute(name = "DVRNrAbs", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dvrNrAbs; - @XmlAttribute(name = "PaketKommentar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String paketKommentar; - @XmlAttribute(name = "SprachCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SprachCdType sprachCd; - - /** - * Gets the value of the versunternehmen property. - * - *

- * 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 set method for the versunternehmen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSUNTERNEHMEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSUNTERNEHMEN } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVERSUNTERNEHMEN() { - if (versunternehmen == null) { - versunternehmen = new ArrayList(); - } - return this.versunternehmen; - } - - /** - * Gets the value of the schluesselart property. - * - *

- * 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 set method for the schluesselart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSELART().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSELART } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSCHLUESSELART() { - if (schluesselart == null) { - schluesselart = new ArrayList(); - } - return this.schluesselart; - } - - /** - * Gets the value of the klausel property. - * - *

- * 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 set method for the klausel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKLAUSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KLAUSELType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKLAUSEL() { - if (klausel == null) { - klausel = new ArrayList(); - } - return this.klausel; - } - - /** - * Gets the value of the loeschanstoss property. - * - *

- * 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 set method for the loeschanstoss property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLOESCHANSTOSS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LOESCHANSTOSSType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getLOESCHANSTOSS() { - if (loeschanstoss == null) { - loeschanstoss = new ArrayList(); - } - return this.loeschanstoss; - } - - /** - * Gets the value of the migrationsinformation property. - * - *

- * 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 set method for the migrationsinformation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMIGRATIONSINFORMATION().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MIGRATIONSINFORMATIONType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMIGRATIONSINFORMATION() { - if (migrationsinformation == null) { - migrationsinformation = new ArrayList(); - } - return this.migrationsinformation; - } - - /** - * Gets the value of the person property. - * - *

- * 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 set method for the person property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PERSONType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPERSON() { - if (person == null) { - person = new ArrayList(); - } - return this.person; - } - - /** - * Gets the value of the vertrag property. - * - *

- * 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 set method for the vertrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAG } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVERTRAG() { - if (vertrag == null) { - vertrag = new ArrayList(); - } - return this.vertrag; - } - - /** - * Gets the value of the schaden property. - * - *

- * 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 set method for the schaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSCHADEN() { - if (schaden == null) { - schaden = new ArrayList(); - } - return this.schaden; - } - - /** - * Gets the value of the provision property. - * - *

- * 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 set method for the provision property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPROVISION().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PROVISIONType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPROVISION() { - if (provision == null) { - provision = new ArrayList(); - } - return this.provision; - } - - /** - * Gets the value of the mahnung property. - * - *

- * 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 set method for the mahnung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMAHNUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MAHNUNGType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMAHNUNG() { - if (mahnung == null) { - mahnung = new ArrayList(); - } - return this.mahnung; - } - - /** - * Gets the value of the vertragsfonds property. - * - *

- * 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 set method for the vertragsfonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSFONDSType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVERTRAGSFONDS() { - if (vertragsfonds == null) { - vertragsfonds = new ArrayList(); - } - return this.vertragsfonds; - } - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Ruft den Wert der paketZpktErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getPaketZpktErstell() { - return paketZpktErstell; - } - - /** - * Legt den Wert der paketZpktErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPaketZpktErstell(XMLGregorianCalendar value) { - this.paketZpktErstell = value; - } - - /** - * Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getPaketZpktLetztErstell() { - return paketZpktLetztErstell; - } - - /** - * Legt den Wert der paketZpktLetztErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPaketZpktLetztErstell(XMLGregorianCalendar value) { - this.paketZpktLetztErstell = value; - } - - /** - * Ruft den Wert der paketInhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketInhCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PaketInhCdType getPaketInhCd() { - return paketInhCd; - } - - /** - * Legt den Wert der paketInhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketInhCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPaketInhCd(PaketInhCdType value) { - this.paketInhCd = value; - } - - /** - * Ruft den Wert der paketUmfCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PaketUmfCdType getPaketUmfCd() { - return paketUmfCd; - } - - /** - * Legt den Wert der paketUmfCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPaketUmfCd(PaketUmfCdType value) { - this.paketUmfCd = value; - } - - /** - * Ruft den Wert der omdsVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOMDSVersion() { - return omdsVersion; - } - - /** - * Legt den Wert der omdsVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOMDSVersion(String value) { - this.omdsVersion = value; - } - - /** - * Ruft den Wert der vuVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUVersion() { - return vuVersion; - } - - /** - * Legt den Wert der vuVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUVersion(String value) { - this.vuVersion = value; - } - - /** - * Ruft den Wert der dvrNrAbs-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDVRNrAbs() { - return dvrNrAbs; - } - - /** - * Legt den Wert der dvrNrAbs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDVRNrAbs(String value) { - this.dvrNrAbs = value; - } - - /** - * Ruft den Wert der paketKommentar-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPaketKommentar() { - return paketKommentar; - } - - /** - * Legt den Wert der paketKommentar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPaketKommentar(String value) { - this.paketKommentar = value; - } - - /** - * Ruft den Wert der sprachCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SprachCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SprachCdType getSprachCd() { - return sprachCd; - } - - /** - * Legt den Wert der sprachCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SprachCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSprachCd(SprachCdType value) { - this.sprachCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PERSONType.java deleted file mode 100644 index 3d7ccf1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PERSONType.java +++ /dev/null @@ -1,491 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Personennr">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PERSON_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PERSONType { - - @XmlElement(name = "NATUERLICHE_PERSON") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - @XmlAttribute(name = "PersArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersArtCdType persArtCd; - @XmlAttribute(name = "Pac") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long pac; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlAttribute(name = "Ort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ort; - @XmlAttribute(name = "Strasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String strasse; - @XmlAttribute(name = "Hausnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hausnr; - @XmlAttribute(name = "Zusatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zusatz; - @XmlAttribute(name = "AdressID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDVU; - @XmlAttribute(name = "AdressID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDMakler; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Ruft den Wert der pac-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getPac() { - return pac; - } - - /** - * Legt den Wert der pac-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPac(Long value) { - this.pac = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der ort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrt() { - return ort; - } - - /** - * Legt den Wert der ort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrt(String value) { - this.ort = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der hausnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHausnr() { - return hausnr; - } - - /** - * Legt den Wert der hausnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHausnr(String value) { - this.hausnr = value; - } - - /** - * Ruft den Wert der zusatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZusatz() { - return zusatz; - } - - /** - * Legt den Wert der zusatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusatz(String value) { - this.zusatz = value; - } - - /** - * Ruft den Wert der adressIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDVU() { - return adressIDVU; - } - - /** - * Legt den Wert der adressIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDVU(String value) { - this.adressIDVU = value; - } - - /** - * Ruft den Wert der adressIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDMakler() { - return adressIDMakler; - } - - /** - * Legt den Wert der adressIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDMakler(String value) { - this.adressIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIO.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIO.java deleted file mode 100644 index e57303fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIO.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}PORTFOLIO_TYPE">
- *       <sequence>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "fonds" -}) -@XmlRootElement(name = "PORTFOLIO") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PORTFOLIO - extends PORTFOLIOTYPE -{ - - @XmlElement(name = "FONDS") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List fonds; - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIOTYPE.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIOTYPE.java deleted file mode 100644 index 890b940e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PORTFOLIOTYPE.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PORTFOLIO_TYPE complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PORTFOLIO_TYPE">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
- *       <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PORTFOLIO_TYPE") -@XmlSeeAlso({ - PORTFOLIO.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PORTFOLIOTYPE { - - @XmlAttribute(name = "PortfolioID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String portfolioID; - @XmlAttribute(name = "ISIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String isin; - @XmlAttribute(name = "WKN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der portfolioID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPortfolioID() { - return portfolioID; - } - - /** - * Legt den Wert der portfolioID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPortfolioID(String value) { - this.portfolioID = value; - } - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWKN(String value) { - this.wkn = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PROVISIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PROVISIONType.java deleted file mode 100644 index 03e5d2ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PROVISIONType.java +++ /dev/null @@ -1,600 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PROVISION_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PROVISION_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ProvisionsID" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ProvVon" type="{urn:omds20}Datum" />
- *       <attribute name="ProvBis" type="{urn:omds20}Datum" />
- *       <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
- *       <attribute name="ProvTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
- *       <attribute name="ProvSatz" type="{urn:omds20}decimal" />
- *       <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ProvArtText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PROVISION_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PROVISIONType { - - @XmlAttribute(name = "ProvisionsID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provisionsID; - @XmlAttribute(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - @XmlAttribute(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlAttribute(name = "VerbandSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenErweiterung; - @XmlAttribute(name = "BuchDat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar buchDat; - @XmlAttribute(name = "ProvVon") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar provVon; - @XmlAttribute(name = "ProvBis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar provBis; - @XmlAttribute(name = "ProvArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provArtCd; - @XmlAttribute(name = "ProvTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provTxt; - @XmlAttribute(name = "ProvGrdlg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal provGrdlg; - @XmlAttribute(name = "ProvSatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal provSatz; - @XmlAttribute(name = "ProvBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal provBetrag; - @XmlAttribute(name = "WaehrungsCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ProvArtText") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provArtText; - @XmlAttribute(name = "Vorpolizze") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vorpolizze; - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der buchDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBuchDat() { - return buchDat; - } - - /** - * Legt den Wert der buchDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBuchDat(XMLGregorianCalendar value) { - this.buchDat = value; - } - - /** - * Ruft den Wert der provVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getProvVon() { - return provVon; - } - - /** - * Legt den Wert der provVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvVon(XMLGregorianCalendar value) { - this.provVon = value; - } - - /** - * Ruft den Wert der provBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getProvBis() { - return provBis; - } - - /** - * Legt den Wert der provBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvBis(XMLGregorianCalendar value) { - this.provBis = value; - } - - /** - * Ruft den Wert der provArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvArtCd() { - return provArtCd; - } - - /** - * Legt den Wert der provArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvArtCd(String value) { - this.provArtCd = value; - } - - /** - * Ruft den Wert der provTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvTxt() { - return provTxt; - } - - /** - * Legt den Wert der provTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvTxt(String value) { - this.provTxt = value; - } - - /** - * Ruft den Wert der provGrdlg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getProvGrdlg() { - return provGrdlg; - } - - /** - * Legt den Wert der provGrdlg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvGrdlg(BigDecimal value) { - this.provGrdlg = value; - } - - /** - * Ruft den Wert der provSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getProvSatz() { - return provSatz; - } - - /** - * Legt den Wert der provSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvSatz(BigDecimal value) { - this.provSatz = value; - } - - /** - * Ruft den Wert der provBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getProvBetrag() { - return provBetrag; - } - - /** - * Legt den Wert der provBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvBetrag(BigDecimal value) { - this.provBetrag = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der provArtText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvArtText() { - return provArtText; - } - - /** - * Legt den Wert der provArtText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvArtText(String value) { - this.provArtText = value; - } - - /** - * Ruft den Wert der vorpolizze-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVorpolizze() { - return vorpolizze; - } - - /** - * Legt den Wert der vorpolizze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorpolizze(String value) { - this.vorpolizze = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketInhCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketInhCdType.java deleted file mode 100644 index ac642da5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketInhCdType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketInhCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PaketInhCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AI"/>
- *     <enumeration value="VF"/>
- *     <enumeration value="VI"/>
- *     <enumeration value="VK"/>
- *     <enumeration value="VM"/>
- *     <enumeration value="VP"/>
- *     <enumeration value="VS"/>
- *     <enumeration value="VV"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketInhCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PaketInhCdType { - - - /** - * Allgem. Initialbestand (generelle Schlüssel) - * - */ - AI, - - /** - * VU Fondsbestand - * - */ - VF, - - /** - * VU Initialbestand (VU Schlüssel) - * - */ - VI, - - /** - * VU Mahn/Klagebestand - * - */ - VK, - - /** - * VU Mischbestand - * - */ - VM, - - /** - * VU Provisionen - * - */ - VP, - - /** - * VU Schadenbestand - * - */ - VS, - - /** - * VU Vertragsbestand - * - */ - VV; - - public String value() { - return name(); - } - - public static PaketInhCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketUmfCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketUmfCdType.java deleted file mode 100644 index b6b4c00f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PaketUmfCdType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketUmfCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PaketUmfCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="D"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketUmfCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PaketUmfCdType { - - - /** - * Differenz - * - */ - D, - - /** - * gesamt - * - */ - G; - - public String value() { - return name(); - } - - public static PaketUmfCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PersArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PersArtCdType.java deleted file mode 100644 index bdc23339..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PersArtCdType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PersArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="N"/>
- *     <enumeration value="S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PersArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PersArtCdType { - - - /** - * natürliche Person - * - */ - N, - - /** - * sonstige Person - * - */ - S; - - public String value() { - return name(); - } - - public static PersArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PolArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PolArtCdType.java deleted file mode 100644 index 4e4ac586..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PolArtCdType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="N"/>
- *     <enumeration value="V"/>
- *     <enumeration value="X"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PolArtCdType { - - - /** - * Ersatzpolizze bei Ersatz/Konv. - * - */ - E, - - /** - * Nachversicherung - * - */ - N, - - /** - * Vorpolizze bei Ersatz/Konv. - * - */ - V, - - /** - * Vorpolizze bei Migration - * - */ - X; - - public String value() { - return name(); - } - - public static PolArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PraemFristCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PraemFristCdType.java deleted file mode 100644 index fa89566f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/PraemFristCdType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PraemFristCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PraemFristCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="J"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PraemFristCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PraemFristCdType { - - - /** - * Einmal - * - */ - E, - - /** - * Jahr - * - */ - J; - - public String value() { - return name(); - } - - public static PraemFristCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RISIKOType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RISIKOType.java deleted file mode 100644 index 9b60818d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RISIKOType.java +++ /dev/null @@ -1,282 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RISIKO_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RISIKO_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Objekt"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="RisikoArtCd" use="required" type="{urn:omds20}RisikoArtCd_Type" />
- *       <attribute name="RisikoBez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemFristCd" type="{urn:omds20}PraemFristCd_Type" />
- *       <attribute name="PraemieNto" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RISIKO_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RISIKOType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Objekt", type = ELObjektType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlAttribute(name = "RisikoLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int risikoLfnr; - @XmlAttribute(name = "RisikoArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RisikoArtCdType risikoArtCd; - @XmlAttribute(name = "RisikoBez", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String risikoBez; - @XmlAttribute(name = "PraemFristCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PraemFristCdType praemFristCd; - @XmlAttribute(name = "PraemieNto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieNto; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIdentifizierungType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELObjektType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELVersicherungssummeType } - * {@link ELZeitraumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Ruft den Wert der risikoLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getRisikoLfnr() { - return risikoLfnr; - } - - /** - * Legt den Wert der risikoLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoLfnr(int value) { - this.risikoLfnr = value; - } - - /** - * Ruft den Wert der risikoArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RisikoArtCdType getRisikoArtCd() { - return risikoArtCd; - } - - /** - * Legt den Wert der risikoArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoArtCd(RisikoArtCdType value) { - this.risikoArtCd = value; - } - - /** - * Ruft den Wert der risikoBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRisikoBez() { - return risikoBez; - } - - /** - * Legt den Wert der risikoBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoBez(String value) { - this.risikoBez = value; - } - - /** - * Ruft den Wert der praemFristCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemFristCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PraemFristCdType getPraemFristCd() { - return praemFristCd; - } - - /** - * Legt den Wert der praemFristCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemFristCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemFristCd(PraemFristCdType value) { - this.praemFristCd = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RisikoArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RisikoArtCdType.java deleted file mode 100644 index 501a5ee6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/RisikoArtCdType.java +++ /dev/null @@ -1,1126 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AH1"/>
- *     <enumeration value="AK1"/>
- *     <enumeration value="AK2"/>
- *     <enumeration value="AS1"/>
- *     <enumeration value="AS2"/>
- *     <enumeration value="AS3"/>
- *     <enumeration value="AS4"/>
- *     <enumeration value="AU1"/>
- *     <enumeration value="AU2"/>
- *     <enumeration value="AU3"/>
- *     <enumeration value="AU4"/>
- *     <enumeration value="AU5"/>
- *     <enumeration value="AV1"/>
- *     <enumeration value="BA1"/>
- *     <enumeration value="BD1"/>
- *     <enumeration value="B01"/>
- *     <enumeration value="B02"/>
- *     <enumeration value="B03"/>
- *     <enumeration value="B04"/>
- *     <enumeration value="B05"/>
- *     <enumeration value="B06"/>
- *     <enumeration value="B11"/>
- *     <enumeration value="BL1"/>
- *     <enumeration value="BL2"/>
- *     <enumeration value="E01"/>
- *     <enumeration value="E02"/>
- *     <enumeration value="EC1"/>
- *     <enumeration value="F01"/>
- *     <enumeration value="F02"/>
- *     <enumeration value="F03"/>
- *     <enumeration value="F04"/>
- *     <enumeration value="F05"/>
- *     <enumeration value="G01"/>
- *     <enumeration value="G02"/>
- *     <enumeration value="H01"/>
- *     <enumeration value="H02"/>
- *     <enumeration value="H03"/>
- *     <enumeration value="H04"/>
- *     <enumeration value="H05"/>
- *     <enumeration value="H06"/>
- *     <enumeration value="H07"/>
- *     <enumeration value="H08"/>
- *     <enumeration value="H99"/>
- *     <enumeration value="HH1"/>
- *     <enumeration value="K01"/>
- *     <enumeration value="K02"/>
- *     <enumeration value="K03"/>
- *     <enumeration value="K04"/>
- *     <enumeration value="K09"/>
- *     <enumeration value="K10"/>
- *     <enumeration value="K99"/>
- *     <enumeration value="L01"/>
- *     <enumeration value="L02"/>
- *     <enumeration value="L03"/>
- *     <enumeration value="L04"/>
- *     <enumeration value="L05"/>
- *     <enumeration value="L06"/>
- *     <enumeration value="L07"/>
- *     <enumeration value="L08"/>
- *     <enumeration value="L09"/>
- *     <enumeration value="L10"/>
- *     <enumeration value="L11"/>
- *     <enumeration value="L99"/>
- *     <enumeration value="LS1"/>
- *     <enumeration value="LW1"/>
- *     <enumeration value="M01"/>
- *     <enumeration value="M02"/>
- *     <enumeration value="M03"/>
- *     <enumeration value="M04"/>
- *     <enumeration value="M05"/>
- *     <enumeration value="M06"/>
- *     <enumeration value="M07"/>
- *     <enumeration value="R01"/>
- *     <enumeration value="R02"/>
- *     <enumeration value="R03"/>
- *     <enumeration value="R04"/>
- *     <enumeration value="R05"/>
- *     <enumeration value="R06"/>
- *     <enumeration value="R07"/>
- *     <enumeration value="R08"/>
- *     <enumeration value="R09"/>
- *     <enumeration value="R10"/>
- *     <enumeration value="R11"/>
- *     <enumeration value="R12"/>
- *     <enumeration value="R13"/>
- *     <enumeration value="R14"/>
- *     <enumeration value="R15"/>
- *     <enumeration value="R16"/>
- *     <enumeration value="R99"/>
- *     <enumeration value="RE1"/>
- *     <enumeration value="RE2"/>
- *     <enumeration value="RE3"/>
- *     <enumeration value="RE4"/>
- *     <enumeration value="S01"/>
- *     <enumeration value="S12"/>
- *     <enumeration value="S13"/>
- *     <enumeration value="S14"/>
- *     <enumeration value="S15"/>
- *     <enumeration value="S16"/>
- *     <enumeration value="S17"/>
- *     <enumeration value="S99"/>
- *     <enumeration value="ST1"/>
- *     <enumeration value="T01"/>
- *     <enumeration value="T02"/>
- *     <enumeration value="T03"/>
- *     <enumeration value="T04"/>
- *     <enumeration value="T05"/>
- *     <enumeration value="T06"/>
- *     <enumeration value="T07"/>
- *     <enumeration value="T08"/>
- *     <enumeration value="T09"/>
- *     <enumeration value="T11"/>
- *     <enumeration value="T12"/>
- *     <enumeration value="T13"/>
- *     <enumeration value="T20"/>
- *     <enumeration value="T21"/>
- *     <enumeration value="T22"/>
- *     <enumeration value="T23"/>
- *     <enumeration value="T99"/>
- *     <enumeration value="TI1"/>
- *     <enumeration value="U01"/>
- *     <enumeration value="U02"/>
- *     <enumeration value="U03"/>
- *     <enumeration value="U04"/>
- *     <enumeration value="U05"/>
- *     <enumeration value="U06"/>
- *     <enumeration value="U09"/>
- *     <enumeration value="U10"/>
- *     <enumeration value="U11"/>
- *     <enumeration value="U12"/>
- *     <enumeration value="U13"/>
- *     <enumeration value="U14"/>
- *     <enumeration value="U15"/>
- *     <enumeration value="U16"/>
- *     <enumeration value="U17"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum RisikoArtCdType { - - - /** - * KFZ-Haftpflicht - * - */ - @XmlEnumValue("AH1") - AH_1("AH1"), - - /** - * Voll- und Gross-Schadenkasko - * - */ - @XmlEnumValue("AK1") - AK_1("AK1"), - - /** - * Teilkasko - * - */ - @XmlEnumValue("AK2") - AK_2("AK2"), - - /** - * KFZ-Assistance - * - */ - @XmlEnumValue("AS1") - AS_1("AS1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("AS2") - AS_2("AS2"), - - /** - * Wohn-Assistance - * - */ - @XmlEnumValue("AS3") - AS_3("AS3"), - - /** - * Unfall-Assistance - * - */ - @XmlEnumValue("AS4") - AS_4("AS4"), - - /** - * Insassen-Unfall - * - */ - @XmlEnumValue("AU1") - AU_1("AU1"), - - /** - * Insassen-Unfall Todesfall - * - */ - @XmlEnumValue("AU2") - AU_2("AU2"), - - /** - * Insassen-Unfall Invalidität - * - */ - @XmlEnumValue("AU3") - AU_3("AU3"), - - /** - * Insassen-Unfall Taggeld - * - */ - @XmlEnumValue("AU4") - AU_4("AU4"), - - /** - * Insassen-Unfall Heilkosten - * - */ - @XmlEnumValue("AU5") - AU_5("AU5"), - - /** - * Abfertigungs-Versicherung - * - */ - @XmlEnumValue("AV1") - AV_1("AV1"), - - /** - * Bausparen Ansparen - * - */ - @XmlEnumValue("BA1") - BA_1("BA1"), - - /** - * Bausparen Darlehen - * - */ - @XmlEnumValue("BD1") - BD_1("BD1"), - - /** - * Betr.Unterbrechung-Feuer-Zivil - * - */ - @XmlEnumValue("B01") - B_01("B01"), - - /** - * Betr.Unterbrechung Feuer-Industrie - * - */ - @XmlEnumValue("B02") - B_02("B02"), - - /** - * Betr.Unterbrechung-EC - * - */ - @XmlEnumValue("B03") - B_03("B03"), - - /** - * Betr.Unterbrechung-Maschinenbruch - * - */ - @XmlEnumValue("B04") - B_04("B04"), - - /** - * Betr.Unterbrechung-Elementarschaden - * - */ - @XmlEnumValue("B05") - B_05("B05"), - - /** - * Betr.Unterbrechung f.freiber. Tätige - * - */ - @XmlEnumValue("B06") - B_06("B06"), - - /** - * Veranstaltungen - * - */ - @XmlEnumValue("B11") - B_11("B11"), - - /** - * Blitzschlag - * - */ - @XmlEnumValue("BL1") - BL_1("BL1"), - - /** - * indirekter Blitzschlag - * - */ - @XmlEnumValue("BL2") - BL_2("BL2"), - - /** - * Einbruch-Diebstahl - * - */ - @XmlEnumValue("E01") - E_01("E01"), - - /** - * Kassenboten - * - */ - @XmlEnumValue("E02") - E_02("E02"), - - /** - * Extended Coverage - * - */ - @XmlEnumValue("EC1") - EC_1("EC1"), - - /** - * Feuer-Zivil - * - */ - @XmlEnumValue("F01") - F_01("F01"), - - /** - * Feuer-Landwirtschaft - * - */ - @XmlEnumValue("F02") - F_02("F02"), - - /** - * Feuer-Industrie - * - */ - @XmlEnumValue("F03") - F_03("F03"), - - /** - * Feuer-EC - * - */ - @XmlEnumValue("F04") - F_04("F04"), - - /** - * Waldbrand - * - */ - @XmlEnumValue("F05") - F_05("F05"), - - /** - * Glasbruch privat - * - */ - @XmlEnumValue("G01") - G_01("G01"), - - /** - * Glasbruch Geschäft - * - */ - @XmlEnumValue("G02") - G_02("G02"), - - /** - * Allg.Haftpflicht - * - */ - @XmlEnumValue("H01") - H_01("H01"), - - /** - * Sonder-Haftpflicht - * - */ - @XmlEnumValue("H02") - H_02("H02"), - - /** - * Flug-Haftpflicht - * - */ - @XmlEnumValue("H03") - H_03("H03"), - - /** - * Vermögensschaden - * - */ - @XmlEnumValue("H04") - H_04("H04"), - - /** - * Atom-Haftpflicht - * - */ - @XmlEnumValue("H05") - H_05("H05"), - - /** - * Verkehrs-Haftpflicht - * - */ - @XmlEnumValue("H06") - H_06("H06"), - - /** - * Bauherrn-Haftpflicht - * - */ - @XmlEnumValue("H07") - H_07("H07"), - - /** - * Boots-Haftpflicht - * - */ - @XmlEnumValue("H08") - H_08("H08"), - - /** - * Sonstige Haftpflicht - * - */ - @XmlEnumValue("H99") - H_99("H99"), - - /** - * Haushalt - * - */ - @XmlEnumValue("HH1") - HH_1("HH1"), - - /** - * Spital - * - */ - @XmlEnumValue("K01") - K_01("K01"), - - /** - * Ambulanz - * - */ - @XmlEnumValue("K02") - K_02("K02"), - - /** - * Heilmittel - * - */ - @XmlEnumValue("K03") - K_03("K03"), - - /** - * Taggeld - * - */ - @XmlEnumValue("K04") - K_04("K04"), - - /** - * Reise-KV - * - */ - @XmlEnumValue("K09") - K_09("K09"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("K10") - K_10("K10"), - - /** - * KV sonstige - * - */ - @XmlEnumValue("K99") - K_99("K99"), - - /** - * Leben Kapital - * - */ - @XmlEnumValue("L01") - L_01("L01"), - - /** - * Leben Risiko - * - */ - @XmlEnumValue("L02") - L_02("L02"), - - /** - * Leben Rente - * - */ - @XmlEnumValue("L03") - L_03("L03"), - - /** - * Leben Dread Disease - * - */ - @XmlEnumValue("L04") - L_04("L04"), - - /** - * Leben veranlagungsorientiert - * - */ - @XmlEnumValue("L05") - L_05("L05"), - - /** - * Leben Kreditrestschuld - * - */ - @XmlEnumValue("L06") - L_06("L06"), - - /** - * Leben prämiengefördert - * - */ - @XmlEnumValue("L07") - L_07("L07"), - - /** - * Leben fondgebunden - * - */ - @XmlEnumValue("L08") - L_08("L08"), - - /** - * Berufsunfähigkeit - * - */ - @XmlEnumValue("L09") - L_09("L09"), - - /** - * Erwerbsunfähigkeit - * - */ - @XmlEnumValue("L10") - L_10("L10"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("L11") - L_11("L11"), - - /** - * Leben sonstige - * - */ - @XmlEnumValue("L99") - L_99("L99"), - - /** - * Leasing - * - */ - @XmlEnumValue("LS1") - LS_1("LS1"), - - /** - * Leitungswasser - * - */ - @XmlEnumValue("LW1") - LW_1("LW1"), - - /** - * Maschinenbruch - * - */ - @XmlEnumValue("M01") - M_01("M01"), - - /** - * Maschinen-Montage - * - */ - @XmlEnumValue("M02") - M_02("M02"), - - /** - * Maschinen-Garantie - * - */ - @XmlEnumValue("M03") - M_03("M03"), - - /** - * Elektrogeräte - * - */ - @XmlEnumValue("M04") - M_04("M04"), - - /** - * Computer und Unterhaltungselektronik - * - */ - @XmlEnumValue("M05") - M_05("M05"), - - /** - * Tiefkühltruhen - * - */ - @XmlEnumValue("M06") - M_06("M06"), - - /** - * Haustechnik - * - */ - @XmlEnumValue("M07") - M_07("M07"), - - /** - * Privat Rechtsschutz - * - */ - @XmlEnumValue("R01") - R_01("R01"), - - /** - * Kfz-Rechtsschutz - * - */ - @XmlEnumValue("R02") - R_02("R02"), - - /** - * Firmen-Rechtsschutz - * - */ - @XmlEnumValue("R03") - R_03("R03"), - - /** - * Schadenersatz- und Strafrechtsschutz - * - */ - @XmlEnumValue("R04") - R_04("R04"), - - /** - * Arbeitsgerichtsrechtsschutz - * - */ - @XmlEnumValue("R05") - R_05("R05"), - - /** - * Sozialversicherungsrechtsschutz - * - */ - @XmlEnumValue("R06") - R_06("R06"), - - /** - * Beratungsrechtsschutz - * - */ - @XmlEnumValue("R07") - R_07("R07"), - - /** - * Allgemeiner Vertragsrechtsschutz - * - */ - @XmlEnumValue("R08") - R_08("R08"), - - /** - * Grundstückseigentum- und Mietenrechtsschutz - * - */ - @XmlEnumValue("R09") - R_09("R09"), - - /** - * Erb- und Familienrechtsschutz - * - */ - @XmlEnumValue("R10") - R_10("R10"), - - /** - * Disziplinarverfahren - * - */ - @XmlEnumValue("R11") - R_11("R11"), - - /** - * Disziplinarverfahren für angestellte Ärzte - * - */ - @XmlEnumValue("R12") - R_12("R12"), - - /** - * Vorsatzdelikte - * - */ - @XmlEnumValue("R13") - R_13("R13"), - - /** - * Fahrzeugrechtsschutz - * - */ - @XmlEnumValue("R14") - R_14("R14"), - - /** - * Lenkerrechtsschutz - * - */ - @XmlEnumValue("R15") - R_15("R15"), - - /** - * Fahrzeugvertragsrechtsschutz - * - */ - @XmlEnumValue("R16") - R_16("R16"), - - /** - * Sonstiger Rechtsschutz - * - */ - @XmlEnumValue("R99") - R_99("R99"), - - /** - * Reise-Storno - * - */ - @XmlEnumValue("RE1") - RE_1("RE1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("RE2") - RE_2("RE2"), - - /** - * Reise-Kranken - * - */ - @XmlEnumValue("RE3") - RE_3("RE3"), - - /** - * Reise-Unfall - * - */ - @XmlEnumValue("RE4") - RE_4("RE4"), - - /** - * Kühlgut - * - */ - @XmlEnumValue("S01") - S_01("S01"), - - /** - * Lizenzverlust - * - */ - @XmlEnumValue("S12") - S_12("S12"), - - /** - * Atom-Sach - * - */ - @XmlEnumValue("S13") - S_13("S13"), - - /** - * Bauwesen - * - */ - @XmlEnumValue("S14") - S_14("S14"), - - /** - * Flugkasko - * - */ - @XmlEnumValue("S15") - S_15("S15"), - - /** - * Bootskasko - * - */ - @XmlEnumValue("S16") - S_16("S16"), - - /** - * Grabstätten - * - */ - @XmlEnumValue("S17") - S_17("S17"), - - /** - * sonstige SV - * - */ - @XmlEnumValue("S99") - S_99("S99"), - - /** - * Sturm - * - */ - @XmlEnumValue("ST1") - ST_1("ST1"), - - /** - * Land-Binnenwaren - * - */ - @XmlEnumValue("T01") - T_01("T01"), - - /** - * See - * - */ - @XmlEnumValue("T02") - T_02("T02"), - - /** - * Krieg - * - */ - @XmlEnumValue("T03") - T_03("T03"), - - /** - * Lager - * - */ - @XmlEnumValue("T04") - T_04("T04"), - - /** - * Valoren-Gewerblich - * - */ - @XmlEnumValue("T05") - T_05("T05"), - - /** - * Valoren-Privat - * - */ - @XmlEnumValue("T06") - T_06("T06"), - - /** - * Sportboot-Kasko - * - */ - @XmlEnumValue("T07") - T_07("T07"), - - /** - * Musik-Instrumente - * - */ - @XmlEnumValue("T08") - T_08("T08"), - - /** - * Kunst - * - */ - @XmlEnumValue("T09") - T_09("T09"), - - /** - * Seekasko - * - */ - @XmlEnumValue("T11") - T_11("T11"), - - /** - * Flusskasko - * - */ - @XmlEnumValue("T12") - T_12("T12"), - - /** - * Landkasko - * - */ - @XmlEnumValue("T13") - T_13("T13"), - - /** - * Reisegepäck - * - */ - @XmlEnumValue("T20") - T_20("T20"), - - /** - * Fotoapparate - * - */ - @XmlEnumValue("T21") - T_21("T21"), - - /** - * Film/Sach - * - */ - @XmlEnumValue("T22") - T_22("T22"), - - /** - * Film/Ausfall - * - */ - @XmlEnumValue("T23") - T_23("T23"), - - /** - * Sonstige Transport - * - */ - @XmlEnumValue("T99") - T_99("T99"), - - /** - * Tier - * - */ - @XmlEnumValue("TI1") - TI_1("TI1"), - - /** - * Allg.Unfall - * - */ - @XmlEnumValue("U01") - U_01("U01"), - - /** - * Kollektiv Unfall - * - */ - @XmlEnumValue("U02") - U_02("U02"), - - /** - * Schülerunfall - * - */ - @XmlEnumValue("U03") - U_03("U03"), - - /** - * Volksunfall - * - */ - @XmlEnumValue("U04") - U_04("U04"), - - /** - * Flug-Unfall - * - */ - @XmlEnumValue("U05") - U_05("U05"), - - /** - * Boots-Unfall - * - */ - @XmlEnumValue("U06") - U_06("U06"), - - /** - * Besucher-Unfall - * - */ - @XmlEnumValue("U09") - U_09("U09"), - - /** - * Unfall mit Kapitalrückgewähr - * - */ - @XmlEnumValue("U10") - U_10("U10"), - - /** - * Taggeld - * - */ - @XmlEnumValue("U11") - U_11("U11"), - - /** - * Invalidität - * - */ - @XmlEnumValue("U12") - U_12("U12"), - - /** - * Unfallrente - * - */ - @XmlEnumValue("U13") - U_13("U13"), - - /** - * Unfalltod - * - */ - @XmlEnumValue("U14") - U_14("U14"), - - /** - * Spitalgeld - * - */ - @XmlEnumValue("U15") - U_15("U15"), - - /** - * Unfallkosten - * - */ - @XmlEnumValue("U16") - U_16("U16"), - - /** - * Kostenersatz - * - */ - @XmlEnumValue("U17") - U_17("U17"); - private final String value; - - RisikoArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoArtCdType fromValue(String v) { - for (RisikoArtCdType c: RisikoArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENBETEILIGTERType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENBETEILIGTERType.java deleted file mode 100644 index a40194df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENBETEILIGTERType.java +++ /dev/null @@ -1,229 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - *

Java-Klasse für SCHADEN_BETEILIGTER_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_BETEILIGTER_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = { - "geschaedigtesobjekt", - "zahlung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SCHADENBETEILIGTERType { - - @XmlElement(name = "GESCHAEDIGTES_OBJEKT") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List geschaedigtesobjekt; - @XmlElement(name = "ZAHLUNG") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int betLfnr; - @XmlAttribute(name = "Personennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - @XmlAttribute(name = "BetRolleCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String betTxt; - - /** - * Gets the value of the geschaedigtesobjekt property. - * - *

- * 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 set method for the geschaedigtesobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGESCHAEDIGTESOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GESCHAEDIGTESOBJEKTType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getGESCHAEDIGTESOBJEKT() { - if (geschaedigtesobjekt == null) { - geschaedigtesobjekt = new ArrayList(); - } - return this.geschaedigtesobjekt; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZAHLUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENType.java deleted file mode 100644 index 249e3ce1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHADENType.java +++ /dev/null @@ -1,721 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SCHADEN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-KFZ-Kennzeichen" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
- *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
- *       <attribute name="SchadUrsTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
- *       <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
- *       <attribute name="ErledDat" type="{urn:omds20}Datum" />
- *       <attribute name="SachbearbVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_Type", propOrder = { - "elAnzahlOrELBetragOrELEinstufung", - "schadenbeteiligter", - "elkfzKennzeichen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SCHADENType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlElement(name = "SCHADEN_BETEILIGTER") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schadenbeteiligter; - @XmlElement(name = "EL-KFZ-Kennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ELKFZKennzeichenType elkfzKennzeichen; - @XmlAttribute(name = "Schadennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - @XmlAttribute(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlAttribute(name = "Vermnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - @XmlAttribute(name = "VerbandSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verbandSparteCd; - @XmlAttribute(name = "SpartenCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenErweiterung; - @XmlAttribute(name = "Ereigniszpkt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar ereigniszpkt; - @XmlAttribute(name = "Meldedat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar meldedat; - @XmlAttribute(name = "SchadUrsCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadUrsCd; - @XmlAttribute(name = "SchadUrsTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadUrsTxt; - @XmlAttribute(name = "VerschuldenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verschuldenCd; - @XmlAttribute(name = "MalusWirksamKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type malusWirksamKz; - @XmlAttribute(name = "BearbStandCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStandCd; - @XmlAttribute(name = "ErledDat") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar erledDat; - @XmlAttribute(name = "SachbearbVU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sachbearbVU; - @XmlAttribute(name = "LeistungGeschaetzt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal leistungGeschaetzt; - @XmlAttribute(name = "WaehrungsCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELPolizzennummerType } - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Gets the value of the schadenbeteiligter property. - * - *

- * 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 set method for the schadenbeteiligter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADENBETEILIGTER().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENBETEILIGTERType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSCHADENBETEILIGTER() { - if (schadenbeteiligter == null) { - schadenbeteiligter = new ArrayList(); - } - return this.schadenbeteiligter; - } - - /** - * Ruft den Wert der elkfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELKFZKennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ELKFZKennzeichenType getELKFZKennzeichen() { - return elkfzKennzeichen; - } - - /** - * Legt den Wert der elkfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELKFZKennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setELKFZKennzeichen(ELKFZKennzeichenType value) { - this.elkfzKennzeichen = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - - /** - * Ruft den Wert der malusWirksamKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getMalusWirksamKz() { - return malusWirksamKz; - } - - /** - * Legt den Wert der malusWirksamKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMalusWirksamKz(Entsch2Type value) { - this.malusWirksamKz = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSachbearbVU(String value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSEL.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSEL.java deleted file mode 100644 index d7431163..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSEL.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SchlWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Schlbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="50"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SchlWert_generell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SCHLUESSEL") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SCHLUESSEL { - - @XmlAttribute(name = "SchlWert", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schlWert; - @XmlAttribute(name = "Schlbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schlbez; - @XmlAttribute(name = "SchlWert_generell") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schlWertGenerell; - - /** - * Ruft den Wert der schlWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchlWert() { - return schlWert; - } - - /** - * Legt den Wert der schlWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchlWert(String value) { - this.schlWert = value; - } - - /** - * Ruft den Wert der schlbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchlbez() { - return schlbez; - } - - /** - * Legt den Wert der schlbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchlbez(String value) { - this.schlbez = value; - } - - /** - * Ruft den Wert der schlWertGenerell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchlWertGenerell() { - return schlWertGenerell; - } - - /** - * Legt den Wert der schlWertGenerell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchlWertGenerell(String value) { - this.schlWertGenerell = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSELART.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSELART.java deleted file mode 100644 index b5a7dced..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SCHLUESSELART.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element ref="{urn:omds20}SCHLUESSEL"/>
- *       </sequence>
- *       <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
- *       <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="SchlArtBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "schluessel" -}) -@XmlRootElement(name = "SCHLUESSELART") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SCHLUESSELART { - - @XmlElement(name = "SCHLUESSEL", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schluessel; - @XmlAttribute(name = "SchlArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchlArtCdType schlArtCd; - @XmlAttribute(name = "VUWertErlaubtKz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type vuWertErlaubtKz; - @XmlAttribute(name = "SchlArtBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schlArtBez; - - /** - * Gets the value of the schluessel property. - * - *

- * 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 set method for the schluessel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSEL } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSCHLUESSEL() { - if (schluessel == null) { - schluessel = new ArrayList(); - } - return this.schluessel; - } - - /** - * Ruft den Wert der schlArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchlArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchlArtCdType getSchlArtCd() { - return schlArtCd; - } - - /** - * Legt den Wert der schlArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchlArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchlArtCd(SchlArtCdType value) { - this.schlArtCd = value; - } - - /** - * Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getVUWertErlaubtKz() { - return vuWertErlaubtKz; - } - - /** - * Legt den Wert der vuWertErlaubtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUWertErlaubtKz(Entsch2Type value) { - this.vuWertErlaubtKz = value; - } - - /** - * Ruft den Wert der schlArtBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchlArtBez() { - return schlArtBez; - } - - /** - * Legt den Wert der schlArtBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchlArtBez(String value) { - this.schlArtBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SONSTIGEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SONSTIGEPERSONType.java deleted file mode 100644 index e31a2bd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SONSTIGEPERSONType.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SONSTIGE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SONSTIGE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Name" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="120"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kurzname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
- *       <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" />
- *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
- *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SONSTIGE_PERSON_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SONSTIGEPERSONType { - - @XmlAttribute(name = "Name", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - @XmlAttribute(name = "Kurzname") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kurzname; - @XmlAttribute(name = "SonstPersArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sonstPersArtCd; - @XmlAttribute(name = "GesFormCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GesFormCdType gesFormCd; - @XmlAttribute(name = "PersonID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personIDVU; - @XmlAttribute(name = "PersonID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personIDMakler; - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der kurzname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKurzname() { - return kurzname; - } - - /** - * Legt den Wert der kurzname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKurzname(String value) { - this.kurzname = value; - } - - /** - * Ruft den Wert der sonstPersArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSonstPersArtCd() { - return sonstPersArtCd; - } - - /** - * Legt den Wert der sonstPersArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSonstPersArtCd(String value) { - this.sonstPersArtCd = value; - } - - /** - * Ruft den Wert der gesFormCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GesFormCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GesFormCdType getGesFormCd() { - return gesFormCd; - } - - /** - * Legt den Wert der gesFormCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GesFormCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGesFormCd(GesFormCdType value) { - this.gesFormCd = value; - } - - /** - * Ruft den Wert der personIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonIDVU() { - return personIDVU; - } - - /** - * Legt den Wert der personIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonIDVU(String value) { - this.personIDVU = value; - } - - /** - * Ruft den Wert der personIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonIDMakler() { - return personIDMakler; - } - - /** - * Legt den Wert der personIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonIDMakler(String value) { - this.personIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SPARTEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SPARTEType.java deleted file mode 100644 index 64594c7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SPARTEType.java +++ /dev/null @@ -1,634 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SPARTE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SPARTE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *         <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="Spartentxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
- *       <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="HauptTarifBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="25"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SPARTE_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung", - "risiko" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SPARTEType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlElement(name = "RISIKO", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List risiko; - @XmlAttribute(name = "SpartenCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenErweiterung; - @XmlAttribute(name = "SpartenID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenID; - @XmlAttribute(name = "VerbandSparteCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verbandSparteCd; - @XmlAttribute(name = "Spartentxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartentxt; - @XmlAttribute(name = "SpartenBeg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar spartenBeg; - @XmlAttribute(name = "SpartenEnd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar spartenEnd; - @XmlAttribute(name = "StatusCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String statusCd; - @XmlAttribute(name = "HauptTarifBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hauptTarifBez; - @XmlAttribute(name = "SichergKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "DirBeteiligtKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dirBeteiligtKz; - @XmlAttribute(name = "SondervereinbarungKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sondervereinbarungKz; - @XmlAttribute(name = "PraemieNtoSp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieNtoSp; - @XmlAttribute(name = "PraemieBtoSp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieBtoSp; - @XmlAttribute(name = "nmoKuendDat") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar nmoKuendDat; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELZeitraumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Gets the value of the risiko property. - * - *

- * 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 set method for the risiko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRISIKO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RISIKOType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getRISIKO() { - if (risiko == null) { - risiko = new ArrayList(); - } - return this.risiko; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der spartenID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenID() { - return spartenID; - } - - /** - * Legt den Wert der spartenID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenID(String value) { - this.spartenID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartentxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartentxt() { - return spartentxt; - } - - /** - * Legt den Wert der spartentxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartentxt(String value) { - this.spartentxt = value; - } - - /** - * Ruft den Wert der spartenBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getSpartenBeg() { - return spartenBeg; - } - - /** - * Legt den Wert der spartenBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenBeg(XMLGregorianCalendar value) { - this.spartenBeg = value; - } - - /** - * Ruft den Wert der spartenEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getSpartenEnd() { - return spartenEnd; - } - - /** - * Legt den Wert der spartenEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenEnd(XMLGregorianCalendar value) { - this.spartenEnd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hauptTarifBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHauptTarifBez() { - return hauptTarifBez; - } - - /** - * Legt den Wert der hauptTarifBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHauptTarifBez(String value) { - this.hauptTarifBez = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der dirBeteiligtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDirBeteiligtKz() { - return dirBeteiligtKz; - } - - /** - * Legt den Wert der dirBeteiligtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDirBeteiligtKz(String value) { - this.dirBeteiligtKz = value; - } - - /** - * Ruft den Wert der sondervereinbarungKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSondervereinbarungKz() { - return sondervereinbarungKz; - } - - /** - * Legt den Wert der sondervereinbarungKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSondervereinbarungKz(String value) { - this.sondervereinbarungKz = value; - } - - /** - * Ruft den Wert der praemieNtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieNtoSp() { - return praemieNtoSp; - } - - /** - * Legt den Wert der praemieNtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieNtoSp(BigDecimal value) { - this.praemieNtoSp = value; - } - - /** - * Ruft den Wert der praemieBtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieBtoSp() { - return praemieBtoSp; - } - - /** - * Legt den Wert der praemieBtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieBtoSp(BigDecimal value) { - this.praemieBtoSp = value; - } - - /** - * Ruft den Wert der nmoKuendDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getNmoKuendDat() { - return nmoKuendDat; - } - - /** - * Legt den Wert der nmoKuendDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNmoKuendDat(XMLGregorianCalendar value) { - this.nmoKuendDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SbhArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SbhArtCdType.java deleted file mode 100644 index 0d0cda56..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SbhArtCdType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SbhArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SbhArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MIS"/>
- *     <enumeration value="MXK"/>
- *     <enumeration value="MXS"/>
- *     <enumeration value="STS"/>
- *     <enumeration value="SSO"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SbhArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum SbhArtCdType { - - - /** - * Mindestselbstbehalt je Schadenfall - * - */ - MIS, - - /** - * Maximalselbstbehalt kumuliert - * - */ - MXK, - - /** - * Maximalselbstbehalt je Schadenfall - * - */ - MXS, - - /** - * Standardselbstbehalt je Schadenfall - * - */ - STS, - - /** - * Selbstbehalt sonst - * - */ - SSO; - - public String value() { - return name(); - } - - public static SbhArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SchlArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SchlArtCdType.java deleted file mode 100644 index 56b09fa9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SchlArtCdType.java +++ /dev/null @@ -1,592 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchlArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchlArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="25"/>
- *     <enumeration value="AendGrundCd"/>
- *     <enumeration value="AntriebsArtCd"/>
- *     <enumeration value="AufbauArtCd"/>
- *     <enumeration value="AusstattungCd"/>
- *     <enumeration value="BauartCd"/>
- *     <enumeration value="BBArtCd"/>
- *     <enumeration value="BearbStandCd"/>
- *     <enumeration value="BetragArtCd"/>
- *     <enumeration value="BetRolleCd"/>
- *     <enumeration value="DachungCd"/>
- *     <enumeration value="DachungsArtCd"/>
- *     <enumeration value="EFrageCd"/>
- *     <enumeration value="EstArtCd"/>
- *     <enumeration value="FamilienstandCd"/>
- *     <enumeration value="FlaechenAttributCd"/>
- *     <enumeration value="FzgArtCd"/>
- *     <enumeration value="GebaeudeArtCd"/>
- *     <enumeration value="GebaeudeHoeheCd"/>
- *     <enumeration value="GeschlechtCd"/>
- *     <enumeration value="GrundRuecklaufCd"/>
- *     <enumeration value="GrwArtCd"/>
- *     <enumeration value="IdfArtCd"/>
- *     <enumeration value="IndexArtCd"/>
- *     <enumeration value="KomArtCd"/>
- *     <enumeration value="LandesCd"/>
- *     <enumeration value="LegArtCd"/>
- *     <enumeration value="LoeschCd"/>
- *     <enumeration value="MigrationsCd"/>
- *     <enumeration value="NutzungCd"/>
- *     <enumeration value="ObjektdatenCd"/>
- *     <enumeration value="PaketInhCd"/>
- *     <enumeration value="PaketUmfCd"/>
- *     <enumeration value="PersArtCd"/>
- *     <enumeration value="PfrArtCd"/>
- *     <enumeration value="PolArtCd"/>
- *     <enumeration value="PraemFristCd"/>
- *     <enumeration value="PraemKorrArtCd"/>
- *     <enumeration value="ProvArtCd"/>
- *     <enumeration value="RisikoArtCd"/>
- *     <enumeration value="RntRhythmCd"/>
- *     <enumeration value="SbhArtCd"/>
- *     <enumeration value="SchadUrsCd"/>
- *     <enumeration value="SonstPersArtCd"/>
- *     <enumeration value="SpartenCd"/>
- *     <enumeration value="StArtCd"/>
- *     <enumeration value="TxtArtCd"/>
- *     <enumeration value="VSArtCd"/>
- *     <enumeration value="VerbandSparteCd"/>
- *     <enumeration value="VersLwCd"/>
- *     <enumeration value="StatusCd"/>
- *     <enumeration value="VersSacheCd"/>
- *     <enumeration value="VerschuldenCd"/>
- *     <enumeration value="VerwendzweckCd"/>
- *     <enumeration value="VtgProdCd"/>
- *     <enumeration value="VtgRolleCd"/>
- *     <enumeration value="VtgSparteCd"/>
- *     <enumeration value="VtgStatusCd"/>
- *     <enumeration value="WaehrungsCd"/>
- *     <enumeration value="ZRArtCd"/>
- *     <enumeration value="ZahlGrundCd"/>
- *     <enumeration value="ZahlRhythmCd"/>
- *     <enumeration value="ZahlWegCd"/>
- *     <enumeration value="MahnStufeCd"/>
- *     <enumeration value="RueckGrundCd"/>
- *     <enumeration value="SprachCd"/>
- *     <enumeration value="VerbrEinhCd"/>
- *     <enumeration value="GesFormCd"/>
- *     <enumeration value="RahmenvertragsartCd"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchlArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum SchlArtCdType { - - - /** - * Änderungsgrund - * - */ - @XmlEnumValue("AendGrundCd") - AEND_GRUND_CD("AendGrundCd"), - - /** - * Antriebsart - * - */ - @XmlEnumValue("AntriebsArtCd") - ANTRIEBS_ART_CD("AntriebsArtCd"), - - /** - * Aufbauart - * - */ - @XmlEnumValue("AufbauArtCd") - AUFBAU_ART_CD("AufbauArtCd"), - - /** - * Ausstattung - * - */ - @XmlEnumValue("AusstattungCd") - AUSSTATTUNG_CD("AusstattungCd"), - - /** - * Bauart - * - */ - @XmlEnumValue("BauartCd") - BAUART_CD("BauartCd"), - - /** - * Bezugsberechtigungsart - * - */ - @XmlEnumValue("BBArtCd") - BB_ART_CD("BBArtCd"), - - /** - * Bearbeitungsstand - * - */ - @XmlEnumValue("BearbStandCd") - BEARB_STAND_CD("BearbStandCd"), - - /** - * Betragsart - * - */ - @XmlEnumValue("BetragArtCd") - BETRAG_ART_CD("BetragArtCd"), - - /** - * Beteiligungsrolle - * - */ - @XmlEnumValue("BetRolleCd") - BET_ROLLE_CD("BetRolleCd"), - - /** - * Dachung - * - */ - @XmlEnumValue("DachungCd") - DACHUNG_CD("DachungCd"), - - /** - * Dachungsart - * - */ - @XmlEnumValue("DachungsArtCd") - DACHUNGS_ART_CD("DachungsArtCd"), - - /** - * Entscheidungsfrage - * - */ - @XmlEnumValue("EFrageCd") - E_FRAGE_CD("EFrageCd"), - - /** - * Einstufungsart - * - */ - @XmlEnumValue("EstArtCd") - EST_ART_CD("EstArtCd"), - - /** - * Familienstand - * - */ - @XmlEnumValue("FamilienstandCd") - FAMILIENSTAND_CD("FamilienstandCd"), - - /** - * Flächenattribut - * - */ - @XmlEnumValue("FlaechenAttributCd") - FLAECHEN_ATTRIBUT_CD("FlaechenAttributCd"), - - /** - * Fahrzeugart - * - */ - @XmlEnumValue("FzgArtCd") - FZG_ART_CD("FzgArtCd"), - - /** - * Art des Gebäudes - * - */ - @XmlEnumValue("GebaeudeArtCd") - GEBAEUDE_ART_CD("GebaeudeArtCd"), - - /** - * Gebäudehöhe - * - */ - @XmlEnumValue("GebaeudeHoeheCd") - GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"), - - /** - * Geschlecht - * - */ - @XmlEnumValue("GeschlechtCd") - GESCHLECHT_CD("GeschlechtCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("GrundRuecklaufCd") - GRUND_RUECKLAUF_CD("GrundRuecklaufCd"), - - /** - * Grenzwertart - * - */ - @XmlEnumValue("GrwArtCd") - GRW_ART_CD("GrwArtCd"), - - /** - * Identifizierungsart - * - */ - @XmlEnumValue("IdfArtCd") - IDF_ART_CD("IdfArtCd"), - - /** - * Indexart - * - */ - @XmlEnumValue("IndexArtCd") - INDEX_ART_CD("IndexArtCd"), - - /** - * KommunikationsArt - * - */ - @XmlEnumValue("KomArtCd") - KOM_ART_CD("KomArtCd"), - - /** - * Ländercode - * - */ - @XmlEnumValue("LandesCd") - LANDES_CD("LandesCd"), - - /** - * Legitimierungsart - * - */ - @XmlEnumValue("LegArtCd") - LEG_ART_CD("LegArtCd"), - - /** - * Löschungsarten - * - */ - @XmlEnumValue("LoeschCd") - LOESCH_CD("LoeschCd"), - - /** - * Migrationsart - * - */ - @XmlEnumValue("MigrationsCd") - MIGRATIONS_CD("MigrationsCd"), - - /** - * Nutzung - * - */ - @XmlEnumValue("NutzungCd") - NUTZUNG_CD("NutzungCd"), - - /** - * Objektdatenart - * - */ - @XmlEnumValue("ObjektdatenCd") - OBJEKTDATEN_CD("ObjektdatenCd"), - - /** - * Paketinhalt - * - */ - @XmlEnumValue("PaketInhCd") - PAKET_INH_CD("PaketInhCd"), - - /** - * Paketumfang - * - */ - @XmlEnumValue("PaketUmfCd") - PAKET_UMF_CD("PaketUmfCd"), - - /** - * Personenart - * - */ - @XmlEnumValue("PersArtCd") - PERS_ART_CD("PersArtCd"), - - /** - * Prämienfreiart - * - */ - @XmlEnumValue("PfrArtCd") - PFR_ART_CD("PfrArtCd"), - - /** - * Polizzenart - * - */ - @XmlEnumValue("PolArtCd") - POL_ART_CD("PolArtCd"), - - /** - * Prämienfrist - * - */ - @XmlEnumValue("PraemFristCd") - PRAEM_FRIST_CD("PraemFristCd"), - - /** - * Prämienkorrekturart - * - */ - @XmlEnumValue("PraemKorrArtCd") - PRAEM_KORR_ART_CD("PraemKorrArtCd"), - - /** - * Provisionsart - * - */ - @XmlEnumValue("ProvArtCd") - PROV_ART_CD("ProvArtCd"), - - /** - * Risikoart - * - */ - @XmlEnumValue("RisikoArtCd") - RISIKO_ART_CD("RisikoArtCd"), - - /** - * Rentenzahlungsrhythmus - * - */ - @XmlEnumValue("RntRhythmCd") - RNT_RHYTHM_CD("RntRhythmCd"), - - /** - * Selbstbehaltart - * - */ - @XmlEnumValue("SbhArtCd") - SBH_ART_CD("SbhArtCd"), - - /** - * Schadenursache - * - */ - @XmlEnumValue("SchadUrsCd") - SCHAD_URS_CD("SchadUrsCd"), - - /** - * Art der sonstigen Person - * - */ - @XmlEnumValue("SonstPersArtCd") - SONST_PERS_ART_CD("SonstPersArtCd"), - - /** - * Sparte - * - */ - @XmlEnumValue("SpartenCd") - SPARTEN_CD("SpartenCd"), - - /** - * Steuerart - * - */ - @XmlEnumValue("StArtCd") - ST_ART_CD("StArtCd"), - - /** - * Textart - * - */ - @XmlEnumValue("TxtArtCd") - TXT_ART_CD("TxtArtCd"), - - /** - * Versicherungssummenart - * - */ - @XmlEnumValue("VSArtCd") - VS_ART_CD("VSArtCd"), - - /** - * Verbandssparte - * - */ - @XmlEnumValue("VerbandSparteCd") - VERBAND_SPARTE_CD("VerbandSparteCd"), - - /** - * Versicherte Landwirtschaft - * - */ - @XmlEnumValue("VersLwCd") - VERS_LW_CD("VersLwCd"), - - /** - * Status - * - */ - @XmlEnumValue("StatusCd") - STATUS_CD("StatusCd"), - - /** - * Versicherte Sache - * - */ - @XmlEnumValue("VersSacheCd") - VERS_SACHE_CD("VersSacheCd"), - - /** - * Verschulden - * - */ - @XmlEnumValue("VerschuldenCd") - VERSCHULDEN_CD("VerschuldenCd"), - - /** - * Verwendungszweck - * - */ - @XmlEnumValue("VerwendzweckCd") - VERWENDZWECK_CD("VerwendzweckCd"), - - /** - * Vertragsprodukt - * - */ - @XmlEnumValue("VtgProdCd") - VTG_PROD_CD("VtgProdCd"), - - /** - * Vertragsrolle - * - */ - @XmlEnumValue("VtgRolleCd") - VTG_ROLLE_CD("VtgRolleCd"), - - /** - * Vertragssparte - * - */ - @XmlEnumValue("VtgSparteCd") - VTG_SPARTE_CD("VtgSparteCd"), - - /** - * Vertragsstatus - * - */ - @XmlEnumValue("VtgStatusCd") - VTG_STATUS_CD("VtgStatusCd"), - - /** - * Währung - * - */ - @XmlEnumValue("WaehrungsCd") - WAEHRUNGS_CD("WaehrungsCd"), - - /** - * Art des Zeitraumes - * - */ - @XmlEnumValue("ZRArtCd") - ZR_ART_CD("ZRArtCd"), - - /** - * Zahlungsgrund - * - */ - @XmlEnumValue("ZahlGrundCd") - ZAHL_GRUND_CD("ZahlGrundCd"), - - /** - * Zahlungsrhythmus - * - */ - @XmlEnumValue("ZahlRhythmCd") - ZAHL_RHYTHM_CD("ZahlRhythmCd"), - - /** - * Zahlungsweg - * - */ - @XmlEnumValue("ZahlWegCd") - ZAHL_WEG_CD("ZahlWegCd"), - - /** - * MahnStufe - * - */ - @XmlEnumValue("MahnStufeCd") - MAHN_STUFE_CD("MahnStufeCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("RueckGrundCd") - RUECK_GRUND_CD("RueckGrundCd"), - - /** - * Sprachenschlüssel - * - */ - @XmlEnumValue("SprachCd") - SPRACH_CD("SprachCd"), - - /** - * Einheit für Verbrauch - * - */ - @XmlEnumValue("VerbrEinhCd") - VERBR_EINH_CD("VerbrEinhCd"), - - /** - * Gesellschaftsform - * - */ - @XmlEnumValue("GesFormCd") - GES_FORM_CD("GesFormCd"), - - /** - * Rahmenvertragsart - * - */ - @XmlEnumValue("RahmenvertragsartCd") - RAHMENVERTRAGSART_CD("RahmenvertragsartCd"); - private final String value; - - SchlArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchlArtCdType fromValue(String v) { - for (SchlArtCdType c: SchlArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SprachCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SprachCdType.java deleted file mode 100644 index a0f20d1d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/SprachCdType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SprachCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SprachCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="2"/>
- *     <maxLength value="2"/>
- *     <enumeration value="CS"/>
- *     <enumeration value="DE"/>
- *     <enumeration value="EN"/>
- *     <enumeration value="HU"/>
- *     <enumeration value="IT"/>
- *     <enumeration value="SK"/>
- *     <enumeration value="SL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SprachCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum SprachCdType { - - - /** - * Tschechisch - * - */ - CS, - - /** - * Deutsch - * - */ - DE, - - /** - * Englisch - * - */ - EN, - - /** - * Ungarisch - * - */ - HU, - - /** - * Italienisch - * - */ - IT, - - /** - * Slowakisch - * - */ - SK, - - /** - * Slowenisch - * - */ - SL; - - public String value() { - return name(); - } - - public static SprachCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/TxtArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/TxtArtCdType.java deleted file mode 100644 index cdbdd56d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/TxtArtCdType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für TxtArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="TxtArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ANR"/>
- *     <enumeration value="BER"/>
- *     <enumeration value="FRT"/>
- *     <enumeration value="TIT"/>
- *     <enumeration value="TIN"/>
- *     <enumeration value="VKL"/>
- *     <enumeration value="SRT"/>
- *     <enumeration value="EXP"/>
- *     <enumeration value="ONR"/>
- *     <enumeration value="FZU"/>
- *     <enumeration value="RIM"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TxtArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum TxtArtCdType { - - - /** - * Anrede - * - */ - ANR, - - /** - * Beruf - * - */ - BER, - - /** - * Freitext - * - */ - FRT, - - /** - * Titel - * - */ - TIT, - - /** - * Titel nachgestellt - * - */ - TIN, - - /** - * Vertragsspez. Klausel - * - */ - VKL, - - /** - * Beschreibung Schadenort - * - */ - SRT, - - /** - * Schaden-Expertise (Besichtigungsdaten) - * - */ - EXP, - - /** - * Oeamtc-Clubkarten-Nr - * - */ - ONR, - - /** - * Ordnungsbegriff für Zuordnung Fremdsystem - * - */ - FZU, - - /** - * Risikomerkmal - * - */ - RIM; - - public String value() { - return name(); - } - - public static TxtArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZ.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZ.java deleted file mode 100644 index 00139329..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZ.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERS_KFZ_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERS_KFZ") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSKFZ - extends VERSKFZType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZType.java deleted file mode 100644 index 284d0a6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSKFZType.java +++ /dev/null @@ -1,1053 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERS_KFZ_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_KFZ_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="AufbauArtCd" type="{urn:omds20}AufbauArtCd_Type" />
- *       <attribute name="Marke" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leistung_ElektroMot">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Stehplaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
- *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
- *       <attribute name="VerbrEinhCd" type="{urn:omds20}VerbrEinhCd_Type" />
- *       <attribute name="Fahrgestnr" use="required" type="{urn:omds20}Fahrgestnr_Type" />
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz" type="{urn:omds20}Pol_Kennz_Type" />
- *       <attribute name="Eigengew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="HzulGesgew">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="HGeschw">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_KFZ_Type") -@XmlSeeAlso({ - VERSKFZ.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSKFZType { - - @XmlAttribute(name = "FzgArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fzgArtCd; - @XmlAttribute(name = "AufbauArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aufbauArtCd; - @XmlAttribute(name = "Marke", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String marke; - @XmlAttribute(name = "Handelsbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal leistung; - @XmlAttribute(name = "Leistung_ElektroMot") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal leistungElektroMot; - @XmlAttribute(name = "Plaetze") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer plaetze; - @XmlAttribute(name = "Stehplaetze") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer stehplaetze; - @XmlAttribute(name = "Nutzlast") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antriebsArtCd; - @XmlAttribute(name = "Katkz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String katkz; - @XmlAttribute(name = "ABSKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type absKz; - @XmlAttribute(name = "CO2_Ausstoss") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer co2Ausstoss; - @XmlAttribute(name = "CO2_WLTP_WMTC") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer co2WLTPWMTC; - @XmlAttribute(name = "Kraftstoffverbr_NEFZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kraftstoffverbrNEFZ; - @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kraftstoffverbrWLTPWMTC; - @XmlAttribute(name = "VerbrEinhCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verbrEinhCd; - @XmlAttribute(name = "Fahrgestnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String motornr; - @XmlAttribute(name = "NatCode") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polKennz; - @XmlAttribute(name = "Eigengew") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal eigengew; - @XmlAttribute(name = "HzulGesgew") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal hzulGesgew; - @XmlAttribute(name = "HGeschw") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal hGeschw; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der aufbauArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAufbauArtCd() { - return aufbauArtCd; - } - - /** - * Legt den Wert der aufbauArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAufbauArtCd(String value) { - this.aufbauArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeistung(BigDecimal value) { - this.leistung = value; - } - - /** - * Ruft den Wert der leistungElektroMot-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getLeistungElektroMot() { - return leistungElektroMot; - } - - /** - * Legt den Wert der leistungElektroMot-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeistungElektroMot(BigDecimal value) { - this.leistungElektroMot = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der stehplaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getStehplaetze() { - return stehplaetze; - } - - /** - * Legt den Wert der stehplaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStehplaetze(Integer value) { - this.stehplaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der katkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKatkz() { - return katkz; - } - - /** - * Legt den Wert der katkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKatkz(String value) { - this.katkz = value; - } - - /** - * Ruft den Wert der absKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getABSKz() { - return absKz; - } - - /** - * Legt den Wert der absKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setABSKz(Entsch2Type value) { - this.absKz = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getCO2WLTPWMTC() { - return co2WLTPWMTC; - } - - /** - * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setCO2WLTPWMTC(Integer value) { - this.co2WLTPWMTC = value; - } - - /** - * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKraftstoffverbrNEFZ() { - return kraftstoffverbrNEFZ; - } - - /** - * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKraftstoffverbrNEFZ(BigDecimal value) { - this.kraftstoffverbrNEFZ = value; - } - - /** - * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKraftstoffverbrWLTPWMTC() { - return kraftstoffverbrWLTPWMTC; - } - - /** - * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { - this.kraftstoffverbrWLTPWMTC = value; - } - - /** - * Ruft den Wert der verbrEinhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerbrEinhCd() { - return verbrEinhCd; - } - - /** - * Legt den Wert der verbrEinhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerbrEinhCd(String value) { - this.verbrEinhCd = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der eigengew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getEigengew() { - return eigengew; - } - - /** - * Legt den Wert der eigengew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEigengew(BigDecimal value) { - this.eigengew = value; - } - - /** - * Ruft den Wert der hzulGesgew-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getHzulGesgew() { - return hzulGesgew; - } - - /** - * Legt den Wert der hzulGesgew-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHzulGesgew(BigDecimal value) { - this.hzulGesgew = value; - } - - /** - * Ruft den Wert der hGeschw-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getHGeschw() { - return hGeschw; - } - - /** - * Legt den Wert der hGeschw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHGeschw(BigDecimal value) { - this.hGeschw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSOBJEKTType.java deleted file mode 100644 index e70b51a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSOBJEKTType.java +++ /dev/null @@ -1,252 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element ref="{urn:omds20}VERS_PERSON"/>
- *           <element ref="{urn:omds20}VERS_KFZ"/>
- *           <element ref="{urn:omds20}VERS_SACHE"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="VersObjTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_OBJEKT_Type", propOrder = { - "versperson", - "verskfz", - "verssache", - "elAnzahlOrELBetragOrELEinstufung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSOBJEKTType { - - @XmlElement(name = "VERS_PERSON") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VERSPERSONType versperson; - @XmlElement(name = "VERS_KFZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VERSKFZ verskfz; - @XmlElement(name = "VERS_SACHE") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VERSSACHEType verssache; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int objLfnr; - @XmlAttribute(name = "VersObjTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versObjTxt; - - /** - * Ruft den Wert der versperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VERSPERSONType getVERSPERSON() { - return versperson; - } - - /** - * Legt den Wert der versperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVERSPERSON(VERSPERSONType value) { - this.versperson = value; - } - - /** - * Ruft den Wert der verskfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSKFZ } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VERSKFZ getVERSKFZ() { - return verskfz; - } - - /** - * Legt den Wert der verskfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSKFZ } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVERSKFZ(VERSKFZ value) { - this.verskfz = value; - } - - /** - * Ruft den Wert der verssache-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSSACHEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VERSSACHEType getVERSSACHE() { - return verssache; - } - - /** - * Legt den Wert der verssache-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSSACHEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVERSSACHE(VERSSACHEType value) { - this.verssache = value; - } - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGrenzwertType } - * {@link ELIdentifizierungType } - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjLfnr(int value) { - this.objLfnr = value; - } - - /** - * Ruft den Wert der versObjTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersObjTxt() { - return versObjTxt; - } - - /** - * Legt den Wert der versObjTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersObjTxt(String value) { - this.versObjTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSPERSONType.java deleted file mode 100644 index 2bdc16d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSPERSONType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_PERSON_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSPERSONType { - - @XmlAttribute(name = "Personennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSSACHEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSSACHEType.java deleted file mode 100644 index 19016073..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSSACHEType.java +++ /dev/null @@ -1,882 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - *

Java-Klasse für VERS_SACHE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_SACHE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}EL-Objektdaten" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Flaeche" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
- *       <attribute name="VersSacheBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
- *       <attribute name="GebaeudeBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
- *       <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
- *       <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
- *       <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
- *       <attribute name="DachungsArtCd" type="{urn:omds20}DachungsArtCd_Type" />
- *       <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="VersLwCd" type="{urn:omds20}VersLwCd_Type" />
- *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
- *       <attribute name="Hersteller">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Modell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_SACHE_Type", propOrder = { - "elObjektdaten", - "elFlaeche", - "elText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSSACHEType { - - @XmlElement(name = "EL-Objektdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elObjektdaten; - @XmlElement(name = "EL-Flaeche") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elFlaeche; - @XmlElement(name = "EL-Text") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elText; - @XmlAttribute(name = "VersSacheCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versSacheCd; - @XmlAttribute(name = "VersSacheBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versSacheBez; - @XmlAttribute(name = "GebaeudeArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeArtCd; - @XmlAttribute(name = "GebaeudeBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeBez; - @XmlAttribute(name = "BauartCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bauartCd; - @XmlAttribute(name = "GebaeudeHoeheCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeHoeheCd; - @XmlAttribute(name = "AusstattungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ausstattungCd; - @XmlAttribute(name = "DachungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dachungCd; - @XmlAttribute(name = "DachungsArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DachungsArtCdType dachungsArtCd; - @XmlAttribute(name = "NutzungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nutzungCd; - @XmlAttribute(name = "SichergKz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "VersLwCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versLwCd; - @XmlAttribute(name = "StatusCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String statusCd; - @XmlAttribute(name = "Hersteller") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hersteller; - @XmlAttribute(name = "Modell") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String modell; - @XmlAttribute(name = "Pac") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long pac; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlAttribute(name = "Ort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ort; - @XmlAttribute(name = "Strasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String strasse; - @XmlAttribute(name = "Hausnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hausnr; - @XmlAttribute(name = "Zusatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zusatz; - @XmlAttribute(name = "AdressID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDVU; - @XmlAttribute(name = "AdressID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDMakler; - - /** - * Gets the value of the elObjektdaten property. - * - *

- * 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 set method for the elObjektdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELObjektdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELObjektdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELObjektdaten() { - if (elObjektdaten == null) { - elObjektdaten = new ArrayList(); - } - return this.elObjektdaten; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der versSacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersSacheCd() { - return versSacheCd; - } - - /** - * Legt den Wert der versSacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersSacheCd(String value) { - this.versSacheCd = value; - } - - /** - * Ruft den Wert der versSacheBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersSacheBez() { - return versSacheBez; - } - - /** - * Legt den Wert der versSacheBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersSacheBez(String value) { - this.versSacheBez = value; - } - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der dachungsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link DachungsArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DachungsArtCdType getDachungsArtCd() { - return dachungsArtCd; - } - - /** - * Legt den Wert der dachungsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DachungsArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDachungsArtCd(DachungsArtCdType value) { - this.dachungsArtCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der versLwCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersLwCd() { - return versLwCd; - } - - /** - * Legt den Wert der versLwCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersLwCd(String value) { - this.versLwCd = value; - } - - /** - * Ruft den Wert der statusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStatusCd() { - return statusCd; - } - - /** - * Legt den Wert der statusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatusCd(String value) { - this.statusCd = value; - } - - /** - * Ruft den Wert der hersteller-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHersteller() { - return hersteller; - } - - /** - * Legt den Wert der hersteller-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHersteller(String value) { - this.hersteller = value; - } - - /** - * Ruft den Wert der modell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getModell() { - return modell; - } - - /** - * Legt den Wert der modell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setModell(String value) { - this.modell = value; - } - - /** - * Ruft den Wert der pac-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getPac() { - return pac; - } - - /** - * Legt den Wert der pac-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPac(Long value) { - this.pac = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der ort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrt() { - return ort; - } - - /** - * Legt den Wert der ort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrt(String value) { - this.ort = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der hausnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHausnr() { - return hausnr; - } - - /** - * Legt den Wert der hausnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHausnr(String value) { - this.hausnr = value; - } - - /** - * Ruft den Wert der zusatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZusatz() { - return zusatz; - } - - /** - * Legt den Wert der zusatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusatz(String value) { - this.zusatz = value; - } - - /** - * Ruft den Wert der adressIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDVU() { - return adressIDVU; - } - - /** - * Legt den Wert der adressIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDVU(String value) { - this.adressIDVU = value; - } - - /** - * Ruft den Wert der adressIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDMakler() { - return adressIDMakler; - } - - /** - * Legt den Wert der adressIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDMakler(String value) { - this.adressIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSUNTERNEHMEN.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSUNTERNEHMEN.java deleted file mode 100644 index 9587962d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERSUNTERNEHMEN.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <element ref="{urn:omds20}EL-Kommunikation"/>
- *       </sequence>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="VUBezeichnung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "elKommunikation" -}) -@XmlRootElement(name = "VERS_UNTERNEHMEN") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERSUNTERNEHMEN { - - @XmlElement(name = "EL-Kommunikation") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elKommunikation; - @XmlAttribute(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlAttribute(name = "VUBezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuBezeichnung; - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der vuBezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUBezeichnung() { - return vuBezeichnung; - } - - /** - * Legt den Wert der vuBezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUBezeichnung(String value) { - this.vuBezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAG.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAG.java deleted file mode 100644 index b4c6210e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAG.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERTRAG_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERTRAG") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERTRAG - extends VERTRAGType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSFONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSFONDSType.java deleted file mode 100644 index 34ef31e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSFONDSType.java +++ /dev/null @@ -1,239 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSFONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSFONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSFONDS_Type", propOrder = { - "portfolio", - "fonds", - "elBetrag", - "elText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERTRAGSFONDSType { - - @XmlElement(name = "PORTFOLIO") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List portfolio; - @XmlElement(name = "FONDS") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List fonds; - @XmlElement(name = "EL-Betrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elBetrag; - @XmlElement(name = "EL-Text") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elText; - @XmlAttribute(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - - /** - * Gets the value of the portfolio property. - * - *

- * 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 set method for the portfolio property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPORTFOLIO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PORTFOLIO } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPORTFOLIO() { - if (portfolio == null) { - portfolio = new ArrayList(); - } - return this.portfolio; - } - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - - /** - * Gets the value of the elBetrag property. - * - *

- * 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 set method for the elBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELBetrag() { - if (elBetrag == null) { - elBetrag = new ArrayList(); - } - return this.elBetrag; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSPERSONType.java deleted file mode 100644 index 6a51c17b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGSPERSONType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSPERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSPERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSPERSON_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERTRAGSPERSONType { - - @XmlAttribute(name = "VtgRolleCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VtgRolleCdType vtgRolleCd; - @XmlAttribute(name = "Lfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - @XmlAttribute(name = "Personennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - - /** - * Ruft den Wert der vtgRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VtgRolleCdType getVtgRolleCd() { - return vtgRolleCd; - } - - /** - * Legt den Wert der vtgRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgRolleCd(VtgRolleCdType value) { - this.vtgRolleCd = value; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGType.java deleted file mode 100644 index 104c2a9a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VERTRAGType.java +++ /dev/null @@ -1,1034 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlElements; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERTRAG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Antrag"/>
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Praemienfreistellung"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
- *           <element ref="{urn:omds20}EL-Rahmenvertrag"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
- *         <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
- *       <attribute name="VtgProdukt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *       <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
- *       <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
- *       <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="VtgEnd" type="{urn:omds20}Datum" />
- *       <attribute name="StornoGiltAb" type="{urn:omds20}Datum" />
- *       <attribute name="Hptfaelligkeit">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
- *             <minInclusive value="--01-01"/>
- *             <maxInclusive value="--12-31"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
- *       <attribute name="AendGrundbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieNtoVtg" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}decimal">
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ktonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAG_Type", propOrder = { - "elAntragOrELAnzahlOrELBetrag", - "vertragsperson", - "versobjekt", - "sparte" -}) -@XmlSeeAlso({ - VERTRAG.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VERTRAGType { - - @XmlElements({ - @XmlElement(name = "EL-Antrag", type = ELAntragType.class), - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class), - @XmlElement(name = "EL-Rahmenvertrag", type = ELRahmenvertragType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAntragOrELAnzahlOrELBetrag; - @XmlElement(name = "VERTRAGSPERSON", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertragsperson; - @XmlElement(name = "VERS_OBJEKT") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versobjekt; - @XmlElement(name = "SPARTE", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List sparte; - @XmlAttribute(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - @XmlAttribute(name = "VtgProdCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgProdCd; - @XmlAttribute(name = "VtgProdukt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgProdukt; - @XmlAttribute(name = "VtgSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgSparteCd; - @XmlAttribute(name = "ZahlRhythmCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlRhythmCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlWegCd; - @XmlAttribute(name = "VtgStatusCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgStatusCd; - @XmlAttribute(name = "VtgStatusBeg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgStatusBeg; - @XmlAttribute(name = "VtgBeg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgBeg; - @XmlAttribute(name = "VtgEnd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgEnd; - @XmlAttribute(name = "StornoGiltAb") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar stornoGiltAb; - @XmlAttribute(name = "Hptfaelligkeit") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar hptfaelligkeit; - @XmlAttribute(name = "DurchfDat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar durchfDat; - @XmlAttribute(name = "GueltigBeg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigBeg; - @XmlAttribute(name = "AendGrundCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aendGrundCd; - @XmlAttribute(name = "AendGrundbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aendGrundbez; - @XmlAttribute(name = "PraemieNtoVtg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieNtoVtg; - @XmlAttribute(name = "PraemieBtoVtg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieBtoVtg; - @XmlAttribute(name = "WaehrungsCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "BLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String blz; - @XmlAttribute(name = "Ktonr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ktonr; - @XmlAttribute(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bic; - @XmlAttribute(name = "IBAN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String iban; - - /** - * Gets the value of the elAntragOrELAnzahlOrELBetrag property. - * - *

- * 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 set method for the elAntragOrELAnzahlOrELBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAntragOrELAnzahlOrELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAntragType } - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELPolizzennummerType } - * {@link ELPraemienfreistellungType } - * {@link ELPraemienkorrekturType } - * {@link ELRahmenvereinbarungType } - * {@link ELRahmenvertragType } - * {@link ELSelbstbehalt } - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAntragOrELAnzahlOrELBetrag() { - if (elAntragOrELAnzahlOrELBetrag == null) { - elAntragOrELAnzahlOrELBetrag = new ArrayList(); - } - return this.elAntragOrELAnzahlOrELBetrag; - } - - /** - * Gets the value of the vertragsperson property. - * - *

- * 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 set method for the vertragsperson property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSPERSONType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVERTRAGSPERSON() { - if (vertragsperson == null) { - vertragsperson = new ArrayList(); - } - return this.vertragsperson; - } - - /** - * Gets the value of the versobjekt property. - * - *

- * 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 set method for the versobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSOBJEKTType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVERSOBJEKT() { - if (versobjekt == null) { - versobjekt = new ArrayList(); - } - return this.versobjekt; - } - - /** - * Gets the value of the sparte property. - * - *

- * 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 set method for the sparte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSPARTE().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SPARTEType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSPARTE() { - if (sparte == null) { - sparte = new ArrayList(); - } - return this.sparte; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Ruft den Wert der vtgProdukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgProdukt() { - return vtgProdukt; - } - - /** - * Legt den Wert der vtgProdukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgProdukt(String value) { - this.vtgProdukt = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Ruft den Wert der zahlRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlRhythmCd() { - return zahlRhythmCd; - } - - /** - * Legt den Wert der zahlRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlRhythmCd(String value) { - this.zahlRhythmCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der vtgStatusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgStatusCd() { - return vtgStatusCd; - } - - /** - * Legt den Wert der vtgStatusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgStatusCd(String value) { - this.vtgStatusCd = value; - } - - /** - * Ruft den Wert der vtgStatusBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgStatusBeg() { - return vtgStatusBeg; - } - - /** - * Legt den Wert der vtgStatusBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgStatusBeg(XMLGregorianCalendar value) { - this.vtgStatusBeg = value; - } - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der vtgEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgEnd() { - return vtgEnd; - } - - /** - * Legt den Wert der vtgEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgEnd(XMLGregorianCalendar value) { - this.vtgEnd = value; - } - - /** - * Ruft den Wert der stornoGiltAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getStornoGiltAb() { - return stornoGiltAb; - } - - /** - * Legt den Wert der stornoGiltAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStornoGiltAb(XMLGregorianCalendar value) { - this.stornoGiltAb = value; - } - - /** - * Ruft den Wert der hptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getHptfaelligkeit() { - return hptfaelligkeit; - } - - /** - * Legt den Wert der hptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHptfaelligkeit(XMLGregorianCalendar value) { - this.hptfaelligkeit = value; - } - - /** - * Ruft den Wert der durchfDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDurchfDat() { - return durchfDat; - } - - /** - * Legt den Wert der durchfDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDurchfDat(XMLGregorianCalendar value) { - this.durchfDat = value; - } - - /** - * Ruft den Wert der gueltigBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigBeg() { - return gueltigBeg; - } - - /** - * Legt den Wert der gueltigBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigBeg(XMLGregorianCalendar value) { - this.gueltigBeg = value; - } - - /** - * Ruft den Wert der aendGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAendGrundCd() { - return aendGrundCd; - } - - /** - * Legt den Wert der aendGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAendGrundCd(String value) { - this.aendGrundCd = value; - } - - /** - * Ruft den Wert der aendGrundbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAendGrundbez() { - return aendGrundbez; - } - - /** - * Legt den Wert der aendGrundbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAendGrundbez(String value) { - this.aendGrundbez = value; - } - - /** - * Ruft den Wert der praemieNtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieNtoVtg() { - return praemieNtoVtg; - } - - /** - * Legt den Wert der praemieNtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieNtoVtg(BigDecimal value) { - this.praemieNtoVtg = value; - } - - /** - * Ruft den Wert der praemieBtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieBtoVtg() { - return praemieBtoVtg; - } - - /** - * Legt den Wert der praemieBtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieBtoVtg(BigDecimal value) { - this.praemieBtoVtg = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der ktonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKtonr() { - return ktonr; - } - - /** - * Legt den Wert der ktonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKtonr(String value) { - this.ktonr = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der iban-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getIBAN() { - return iban; - } - - /** - * Legt den Wert der iban-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIBAN(String value) { - this.iban = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VSArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VSArtCdType.java deleted file mode 100644 index 4ed2ce3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VSArtCdType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VSArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VSArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ALS"/>
- *     <enumeration value="BDS"/>
- *     <enumeration value="BVS"/>
- *     <enumeration value="ELS"/>
- *     <enumeration value="EVS"/>
- *     <enumeration value="HHS"/>
- *     <enumeration value="HLS"/>
- *     <enumeration value="OVS"/>
- *     <enumeration value="PFR"/>
- *     <enumeration value="PPF"/>
- *     <enumeration value="PVS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VSArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum VSArtCdType { - - - /** - * Ablebensumme - * - */ - ALS, - - /** - * Bausparen Darlehenssumme - * - */ - BDS, - - /** - * Bausparen Vertragssumme - * - */ - BVS, - - /** - * Erlebensumme - * - */ - ELS, - - /** - * EinzelVS - * - */ - EVS, - - /** - * Höchsthaftungssumme - * - */ - HHS, - - /** - * Höchstleistungssumme - * - */ - HLS, - - /** - * ohne Versicherungssumme - * - */ - OVS, - - /** - * prämienfrei - * - */ - PFR, - - /** - * prämienpflichtig - * - */ - PPF, - - /** - * PauschalVS - * - */ - PVS; - - public String value() { - return name(); - } - - public static VSArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VtgRolleCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VtgRolleCdType.java deleted file mode 100644 index d482af6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/VtgRolleCdType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VtgRolleCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VtgRolleCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AP"/>
- *     <enumeration value="AZ"/>
- *     <enumeration value="BG"/>
- *     <enumeration value="BM"/>
- *     <enumeration value="BO"/>
- *     <enumeration value="IA"/>
- *     <enumeration value="FI"/>
- *     <enumeration value="GV"/>
- *     <enumeration value="LE"/>
- *     <enumeration value="KA"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="ZB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VtgRolleCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum VtgRolleCdType { - - - /** - * Ansprechperson - * - */ - AP, - - /** - * abweichender Zulassungsbesitzer - * - */ - AZ, - - /** - * Bausparer gesetzlicher Vertreter - * - */ - BG, - - /** - * Bausparer mit Prämie - * - */ - BM, - - /** - * Bausparer ohne Prämie - * - */ - BO, - - /** - * Inkassoadresse - * - */ - IA, - - /** - * Firmeninhaber - * - */ - FI, - - /** - * Gesetzlicher Vertreter - * - */ - GV, - - /** - * Lenker - * - */ - LE, - - /** - * Korrespondenz/Zustelladresse - * - */ - KA, - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Zustellbevollmächtigter - * - */ - ZB; - - public String value() { - return name(); - } - - public static VtgRolleCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/WaehrungsCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/WaehrungsCdType.java deleted file mode 100644 index dfb447cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/WaehrungsCdType.java +++ /dev/null @@ -1,287 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für WaehrungsCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="WaehrungsCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AUD"/>
- *     <enumeration value="BGL"/>
- *     <enumeration value="CAD"/>
- *     <enumeration value="CHF"/>
- *     <enumeration value="CYP"/>
- *     <enumeration value="CZR"/>
- *     <enumeration value="DKK"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="GBP"/>
- *     <enumeration value="GIP"/>
- *     <enumeration value="HKD"/>
- *     <enumeration value="HRK"/>
- *     <enumeration value="HUF"/>
- *     <enumeration value="ILS"/>
- *     <enumeration value="INR"/>
- *     <enumeration value="ISK"/>
- *     <enumeration value="JOD"/>
- *     <enumeration value="JPY"/>
- *     <enumeration value="MLT"/>
- *     <enumeration value="MXP"/>
- *     <enumeration value="NOK"/>
- *     <enumeration value="NZD"/>
- *     <enumeration value="PLZ"/>
- *     <enumeration value="ROL"/>
- *     <enumeration value="SEK"/>
- *     <enumeration value="SGD"/>
- *     <enumeration value="SIT"/>
- *     <enumeration value="SKK"/>
- *     <enumeration value="SUR"/>
- *     <enumeration value="SZR"/>
- *     <enumeration value="TND"/>
- *     <enumeration value="TRL"/>
- *     <enumeration value="TWD"/>
- *     <enumeration value="USD"/>
- *     <enumeration value="YUN"/>
- *     <enumeration value="ZAR"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "WaehrungsCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum WaehrungsCdType { - - - /** - * Dollar Australien - * - */ - AUD, - - /** - * Lewa Bulgarien - * - */ - BGL, - - /** - * Dollar Kanadien - * - */ - CAD, - - /** - * Franken Schweiz - * - */ - CHF, - - /** - * Pfund Zypern - * - */ - CYP, - - /** - * Krone Tschechien - * - */ - CZR, - - /** - * Krone Dänemark - * - */ - DKK, - - /** - * EURO - * - */ - EUR, - - /** - * Pfund Großbritannien - * - */ - GBP, - - /** - * Pfund Gibraltar - * - */ - GIP, - - /** - * Dollar Hongkong - * - */ - HKD, - - /** - * Kuna Kroatia - * - */ - HRK, - - /** - * Forint Ungarn - * - */ - HUF, - - /** - * Shekel Israel - * - */ - ILS, - - /** - * Rupie Indien - * - */ - INR, - - /** - * Krone Island - * - */ - ISK, - - /** - * Dinar Jordanien - * - */ - JOD, - - /** - * Yen Japan - * - */ - JPY, - - /** - * Pfund Malta - * - */ - MLT, - - /** - * Peso Mexiko - * - */ - MXP, - - /** - * Krone Norwegen - * - */ - NOK, - - /** - * Dollar Neuseeland - * - */ - NZD, - - /** - * Zloty Polen - * - */ - PLZ, - - /** - * Lau Rumänien - * - */ - ROL, - - /** - * Krone Schweden - * - */ - SEK, - - /** - * Dollar Singapur - * - */ - SGD, - - /** - * Tolar Slowenien - * - */ - SIT, - - /** - * Krone Slowakei - * - */ - SKK, - - /** - * Rubel Rußland - * - */ - SUR, - - /** - * Sonderziehungsrecht - * - */ - SZR, - - /** - * Dinar Tunesien - * - */ - TND, - - /** - * Lira Türkei - * - */ - TRL, - - /** - * Dollar Taiwan - * - */ - TWD, - - /** - * US Dollar $ - * - */ - USD, - - /** - * Dinar Jugoslawien-Rest - * - */ - YUN, - - /** - * Rand Südafrika - * - */ - ZAR; - - public String value() { - return name(); - } - - public static WaehrungsCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ZAHLUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ZAHLUNGType.java deleted file mode 100644 index 0af941af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/ZAHLUNGType.java +++ /dev/null @@ -1,355 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_15; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für ZAHLUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZAHLUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kontonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZAHLUNG_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZAHLUNGType { - - @XmlAttribute(name = "ZahlungsLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int zahlungsLfnr; - @XmlAttribute(name = "WaehrungsCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ZahlBetrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal zahlBetrag; - @XmlAttribute(name = "ZahlDat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zahlDat; - @XmlAttribute(name = "ZahlGrundCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlGrundCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlWegCd; - @XmlAttribute(name = "BLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String blz; - @XmlAttribute(name = "Kontonr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kontonr; - @XmlAttribute(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bic; - @XmlAttribute(name = "IBAN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String iban; - - /** - * Ruft den Wert der zahlungsLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getZahlungsLfnr() { - return zahlungsLfnr; - } - - /** - * Legt den Wert der zahlungsLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlungsLfnr(int value) { - this.zahlungsLfnr = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der zahlBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getZahlBetrag() { - return zahlBetrag; - } - - /** - * Legt den Wert der zahlBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlBetrag(BigDecimal value) { - this.zahlBetrag = value; - } - - /** - * Ruft den Wert der zahlDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZahlDat() { - return zahlDat; - } - - /** - * Legt den Wert der zahlDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlDat(XMLGregorianCalendar value) { - this.zahlDat = value; - } - - /** - * Ruft den Wert der zahlGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlGrundCd() { - return zahlGrundCd; - } - - /** - * Legt den Wert der zahlGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlGrundCd(String value) { - this.zahlGrundCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der kontonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKontonr() { - return kontonr; - } - - /** - * Legt den Wert der kontonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKontonr(String value) { - this.kontonr = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der iban-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getIBAN() { - return iban; - } - - /** - * Legt den Wert der iban-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIBAN(String value) { - this.iban = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/package-info.java deleted file mode 100644 index dfc783d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds2Types.v2_15; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ADRESSEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ADRESSEType.java new file mode 100644 index 00000000..3106dab7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ADRESSEType.java @@ -0,0 +1,273 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.RisikoAdresseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für ADRESSE_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ADRESSE_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ADRESSE_Type") +@XmlSeeAlso({ + RisikoAdresseType.class +}) +public class ADRESSEType { + + @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 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/BBArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/BBArtCdType.java new file mode 100644 index 00000000..362e3f42 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/BBArtCdType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für BBArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="BBArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="ABL"/>
+ *     <enumeration value="ERL"/>
+ *     <enumeration value="SLF"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "BBArtCd_Type") +@XmlEnum +public enum BBArtCdType { + + + /** + * Ablebensfall + * + */ + ABL, + + /** + * Erlebensfall + * + */ + ERL, + + /** + * sonstiger Leistungsfall + * + */ + SLF; + + public String value() { + return name(); + } + + public static BBArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/DachungsArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/DachungsArtCdType.java similarity index 85% rename from OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/DachungsArtCdType.java rename to OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/DachungsArtCdType.java index a1ce2a7b..142109e5 100644 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_15/DachungsArtCdType.java +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/DachungsArtCdType.java @@ -1,9 +1,8 @@ -package at.vvo.omds.types.omds2Types.v2_15; +package at.vvo.omds.types.omds2Types.v2_16; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; /** @@ -31,7 +30,6 @@ import javax.xml.bind.annotation.XmlType; */ @XmlType(name = "DachungsArtCd_Type") @XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") public enum DachungsArtCdType { @@ -54,7 +52,7 @@ public enum DachungsArtCdType { EP, /** - * Blec + * Blech * */ BL, diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAntragType.java new file mode 100644 index 00000000..f2d2ce83 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAntragType.java @@ -0,0 +1,86 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Antrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Antrag_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="Datum" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Antrag_Type") +public class ELAntragType { + + @XmlAttribute(name = "Nummer", required = true) + protected String nummer; + @XmlAttribute(name = "Datum") + protected XMLGregorianCalendar datum; + + /** + * Ruft den Wert der nummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Legt den Wert der nummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAnzahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAnzahlType.java new file mode 100644 index 00000000..50032e9c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELAnzahlType.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Anzahl_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Anzahl_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Bezeichnung" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Anzahl_Type") +public class ELAnzahlType { + + @XmlAttribute(name = "Bezeichnung", required = true) + protected String bezeichnung; + @XmlAttribute(name = "Wert", required = true) + protected BigDecimal wert; + + /** + * 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 wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBetragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBetragType.java new file mode 100644 index 00000000..d7d59379 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBetragType.java @@ -0,0 +1,182 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Betrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Betrag_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="BetragArtCd" use="required" type="{urn:omds20}BetragArtCd_Type" />
+ *       <attribute name="Datum" type="{urn:omds20}Datum" />
+ *       <attribute name="Bezeichnung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="Wert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="20"/>
+ *             <fractionDigits value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Betrag_Type") +public class ELBetragType { + + @XmlAttribute(name = "BetragArtCd", required = true) + protected String betragArtCd; + @XmlAttribute(name = "Datum") + protected XMLGregorianCalendar datum; + @XmlAttribute(name = "Bezeichnung") + protected String bezeichnung; + @XmlAttribute(name = "WaehrungsCd") + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "Wert", required = true) + protected BigDecimal wert; + + /** + * Ruft den Wert der betragArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetragArtCd() { + return betragArtCd; + } + + /** + * Legt den Wert der betragArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetragArtCd(String value) { + this.betragArtCd = 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 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 waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBezugsberechtigungType.java new file mode 100644 index 00000000..2ce539ac --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELBezugsberechtigungType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Bezugsberechtigung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Bezugsberechtigung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
+ *       <attribute name="BBTxt" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="255"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Bezugsberechtigung_Type") +public class ELBezugsberechtigungType { + + @XmlAttribute(name = "BBArtCd", required = true) + protected BBArtCdType bbArtCd; + @XmlAttribute(name = "BBTxt", required = true) + protected String bbTxt; + + /** + * Ruft den Wert der bbArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link BBArtCdType } + * + */ + public BBArtCdType getBBArtCd() { + return bbArtCd; + } + + /** + * Legt den Wert der bbArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BBArtCdType } + * + */ + public void setBBArtCd(BBArtCdType value) { + this.bbArtCd = value; + } + + /** + * Ruft den Wert der bbTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBBTxt() { + return bbTxt; + } + + /** + * Legt den Wert der bbTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBBTxt(String value) { + this.bbTxt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEinstufungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEinstufungType.java new file mode 100644 index 00000000..b0504b9b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEinstufungType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Einstufung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Einstufung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
+ *       <attribute name="EstWert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="5"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Einstufung_Type") +public class ELEinstufungType { + + @XmlAttribute(name = "EstArtCd", required = true) + protected EstArtCdType estArtCd; + @XmlAttribute(name = "EstWert", required = true) + protected String estWert; + + /** + * Ruft den Wert der estArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link EstArtCdType } + * + */ + public EstArtCdType getEstArtCd() { + return estArtCd; + } + + /** + * Legt den Wert der estArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link EstArtCdType } + * + */ + public void setEstArtCd(EstArtCdType value) { + this.estArtCd = value; + } + + /** + * Ruft den Wert der estWert-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstWert() { + return estWert; + } + + /** + * Legt den Wert der estWert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstWert(String value) { + this.estWert = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEntscheidungsfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEntscheidungsfrageType.java new file mode 100644 index 00000000..6889c10f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELEntscheidungsfrageType.java @@ -0,0 +1,85 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Entscheidungsfrage_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Entscheidungsfrage_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
+ *       <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Entscheidungsfrage_Type") +public class ELEntscheidungsfrageType { + + @XmlAttribute(name = "EFrageCd", required = true) + protected String eFrageCd; + @XmlAttribute(name = "EFrageAntw", required = true) + protected String eFrageAntw; + + /** + * Ruft den Wert der eFrageCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEFrageCd() { + return eFrageCd; + } + + /** + * Legt den Wert der eFrageCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEFrageCd(String value) { + this.eFrageCd = value; + } + + /** + * Ruft den Wert der eFrageAntw-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEFrageAntw() { + return eFrageAntw; + } + + /** + * Legt den Wert der eFrageAntw-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEFrageAntw(String value) { + this.eFrageAntw = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELFlaecheType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELFlaecheType.java new file mode 100644 index 00000000..ad677917 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELFlaecheType.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Flaeche_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Flaeche_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="FlaechenAttributCd" use="required" type="{urn:omds20}FlaechenAttributCd_Type" />
+ *       <attribute name="Nummer">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="InnenFlaeche" type="{urn:omds20}decimal" />
+ *       <attribute name="VerbauteFlaeche" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Flaeche_Type") +public class ELFlaecheType { + + @XmlAttribute(name = "FlaechenAttributCd", required = true) + protected FlaechenAttributCdType flaechenAttributCd; + @XmlAttribute(name = "Nummer") + protected String nummer; + @XmlAttribute(name = "InnenFlaeche") + protected BigDecimal innenFlaeche; + @XmlAttribute(name = "VerbauteFlaeche") + protected BigDecimal verbauteFlaeche; + + /** + * Ruft den Wert der flaechenAttributCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link FlaechenAttributCdType } + * + */ + public FlaechenAttributCdType getFlaechenAttributCd() { + return flaechenAttributCd; + } + + /** + * Legt den Wert der flaechenAttributCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FlaechenAttributCdType } + * + */ + public void setFlaechenAttributCd(FlaechenAttributCdType value) { + this.flaechenAttributCd = value; + } + + /** + * Ruft den Wert der nummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Legt den Wert der nummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Ruft den Wert der innenFlaeche-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getInnenFlaeche() { + return innenFlaeche; + } + + /** + * Legt den Wert der innenFlaeche-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setInnenFlaeche(BigDecimal value) { + this.innenFlaeche = value; + } + + /** + * Ruft den Wert der verbauteFlaeche-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getVerbauteFlaeche() { + return verbauteFlaeche; + } + + /** + * Legt den Wert der verbauteFlaeche-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setVerbauteFlaeche(BigDecimal value) { + this.verbauteFlaeche = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGewinnbeteiligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGewinnbeteiligungType.java new file mode 100644 index 00000000..80352b75 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGewinnbeteiligungType.java @@ -0,0 +1,87 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Gewinnbeteiligung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Gewinnbeteiligung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Gewinnbeteiligung_Type") +public class ELGewinnbeteiligungType { + + @XmlAttribute(name = "Datum", required = true) + protected XMLGregorianCalendar datum; + @XmlAttribute(name = "Wert", required = true) + protected BigDecimal wert; + + /** + * 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 wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGrenzwertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGrenzwertType.java new file mode 100644 index 00000000..f631b01b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELGrenzwertType.java @@ -0,0 +1,119 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Grenzwert_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Grenzwert_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
+ *       <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="GrwTyp">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Grenzwert_Type") +public class ELGrenzwertType { + + @XmlAttribute(name = "GrwArtCd", required = true) + protected GrwArtCdType grwArtCd; + @XmlAttribute(name = "GrWert", required = true) + protected BigDecimal grWert; + @XmlAttribute(name = "GrwTyp") + protected String grwTyp; + + /** + * Ruft den Wert der grwArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link GrwArtCdType } + * + */ + public GrwArtCdType getGrwArtCd() { + return grwArtCd; + } + + /** + * Legt den Wert der grwArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GrwArtCdType } + * + */ + public void setGrwArtCd(GrwArtCdType value) { + this.grwArtCd = value; + } + + /** + * Ruft den Wert der grWert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGrWert() { + return grWert; + } + + /** + * Legt den Wert der grWert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGrWert(BigDecimal value) { + this.grWert = value; + } + + /** + * Ruft den Wert der grwTyp-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGrwTyp() { + return grwTyp; + } + + /** + * Legt den Wert der grwTyp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGrwTyp(String value) { + this.grwTyp = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIdentifizierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIdentifizierungType.java new file mode 100644 index 00000000..9e4ed444 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIdentifizierungType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Identifizierung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Identifizierung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
+ *       <attribute name="IdfSchluessel" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="IdfDatum" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Identifizierung_Type") +public class ELIdentifizierungType { + + @XmlAttribute(name = "IdfArtCd", required = true) + protected IdfArtCdType idfArtCd; + @XmlAttribute(name = "IdfSchluessel", required = true) + protected String idfSchluessel; + @XmlAttribute(name = "IdfDatum") + protected XMLGregorianCalendar idfDatum; + + /** + * Ruft den Wert der idfArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link IdfArtCdType } + * + */ + public IdfArtCdType getIdfArtCd() { + return idfArtCd; + } + + /** + * Legt den Wert der idfArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link IdfArtCdType } + * + */ + public void setIdfArtCd(IdfArtCdType value) { + this.idfArtCd = value; + } + + /** + * Ruft den Wert der idfSchluessel-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdfSchluessel() { + return idfSchluessel; + } + + /** + * Legt den Wert der idfSchluessel-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdfSchluessel(String value) { + this.idfSchluessel = value; + } + + /** + * Ruft den Wert der idfDatum-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getIdfDatum() { + return idfDatum; + } + + /** + * Legt den Wert der idfDatum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setIdfDatum(XMLGregorianCalendar value) { + this.idfDatum = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIndexType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIndexType.java new file mode 100644 index 00000000..fad4be0d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELIndexType.java @@ -0,0 +1,116 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Index_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Index_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
+ *       <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
+ *       <attribute name="Wert" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Index_Type") +public class ELIndexType { + + @XmlAttribute(name = "IndexArtCd", required = true) + protected String indexArtCd; + @XmlAttribute(name = "Datum") + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar datum; + @XmlAttribute(name = "Wert") + protected BigDecimal wert; + + /** + * Ruft den Wert der indexArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndexArtCd() { + return indexArtCd; + } + + /** + * Legt den Wert der indexArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndexArtCd(String value) { + this.indexArtCd = 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 wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKFZKennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKFZKennzeichenType.java new file mode 100644 index 00000000..bd9cf9da --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKFZKennzeichenType.java @@ -0,0 +1,85 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-KFZ-Kennzeichen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-KFZ-Kennzeichen_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Pol_Kennz" use="required" type="{urn:omds20}Pol_Kennz_Type" />
+ *       <attribute name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-KFZ-Kennzeichen_Type") +public class ELKFZKennzeichenType { + + @XmlAttribute(name = "Pol_Kennz", required = true) + protected String polKennz; + @XmlAttribute(name = "Fahrgestnr") + protected String fahrgestnr; + + /** + * Ruft den Wert der polKennz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolKennz() { + return polKennz; + } + + /** + * Legt den Wert der polKennz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolKennz(String value) { + this.polKennz = value; + } + + /** + * Ruft den Wert der fahrgestnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestnr() { + return fahrgestnr; + } + + /** + * Legt den Wert der fahrgestnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestnr(String value) { + this.fahrgestnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKlauselType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKlauselType.java new file mode 100644 index 00000000..5ae6b176 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKlauselType.java @@ -0,0 +1,65 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Klausel_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Klausel_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Klauselnr" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="26"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Klausel_Type") +public class ELKlauselType { + + @XmlAttribute(name = "Klauselnr", required = true) + protected String klauselnr; + + /** + * Ruft den Wert der klauselnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKlauselnr() { + return klauselnr; + } + + /** + * Legt den Wert der klauselnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKlauselnr(String value) { + this.klauselnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKommunikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKommunikationType.java new file mode 100644 index 00000000..305ff413 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELKommunikationType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Kommunikation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Kommunikation_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
+ *       <attribute name="Kennung" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="255"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Kommunikation_Type") +public class ELKommunikationType { + + @XmlAttribute(name = "KomArtCd", required = true) + protected String komArtCd; + @XmlAttribute(name = "Kennung", required = true) + protected String kennung; + + /** + * Ruft den Wert der komArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKomArtCd() { + return komArtCd; + } + + /** + * Legt den Wert der komArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKomArtCd(String value) { + this.komArtCd = value; + } + + /** + * Ruft den Wert der kennung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennung() { + return kennung; + } + + /** + * Legt den Wert der kennung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennung(String value) { + this.kennung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELLegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELLegitimationType.java new file mode 100644 index 00000000..754f98c0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELLegitimationType.java @@ -0,0 +1,185 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.LegitimationType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Legitimation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Legitimation_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
+ *       <attribute name="Ausstellungsbehoerde">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Datum" type="{urn:omds20}Datum" />
+ *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
+ *       <attribute name="Nummer" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Legitimation_Type") +@XmlSeeAlso({ + LegitimationType.class +}) +public class ELLegitimationType { + + @XmlAttribute(name = "LegArtCd", required = true) + protected String legArtCd; + @XmlAttribute(name = "Ausstellungsbehoerde") + protected String ausstellungsbehoerde; + @XmlAttribute(name = "Datum") + protected XMLGregorianCalendar datum; + @XmlAttribute(name = "GueltigBis") + protected XMLGregorianCalendar gueltigBis; + @XmlAttribute(name = "Nummer", required = true) + protected String nummer; + + /** + * Ruft den Wert der legArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegArtCd() { + return legArtCd; + } + + /** + * Legt den Wert der legArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegArtCd(String value) { + this.legArtCd = value; + } + + /** + * Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAusstellungsbehoerde() { + return ausstellungsbehoerde; + } + + /** + * Legt den Wert der ausstellungsbehoerde-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAusstellungsbehoerde(String value) { + this.ausstellungsbehoerde = 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 gueltigBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigBis() { + return gueltigBis; + } + + /** + * Legt den Wert der gueltigBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigBis(XMLGregorianCalendar value) { + this.gueltigBis = value; + } + + /** + * Ruft den Wert der nummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Legt den Wert der nummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektType.java new file mode 100644 index 00000000..f82648e1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektType.java @@ -0,0 +1,52 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Objekt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Objekt_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Objekt_Type") +public class ELObjektType { + + @XmlAttribute(name = "ObjLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int objLfnr; + + /** + * Ruft den Wert der objLfnr-Eigenschaft ab. + * + */ + public int getObjLfnr() { + return objLfnr; + } + + /** + * Legt den Wert der objLfnr-Eigenschaft fest. + * + */ + public void setObjLfnr(int value) { + this.objLfnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektdatenType.java new file mode 100644 index 00000000..ab03b7bd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELObjektdatenType.java @@ -0,0 +1,125 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Objektdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Objektdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
+ *       <attribute name="Wert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="10"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="ObjektdatenInfo">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="60"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Objektdaten_Type") +public class ELObjektdatenType { + + @XmlAttribute(name = "ObjektdatenCd", required = true) + protected String objektdatenCd; + @XmlAttribute(name = "Wert", required = true) + protected String wert; + @XmlAttribute(name = "ObjektdatenInfo") + protected String objektdatenInfo; + + /** + * Ruft den Wert der objektdatenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjektdatenCd() { + return objektdatenCd; + } + + /** + * Legt den Wert der objektdatenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjektdatenCd(String value) { + this.objektdatenCd = value; + } + + /** + * Ruft den Wert der wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWert(String value) { + this.wert = value; + } + + /** + * Ruft den Wert der objektdatenInfo-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjektdatenInfo() { + return objektdatenInfo; + } + + /** + * Legt den Wert der objektdatenInfo-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjektdatenInfo(String value) { + this.objektdatenInfo = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPolizzennummerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPolizzennummerType.java new file mode 100644 index 00000000..a787b84e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPolizzennummerType.java @@ -0,0 +1,85 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Polizzennummer_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Polizzennummer_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
+ *       <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Polizzennummer_Type") +public class ELPolizzennummerType { + + @XmlAttribute(name = "PolArtCd", required = true) + protected PolArtCdType polArtCd; + @XmlAttribute(name = "PolNr", required = true) + protected String polNr; + + /** + * Ruft den Wert der polArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PolArtCdType } + * + */ + public PolArtCdType getPolArtCd() { + return polArtCd; + } + + /** + * Legt den Wert der polArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PolArtCdType } + * + */ + public void setPolArtCd(PolArtCdType value) { + this.polArtCd = value; + } + + /** + * Ruft den Wert der polNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolNr() { + return polNr; + } + + /** + * Legt den Wert der polNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolNr(String value) { + this.polNr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienfreistellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienfreistellungType.java new file mode 100644 index 00000000..c597e5b4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienfreistellungType.java @@ -0,0 +1,113 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Praemienfreistellung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Praemienfreistellung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
+ *       <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="PfrEnde" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Praemienfreistellung_Type") +public class ELPraemienfreistellungType { + + @XmlAttribute(name = "PfrArtCd", required = true) + protected String pfrArtCd; + @XmlAttribute(name = "PfrBeg", required = true) + protected XMLGregorianCalendar pfrBeg; + @XmlAttribute(name = "PfrEnde") + protected XMLGregorianCalendar pfrEnde; + + /** + * Ruft den Wert der pfrArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPfrArtCd() { + return pfrArtCd; + } + + /** + * Legt den Wert der pfrArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPfrArtCd(String value) { + this.pfrArtCd = value; + } + + /** + * Ruft den Wert der pfrBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPfrBeg() { + return pfrBeg; + } + + /** + * Legt den Wert der pfrBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPfrBeg(XMLGregorianCalendar value) { + this.pfrBeg = value; + } + + /** + * Ruft den Wert der pfrEnde-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPfrEnde() { + return pfrEnde; + } + + /** + * Legt den Wert der pfrEnde-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPfrEnde(XMLGregorianCalendar value) { + this.pfrEnde = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienkorrekturType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienkorrekturType.java new file mode 100644 index 00000000..f3ff8807 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELPraemienkorrekturType.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Praemienkorrektur_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Praemienkorrektur_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
+ *       <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
+ *       <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
+ *       <attribute name="PraemKorrText">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Praemienkorrektur_Type") +public class ELPraemienkorrekturType { + + @XmlAttribute(name = "PraemKorrArtCd", required = true) + protected String praemKorrArtCd; + @XmlAttribute(name = "PraemKorrWert") + protected BigDecimal praemKorrWert; + @XmlAttribute(name = "PraemKorrProz") + protected BigDecimal praemKorrProz; + @XmlAttribute(name = "PraemKorrText") + protected String praemKorrText; + + /** + * Ruft den Wert der praemKorrArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPraemKorrArtCd() { + return praemKorrArtCd; + } + + /** + * Legt den Wert der praemKorrArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPraemKorrArtCd(String value) { + this.praemKorrArtCd = value; + } + + /** + * Ruft den Wert der praemKorrWert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemKorrWert() { + return praemKorrWert; + } + + /** + * Legt den Wert der praemKorrWert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemKorrWert(BigDecimal value) { + this.praemKorrWert = value; + } + + /** + * Ruft den Wert der praemKorrProz-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemKorrProz() { + return praemKorrProz; + } + + /** + * Legt den Wert der praemKorrProz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemKorrProz(BigDecimal value) { + this.praemKorrProz = value; + } + + /** + * Ruft den Wert der praemKorrText-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPraemKorrText() { + return praemKorrText; + } + + /** + * Legt den Wert der praemKorrText-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPraemKorrText(String value) { + this.praemKorrText = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvereinbarungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvereinbarungType.java new file mode 100644 index 00000000..3a76d323 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvereinbarungType.java @@ -0,0 +1,65 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Rahmenvereinbarung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Rahmenvereinbarung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="RahmenVebnr" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Rahmenvereinbarung_Type") +public class ELRahmenvereinbarungType { + + @XmlAttribute(name = "RahmenVebnr", required = true) + protected String rahmenVebnr; + + /** + * Ruft den Wert der rahmenVebnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRahmenVebnr() { + return rahmenVebnr; + } + + /** + * Legt den Wert der rahmenVebnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRahmenVebnr(String value) { + this.rahmenVebnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvertragType.java new file mode 100644 index 00000000..f8af2374 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRahmenvertragType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Rahmenvertrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Rahmenvertrag_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="RahmenvertragsartCd" use="required" type="{urn:omds20}RahmenvertragsartCd_Type" />
+ *       <attribute name="Rahmenvertragsnummer" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Rahmenvertrag_Type") +public class ELRahmenvertragType { + + @XmlAttribute(name = "RahmenvertragsartCd", required = true) + protected String rahmenvertragsartCd; + @XmlAttribute(name = "Rahmenvertragsnummer", required = true) + protected String rahmenvertragsnummer; + + /** + * Ruft den Wert der rahmenvertragsartCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRahmenvertragsartCd() { + return rahmenvertragsartCd; + } + + /** + * Legt den Wert der rahmenvertragsartCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRahmenvertragsartCd(String value) { + this.rahmenvertragsartCd = value; + } + + /** + * Ruft den Wert der rahmenvertragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRahmenvertragsnummer() { + return rahmenvertragsnummer; + } + + /** + * Legt den Wert der rahmenvertragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRahmenvertragsnummer(String value) { + this.rahmenvertragsnummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRenteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRenteType.java new file mode 100644 index 00000000..0805fc6a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELRenteType.java @@ -0,0 +1,114 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Rente_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Rente_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
+ *       <attribute name="RntBeg" type="{urn:omds20}Datum" />
+ *       <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Rente_Type") +public class ELRenteType { + + @XmlAttribute(name = "RntRhythmCd", required = true) + protected String rntRhythmCd; + @XmlAttribute(name = "RntBeg") + protected XMLGregorianCalendar rntBeg; + @XmlAttribute(name = "RntBetrag", required = true) + protected BigDecimal rntBetrag; + + /** + * Ruft den Wert der rntRhythmCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRntRhythmCd() { + return rntRhythmCd; + } + + /** + * Legt den Wert der rntRhythmCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRntRhythmCd(String value) { + this.rntRhythmCd = value; + } + + /** + * Ruft den Wert der rntBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRntBeg() { + return rntBeg; + } + + /** + * Legt den Wert der rntBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRntBeg(XMLGregorianCalendar value) { + this.rntBeg = value; + } + + /** + * Ruft den Wert der rntBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getRntBetrag() { + return rntBetrag; + } + + /** + * Legt den Wert der rntBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setRntBetrag(BigDecimal value) { + this.rntBetrag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehalt.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehalt.java new file mode 100644 index 00000000..f558625e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehalt.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds20}EL-Selbstbehalt_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "EL-Selbstbehalt") +public class ELSelbstbehalt + extends ELSelbstbehaltType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehaltType.java new file mode 100644 index 00000000..aa1acfbf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSelbstbehaltType.java @@ -0,0 +1,150 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Selbstbehalt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Selbstbehalt_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
+ *       <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
+ *       <attribute name="SbhProzent" type="{urn:omds20}decimal" />
+ *       <attribute name="SbhText">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Selbstbehalt_Type") +@XmlSeeAlso({ + ELSelbstbehalt.class +}) +public class ELSelbstbehaltType { + + @XmlAttribute(name = "SbhArtCd", required = true) + protected SbhArtCdType sbhArtCd; + @XmlAttribute(name = "SbhBetrag") + protected BigDecimal sbhBetrag; + @XmlAttribute(name = "SbhProzent") + protected BigDecimal sbhProzent; + @XmlAttribute(name = "SbhText") + protected String sbhText; + + /** + * Ruft den Wert der sbhArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link SbhArtCdType } + * + */ + public SbhArtCdType getSbhArtCd() { + return sbhArtCd; + } + + /** + * Legt den Wert der sbhArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SbhArtCdType } + * + */ + public void setSbhArtCd(SbhArtCdType value) { + this.sbhArtCd = value; + } + + /** + * Ruft den Wert der sbhBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSbhBetrag() { + return sbhBetrag; + } + + /** + * Legt den Wert der sbhBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSbhBetrag(BigDecimal value) { + this.sbhBetrag = value; + } + + /** + * Ruft den Wert der sbhProzent-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSbhProzent() { + return sbhProzent; + } + + /** + * Legt den Wert der sbhProzent-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSbhProzent(BigDecimal value) { + this.sbhProzent = value; + } + + /** + * Ruft den Wert der sbhText-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbhText() { + return sbhText; + } + + /** + * Legt den Wert der sbhText-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbhText(String value) { + this.sbhText = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSteuerType.java new file mode 100644 index 00000000..802be69e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELSteuerType.java @@ -0,0 +1,86 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Steuer_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Steuer_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
+ *       <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Steuer_Type") +public class ELSteuerType { + + @XmlAttribute(name = "StArtCd", required = true) + protected String stArtCd; + @XmlAttribute(name = "StBetrag", required = true) + protected BigDecimal stBetrag; + + /** + * Ruft den Wert der stArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStArtCd() { + return stArtCd; + } + + /** + * Legt den Wert der stArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStArtCd(String value) { + this.stArtCd = value; + } + + /** + * Ruft den Wert der stBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getStBetrag() { + return stBetrag; + } + + /** + * Legt den Wert der stBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setStBetrag(BigDecimal value) { + this.stBetrag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELTextType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELTextType.java new file mode 100644 index 00000000..d408317c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELTextType.java @@ -0,0 +1,91 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Text_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Text_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
+ *       <attribute name="TxtInhalt" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Text_Type") +public class ELTextType { + + @XmlAttribute(name = "TxtArtCd", required = true) + protected TxtArtCdType txtArtCd; + @XmlAttribute(name = "TxtInhalt", required = true) + protected String txtInhalt; + + /** + * Ruft den Wert der txtArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link TxtArtCdType } + * + */ + public TxtArtCdType getTxtArtCd() { + return txtArtCd; + } + + /** + * Legt den Wert der txtArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link TxtArtCdType } + * + */ + public void setTxtArtCd(TxtArtCdType value) { + this.txtArtCd = value; + } + + /** + * Ruft den Wert der txtInhalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTxtInhalt() { + return txtInhalt; + } + + /** + * Legt den Wert der txtInhalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTxtInhalt(String value) { + this.txtInhalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELVersicherungssummeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELVersicherungssummeType.java new file mode 100644 index 00000000..3fe5e6aa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELVersicherungssummeType.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Versicherungssumme_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Versicherungssumme_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
+ *       <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
+ *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="VSBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="255"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Versicherungssumme_Type") +public class ELVersicherungssummeType { + + @XmlAttribute(name = "VSArtCd", required = true) + protected VSArtCdType vsArtCd; + @XmlAttribute(name = "VSBetrag", required = true) + protected BigDecimal vsBetrag; + @XmlAttribute(name = "WaehrungsCd") + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "VSBez") + protected String vsBez; + + /** + * Ruft den Wert der vsArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link VSArtCdType } + * + */ + public VSArtCdType getVSArtCd() { + return vsArtCd; + } + + /** + * Legt den Wert der vsArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VSArtCdType } + * + */ + public void setVSArtCd(VSArtCdType value) { + this.vsArtCd = value; + } + + /** + * Ruft den Wert der vsBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getVSBetrag() { + return vsBetrag; + } + + /** + * Legt den Wert der vsBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setVSBetrag(BigDecimal value) { + this.vsBetrag = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der vsBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVSBez() { + return vsBez; + } + + /** + * Legt den Wert der vsBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVSBez(String value) { + this.vsBez = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELZeitraumType.java new file mode 100644 index 00000000..ae11b09a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ELZeitraumType.java @@ -0,0 +1,113 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EL-Zeitraum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EL-Zeitraum_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
+ *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
+ *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EL-Zeitraum_Type") +public class ELZeitraumType { + + @XmlAttribute(name = "ZRArtCd", required = true) + protected String zrArtCd; + @XmlAttribute(name = "ZRBeg") + protected XMLGregorianCalendar zrBeg; + @XmlAttribute(name = "ZREnd") + protected XMLGregorianCalendar zrEnd; + + /** + * Ruft den Wert der zrArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZRArtCd() { + return zrArtCd; + } + + /** + * Legt den Wert der zrArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZRArtCd(String value) { + this.zrArtCd = value; + } + + /** + * Ruft den Wert der zrBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZRBeg() { + return zrBeg; + } + + /** + * Legt den Wert der zrBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZRBeg(XMLGregorianCalendar value) { + this.zrBeg = value; + } + + /** + * Ruft den Wert der zrEnd-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZREnd() { + return zrEnd; + } + + /** + * Legt den Wert der zrEnd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZREnd(XMLGregorianCalendar value) { + this.zrEnd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/Entsch2Type.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/Entsch2Type.java new file mode 100644 index 00000000..aad3bb36 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/Entsch2Type.java @@ -0,0 +1,39 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Entsch2_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="Entsch2_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <minLength value="1"/>
+ *     <maxLength value="1"/>
+ *     <enumeration value="J"/>
+ *     <enumeration value="N"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "Entsch2_Type") +@XmlEnum +public enum Entsch2Type { + + J, + N; + + public String value() { + return name(); + } + + public static Entsch2Type fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/EstArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/EstArtCdType.java new file mode 100644 index 00000000..66262532 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/EstArtCdType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für EstArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="EstArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="G"/>
+ *     <enumeration value="T"/>
+ *     <enumeration value="TVU"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "EstArtCd_Type") +@XmlEnum +public enum EstArtCdType { + + + /** + * Gefahrenklasse + * + */ + G, + + /** + * Tarif-, Bonus/Malus-Stufe offiziell + * + */ + T, + + /** + * Tarif-, Bonus/Malus-Stufe VU-intern + * + */ + TVU; + + public String value() { + return name(); + } + + public static EstArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FONDSType.java new file mode 100644 index 00000000..8dc15b4c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FONDSType.java @@ -0,0 +1,276 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für FONDS_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="FONDS_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
+ *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
+ *       <attribute name="Bezeichnung" type="{urn:omds20}FondsBez_Type" />
+ *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
+ *       <attribute name="AnteilWertpapier" use="required" type="{urn:omds20}FondsAnteil_Type" />
+ *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
+ *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
+ *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="Stichtag" use="required" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FONDS_Type") +public class FONDSType { + + @XmlAttribute(name = "ISIN", required = true) + protected String isin; + @XmlAttribute(name = "WKN") + protected String wkn; + @XmlAttribute(name = "Bezeichnung") + protected String bezeichnung; + @XmlAttribute(name = "Kurs") + protected BigDecimal kurs; + @XmlAttribute(name = "AnteilWertpapier", required = true) + protected BigDecimal anteilWertpapier; + @XmlAttribute(name = "Prozentsatz", required = true) + protected BigDecimal prozentsatz; + @XmlAttribute(name = "Wert") + protected BigDecimal wert; + @XmlAttribute(name = "WaehrungsCd") + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "Stichtag", required = true) + protected XMLGregorianCalendar stichtag; + + /** + * Ruft den Wert der isin-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getISIN() { + return isin; + } + + /** + * Legt den Wert der isin-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setISIN(String value) { + this.isin = value; + } + + /** + * Ruft den Wert der wkn-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWKN() { + return wkn; + } + + /** + * Legt den Wert der wkn-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWKN(String value) { + this.wkn = 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 kurs-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKurs() { + return kurs; + } + + /** + * Legt den Wert der kurs-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKurs(BigDecimal value) { + this.kurs = value; + } + + /** + * Ruft den Wert der anteilWertpapier-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAnteilWertpapier() { + return anteilWertpapier; + } + + /** + * Legt den Wert der anteilWertpapier-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAnteilWertpapier(BigDecimal value) { + this.anteilWertpapier = value; + } + + /** + * Ruft den Wert der prozentsatz-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProzentsatz() { + return prozentsatz; + } + + /** + * Legt den Wert der prozentsatz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProzentsatz(BigDecimal value) { + this.prozentsatz = value; + } + + /** + * Ruft den Wert der wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der stichtag-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStichtag() { + return stichtag; + } + + /** + * Legt den Wert der stichtag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStichtag(XMLGregorianCalendar value) { + this.stichtag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FlaechenAttributCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FlaechenAttributCdType.java new file mode 100644 index 00000000..4afe8728 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/FlaechenAttributCdType.java @@ -0,0 +1,89 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für FlaechenAttributCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="FlaechenAttributCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="DB"/>
+ *     <enumeration value="EG"/>
+ *     <enumeration value="SW"/>
+ *     <enumeration value="MA"/>
+ *     <enumeration value="KM"/>
+ *     <enumeration value="KO"/>
+ *     <enumeration value="WF"/>
+ *     <enumeration value="GF"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "FlaechenAttributCd_Type") +@XmlEnum +public enum FlaechenAttributCdType { + + + /** + * Dachboden + * + */ + DB, + + /** + * Erdgeschoß + * + */ + EG, + + /** + * Stockwerk + * + */ + SW, + + /** + * Mansarde + * + */ + MA, + + /** + * Keller mit Wohnnutzung + * + */ + KM, + + /** + * Keller ohne Wohnnutzung + * + */ + KO, + + /** + * Wohnfläche + * + */ + WF, + + /** + * Grundfläche + * + */ + GF; + + public String value() { + return name(); + } + + public static FlaechenAttributCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GESCHAEDIGTESOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GESCHAEDIGTESOBJEKTType.java new file mode 100644 index 00000000..bb106d93 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GESCHAEDIGTESOBJEKTType.java @@ -0,0 +1,265 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GESCHAEDIGTES_OBJEKT_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="SchadenBeschreibung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
+ *       <attribute name="VUNameGesch">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="SchadennrGesch">
+ *         <simpleType>
+ *           <restriction base="{urn:omds20}Schadennr">
+ *             <maxLength value="35"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="Kennz_GeschKfz">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="12"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type") +public class GESCHAEDIGTESOBJEKTType { + + @XmlAttribute(name = "GeschObjektLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int geschObjektLfnr; + @XmlAttribute(name = "SchadenBeschreibung") + protected String schadenBeschreibung; + @XmlAttribute(name = "VUNrGesch") + protected String vuNrGesch; + @XmlAttribute(name = "VUNameGesch") + protected String vuNameGesch; + @XmlAttribute(name = "PolNrGesch") + protected String polNrGesch; + @XmlAttribute(name = "SchadennrGesch") + protected String schadennrGesch; + @XmlAttribute(name = "LandesCd_GeschKfz") + protected String landesCdGeschKfz; + @XmlAttribute(name = "Kennz_GeschKfz") + protected String kennzGeschKfz; + + /** + * Ruft den Wert der geschObjektLfnr-Eigenschaft ab. + * + */ + public int getGeschObjektLfnr() { + return geschObjektLfnr; + } + + /** + * Legt den Wert der geschObjektLfnr-Eigenschaft fest. + * + */ + public void setGeschObjektLfnr(int value) { + this.geschObjektLfnr = value; + } + + /** + * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadenBeschreibung() { + return schadenBeschreibung; + } + + /** + * Legt den Wert der schadenBeschreibung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadenBeschreibung(String value) { + this.schadenBeschreibung = value; + } + + /** + * Ruft den Wert der vuNrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUNrGesch() { + return vuNrGesch; + } + + /** + * Legt den Wert der vuNrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUNrGesch(String value) { + this.vuNrGesch = value; + } + + /** + * Ruft den Wert der vuNameGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUNameGesch() { + return vuNameGesch; + } + + /** + * Legt den Wert der vuNameGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUNameGesch(String value) { + this.vuNameGesch = value; + } + + /** + * Ruft den Wert der polNrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolNrGesch() { + return polNrGesch; + } + + /** + * Legt den Wert der polNrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolNrGesch(String value) { + this.polNrGesch = value; + } + + /** + * Ruft den Wert der schadennrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennrGesch() { + return schadennrGesch; + } + + /** + * Legt den Wert der schadennrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennrGesch(String value) { + this.schadennrGesch = value; + } + + /** + * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLandesCdGeschKfz() { + return landesCdGeschKfz; + } + + /** + * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLandesCdGeschKfz(String value) { + this.landesCdGeschKfz = value; + } + + /** + * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennzGeschKfz() { + return kennzGeschKfz; + } + + /** + * Legt den Wert der kennzGeschKfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennzGeschKfz(String value) { + this.kennzGeschKfz = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GesFormCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GesFormCdType.java new file mode 100644 index 00000000..d12ed882 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GesFormCdType.java @@ -0,0 +1,145 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für GesFormCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="GesFormCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="GBH"/>
+ *     <enumeration value="AG"/>
+ *     <enumeration value="OG"/>
+ *     <enumeration value="KG"/>
+ *     <enumeration value="GBR"/>
+ *     <enumeration value="SG"/>
+ *     <enumeration value="GEN"/>
+ *     <enumeration value="EUR"/>
+ *     <enumeration value="EU"/>
+ *     <enumeration value="GKG"/>
+ *     <enumeration value="PS"/>
+ *     <enumeration value="SP"/>
+ *     <enumeration value="VE"/>
+ *     <enumeration value="WEG"/>
+ *     <enumeration value="EWI"/>
+ *     <enumeration value="ARG"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "GesFormCd_Type") +@XmlEnum +public enum GesFormCdType { + + + /** + * Gesellschaft mit beschränkter Haftung + * + */ + GBH, + + /** + * Aktiengesellschaft + * + */ + AG, + + /** + * Offene Gesellschaft + * + */ + OG, + + /** + * Kommanditgesellschaft + * + */ + KG, + + /** + * Gesellschaft bürgerlichen Rechts + * + */ + GBR, + + /** + * Stille Gesellschaft + * + */ + SG, + + /** + * Erwerbs- und Wirtschaftsgenossenschaft + * + */ + GEN, + + /** + * Ausländ./EU Rechtsform + * + */ + EUR, + + /** + * Einzelunternehmen + * + */ + EU, + + /** + * GmbH und Co KG + * + */ + GKG, + + /** + * Privatstiftung + * + */ + PS, + + /** + * Sparkasse + * + */ + SP, + + /** + * Verein + * + */ + VE, + + /** + * Wohnungseigentümergemeinschaft + * + */ + WEG, + + /** + * Europäische Wirtschaftliche Interessenvereinigung + * + */ + EWI, + + /** + * Arbeitsgemeinschaft + * + */ + ARG; + + public String value() { + return name(); + } + + public static GesFormCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GrwArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GrwArtCdType.java new file mode 100644 index 00000000..60fb2911 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/GrwArtCdType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für GrwArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="GrwArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="DFP"/>
+ *     <enumeration value="KAM"/>
+ *     <enumeration value="KAT"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "GrwArtCd_Type") +@XmlEnum +public enum GrwArtCdType { + + + /** + * DauerfolgenProz(UV) + * + */ + DFP, + + /** + * Karenzmonate + * + */ + KAM, + + /** + * Karenztage + * + */ + KAT; + + public String value() { + return name(); + } + + public static GrwArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/IdfArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/IdfArtCdType.java new file mode 100644 index 00000000..b09ae56d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/IdfArtCdType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für IdfArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="IdfArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="FB"/>
+ *     <enumeration value="SV"/>
+ *     <enumeration value="VB"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "IdfArtCd_Type") +@XmlEnum +public enum IdfArtCdType { + + + /** + * Firmenbuchnummer + * + */ + FB, + + /** + * Sozialversicherungsnr + * + */ + SV, + + /** + * Versicherungsbestätigung + * + */ + VB; + + public String value() { + return name(); + } + + public static IdfArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/KLAUSELType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/KLAUSELType.java new file mode 100644 index 00000000..bbe909dd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/KLAUSELType.java @@ -0,0 +1,187 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für KLAUSEL_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KLAUSEL_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Klauselnr" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="26"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Klauselbez" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Klauseltxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="7998"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="GueltigVon" type="{urn:omds20}Datum" />
+ *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KLAUSEL_Type") +public class KLAUSELType { + + @XmlAttribute(name = "Klauselnr", required = true) + protected String klauselnr; + @XmlAttribute(name = "Klauselbez", required = true) + protected String klauselbez; + @XmlAttribute(name = "Klauseltxt") + protected String klauseltxt; + @XmlAttribute(name = "GueltigVon") + protected XMLGregorianCalendar gueltigVon; + @XmlAttribute(name = "GueltigBis") + protected XMLGregorianCalendar gueltigBis; + + /** + * Ruft den Wert der klauselnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKlauselnr() { + return klauselnr; + } + + /** + * Legt den Wert der klauselnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKlauselnr(String value) { + this.klauselnr = value; + } + + /** + * Ruft den Wert der klauselbez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKlauselbez() { + return klauselbez; + } + + /** + * Legt den Wert der klauselbez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKlauselbez(String value) { + this.klauselbez = value; + } + + /** + * Ruft den Wert der klauseltxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKlauseltxt() { + return klauseltxt; + } + + /** + * Legt den Wert der klauseltxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKlauseltxt(String value) { + this.klauseltxt = value; + } + + /** + * Ruft den Wert der gueltigVon-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigVon() { + return gueltigVon; + } + + /** + * Legt den Wert der gueltigVon-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigVon(XMLGregorianCalendar value) { + this.gueltigVon = value; + } + + /** + * Ruft den Wert der gueltigBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigBis() { + return gueltigBis; + } + + /** + * Legt den Wert der gueltigBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigBis(XMLGregorianCalendar value) { + this.gueltigBis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LOESCHANSTOSSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LOESCHANSTOSSType.java new file mode 100644 index 00000000..12ccb078 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LOESCHANSTOSSType.java @@ -0,0 +1,327 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für LOESCHANSTOSS_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="LOESCHANSTOSS_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit2" />
+ *       <attribute name="SystemQuelle" default="  ">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
+ *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
+ *       <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
+ *       <attribute name="ProvisionsID">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="26"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnverfahrenNr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="32"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LOESCHANSTOSS_Type") +public class LOESCHANSTOSSType { + + @XmlAttribute(name = "LoeschID", required = true) + protected XMLGregorianCalendar loeschID; + @XmlAttribute(name = "SystemQuelle") + protected String systemQuelle; + @XmlAttribute(name = "GueltigAb") + protected XMLGregorianCalendar gueltigAb; + @XmlAttribute(name = "Polizzennr") + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + @XmlAttribute(name = "Personennr") + protected String personennr; + @XmlAttribute(name = "Schadennr") + protected String schadennr; + @XmlAttribute(name = "ProvisionsID") + protected String provisionsID; + @XmlAttribute(name = "MahnverfahrenNr") + protected String mahnverfahrenNr; + @XmlAttribute(name = "LoeschCd", required = true) + protected LoeschCdType loeschCd; + + /** + * Ruft den Wert der loeschID-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLoeschID() { + return loeschID; + } + + /** + * Legt den Wert der loeschID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLoeschID(XMLGregorianCalendar value) { + this.loeschID = value; + } + + /** + * Ruft den Wert der systemQuelle-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSystemQuelle() { + if (systemQuelle == null) { + return " "; + } else { + return systemQuelle; + } + } + + /** + * Legt den Wert der systemQuelle-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSystemQuelle(String value) { + this.systemQuelle = value; + } + + /** + * Ruft den Wert der gueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigAb() { + return gueltigAb; + } + + /** + * Legt den Wert der gueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigAb(XMLGregorianCalendar value) { + this.gueltigAb = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + + /** + * Ruft den Wert der provisionsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvisionsID() { + return provisionsID; + } + + /** + * Legt den Wert der provisionsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvisionsID(String value) { + this.provisionsID = value; + } + + /** + * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnverfahrenNr() { + return mahnverfahrenNr; + } + + /** + * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnverfahrenNr(String value) { + this.mahnverfahrenNr = value; + } + + /** + * Ruft den Wert der loeschCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link LoeschCdType } + * + */ + public LoeschCdType getLoeschCd() { + return loeschCd; + } + + /** + * Legt den Wert der loeschCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link LoeschCdType } + * + */ + public void setLoeschCd(LoeschCdType value) { + this.loeschCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LoeschCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LoeschCdType.java new file mode 100644 index 00000000..39741c7b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/LoeschCdType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für LoeschCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="LoeschCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="M"/>
+ *     <enumeration value="L"/>
+ *     <enumeration value="G"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "LoeschCd_Type") +@XmlEnum +public enum LoeschCdType { + + + /** + * Markieren als nichtmehrversorgt + * + */ + M, + + /** + * Löschen wg.z.B.Falschlieferung + * + */ + L, + + /** + * Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht + * + */ + G; + + public String value() { + return name(); + } + + public static LoeschCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MAHNUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MAHNUNGType.java new file mode 100644 index 00000000..13820890 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MAHNUNGType.java @@ -0,0 +1,707 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für MAHNUNG_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="MAHNUNG_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="MahnverfahrenNr" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="32"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
+ *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
+ *       <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
+ *       <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
+ *       <attribute name="MahnStufeTextVU">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnStelleVU">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnStelleBeauftragt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
+ *       <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
+ *       <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
+ *       <attribute name="MahnStufeTextVUNext">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
+ *       <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
+ *       <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
+ *       <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
+ *       <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
+ *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MAHNUNG_Type", propOrder = { + "elText" +}) +public class MAHNUNGType { + + @XmlElement(name = "EL-Text") + protected List elText; + @XmlAttribute(name = "MahnverfahrenNr", required = true) + protected String mahnverfahrenNr; + @XmlAttribute(name = "MahnungNr") + @XmlSchemaType(name = "positiveInteger") + protected BigInteger mahnungNr; + @XmlAttribute(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + @XmlAttribute(name = "Vermnr", required = true) + protected String vermnr; + @XmlAttribute(name = "MahnBetrag", required = true) + protected BigDecimal mahnBetrag; + @XmlAttribute(name = "MahnSpesen") + protected BigDecimal mahnSpesen; + @XmlAttribute(name = "MahnStufeCd", required = true) + protected String mahnStufeCd; + @XmlAttribute(name = "MahnStufeTextVU") + protected String mahnStufeTextVU; + @XmlAttribute(name = "MahnStelleVU") + protected String mahnStelleVU; + @XmlAttribute(name = "MahnStelleBeauftragt") + protected String mahnStelleBeauftragt; + @XmlAttribute(name = "MahnStufeGueltigAb") + protected XMLGregorianCalendar mahnStufeGueltigAb; + @XmlAttribute(name = "MahnStufeGueltigBis") + protected XMLGregorianCalendar mahnStufeGueltigBis; + @XmlAttribute(name = "MahnStufeCdNext") + protected String mahnStufeCdNext; + @XmlAttribute(name = "MahnStufeTextVUNext") + protected String mahnStufeTextVUNext; + @XmlAttribute(name = "MahnStufeGueltigAbNext") + protected XMLGregorianCalendar mahnStufeGueltigAbNext; + @XmlAttribute(name = "MahnLetzteZahlung") + protected XMLGregorianCalendar mahnLetzteZahlung; + @XmlAttribute(name = "MahnAeltesteFaelligkeit") + protected XMLGregorianCalendar mahnAeltesteFaelligkeit; + @XmlAttribute(name = "MahnAnzahlFaelligkeiten") + @XmlSchemaType(name = "unsignedShort") + protected Integer mahnAnzahlFaelligkeiten; + @XmlAttribute(name = "GrundRuecklaufCd") + protected String grundRuecklaufCd; + @XmlAttribute(name = "MahnDeckungBis") + protected XMLGregorianCalendar mahnDeckungBis; + @XmlAttribute(name = "VtgSparteCd") + protected String vtgSparteCd; + + /** + * Gets the value of the elText property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elText property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELText().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELTextType } + * + * + */ + public List getELText() { + if (elText == null) { + elText = new ArrayList(); + } + return this.elText; + } + + /** + * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnverfahrenNr() { + return mahnverfahrenNr; + } + + /** + * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnverfahrenNr(String value) { + this.mahnverfahrenNr = value; + } + + /** + * Ruft den Wert der mahnungNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMahnungNr() { + return mahnungNr; + } + + /** + * Legt den Wert der mahnungNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMahnungNr(BigInteger value) { + this.mahnungNr = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Ruft den Wert der mahnBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMahnBetrag() { + return mahnBetrag; + } + + /** + * Legt den Wert der mahnBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMahnBetrag(BigDecimal value) { + this.mahnBetrag = value; + } + + /** + * Ruft den Wert der mahnSpesen-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMahnSpesen() { + return mahnSpesen; + } + + /** + * Legt den Wert der mahnSpesen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMahnSpesen(BigDecimal value) { + this.mahnSpesen = value; + } + + /** + * Ruft den Wert der mahnStufeCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStufeCd() { + return mahnStufeCd; + } + + /** + * Legt den Wert der mahnStufeCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStufeCd(String value) { + this.mahnStufeCd = value; + } + + /** + * Ruft den Wert der mahnStufeTextVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStufeTextVU() { + return mahnStufeTextVU; + } + + /** + * Legt den Wert der mahnStufeTextVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStufeTextVU(String value) { + this.mahnStufeTextVU = value; + } + + /** + * Ruft den Wert der mahnStelleVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStelleVU() { + return mahnStelleVU; + } + + /** + * Legt den Wert der mahnStelleVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStelleVU(String value) { + this.mahnStelleVU = value; + } + + /** + * Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStelleBeauftragt() { + return mahnStelleBeauftragt; + } + + /** + * Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStelleBeauftragt(String value) { + this.mahnStelleBeauftragt = value; + } + + /** + * Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnStufeGueltigAb() { + return mahnStufeGueltigAb; + } + + /** + * Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnStufeGueltigAb(XMLGregorianCalendar value) { + this.mahnStufeGueltigAb = value; + } + + /** + * Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnStufeGueltigBis() { + return mahnStufeGueltigBis; + } + + /** + * Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnStufeGueltigBis(XMLGregorianCalendar value) { + this.mahnStufeGueltigBis = value; + } + + /** + * Ruft den Wert der mahnStufeCdNext-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStufeCdNext() { + return mahnStufeCdNext; + } + + /** + * Legt den Wert der mahnStufeCdNext-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStufeCdNext(String value) { + this.mahnStufeCdNext = value; + } + + /** + * Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnStufeTextVUNext() { + return mahnStufeTextVUNext; + } + + /** + * Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnStufeTextVUNext(String value) { + this.mahnStufeTextVUNext = value; + } + + /** + * Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnStufeGueltigAbNext() { + return mahnStufeGueltigAbNext; + } + + /** + * Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) { + this.mahnStufeGueltigAbNext = value; + } + + /** + * Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnLetzteZahlung() { + return mahnLetzteZahlung; + } + + /** + * Legt den Wert der mahnLetzteZahlung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnLetzteZahlung(XMLGregorianCalendar value) { + this.mahnLetzteZahlung = value; + } + + /** + * Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnAeltesteFaelligkeit() { + return mahnAeltesteFaelligkeit; + } + + /** + * Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) { + this.mahnAeltesteFaelligkeit = value; + } + + /** + * Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMahnAnzahlFaelligkeiten() { + return mahnAnzahlFaelligkeiten; + } + + /** + * Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMahnAnzahlFaelligkeiten(Integer value) { + this.mahnAnzahlFaelligkeiten = value; + } + + /** + * Ruft den Wert der grundRuecklaufCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGrundRuecklaufCd() { + return grundRuecklaufCd; + } + + /** + * Legt den Wert der grundRuecklaufCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGrundRuecklaufCd(String value) { + this.grundRuecklaufCd = value; + } + + /** + * Ruft den Wert der mahnDeckungBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMahnDeckungBis() { + return mahnDeckungBis; + } + + /** + * Legt den Wert der mahnDeckungBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMahnDeckungBis(XMLGregorianCalendar value) { + this.mahnDeckungBis = value; + } + + /** + * Ruft den Wert der vtgSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgSparteCd() { + return vtgSparteCd; + } + + /** + * Legt den Wert der vtgSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgSparteCd(String value) { + this.vtgSparteCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MIGRATIONSINFORMATIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MIGRATIONSINFORMATIONType.java new file mode 100644 index 00000000..eae2e2c4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/MIGRATIONSINFORMATIONType.java @@ -0,0 +1,154 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für MIGRATIONSINFORMATION_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="MIGRATIONSINFORMATION_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="MigrationsCd" use="required" type="{urn:omds20}MigrationsCd_Type" />
+ *       <attribute name="Wert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="255"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VorgaengerWert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="255"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MIGRATIONSINFORMATION_Type") +public class MIGRATIONSINFORMATIONType { + + @XmlAttribute(name = "MigrationsCd", required = true) + protected String migrationsCd; + @XmlAttribute(name = "Wert", required = true) + protected String wert; + @XmlAttribute(name = "VorgaengerWert", required = true) + protected String vorgaengerWert; + @XmlAttribute(name = "GueltigAb") + protected XMLGregorianCalendar gueltigAb; + + /** + * Ruft den Wert der migrationsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMigrationsCd() { + return migrationsCd; + } + + /** + * Legt den Wert der migrationsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMigrationsCd(String value) { + this.migrationsCd = value; + } + + /** + * Ruft den Wert der wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWert(String value) { + this.wert = value; + } + + /** + * Ruft den Wert der vorgaengerWert-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVorgaengerWert() { + return vorgaengerWert; + } + + /** + * Legt den Wert der vorgaengerWert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVorgaengerWert(String value) { + this.vorgaengerWert = value; + } + + /** + * Ruft den Wert der gueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigAb() { + return gueltigAb; + } + + /** + * Legt den Wert der gueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigAb(XMLGregorianCalendar value) { + this.gueltigAb = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/NATUERLICHEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/NATUERLICHEPERSONType.java new file mode 100644 index 00000000..96b7efdf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/NATUERLICHEPERSONType.java @@ -0,0 +1,315 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für NATUERLICHE_PERSON_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="NATUERLICHE_PERSON_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Familienname" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Vorname">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="GeschlechtCd" type="{urn:omds20}GeschlechtCd_Type" />
+ *       <attribute name="Gebdat" type="{urn:omds20}Datum" />
+ *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="FamilienstandCd" type="{urn:omds20}FamilienstandCd_Type" />
+ *       <attribute name="GebLandCd" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="HauptWohnLandCd" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
+ *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NATUERLICHE_PERSON_Type") +public class NATUERLICHEPERSONType { + + @XmlAttribute(name = "Familienname", required = true) + protected String familienname; + @XmlAttribute(name = "Vorname") + protected String vorname; + @XmlAttribute(name = "GeschlechtCd") + protected String geschlechtCd; + @XmlAttribute(name = "Gebdat") + protected XMLGregorianCalendar gebdat; + @XmlAttribute(name = "LandesCd") + protected String landesCd; + @XmlAttribute(name = "FamilienstandCd") + protected String familienstandCd; + @XmlAttribute(name = "GebLandCd") + protected String gebLandCd; + @XmlAttribute(name = "HauptWohnLandCd") + protected String hauptWohnLandCd; + @XmlAttribute(name = "PersonID_VU") + protected String personIDVU; + @XmlAttribute(name = "PersonID_Makler") + protected String personIDMakler; + + /** + * Ruft den Wert der familienname-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFamilienname() { + return familienname; + } + + /** + * Legt den Wert der familienname-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFamilienname(String value) { + this.familienname = value; + } + + /** + * Ruft den Wert der vorname-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVorname() { + return vorname; + } + + /** + * Legt den Wert der vorname-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVorname(String value) { + this.vorname = value; + } + + /** + * Ruft den Wert der geschlechtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeschlechtCd() { + return geschlechtCd; + } + + /** + * Legt den Wert der geschlechtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeschlechtCd(String value) { + this.geschlechtCd = value; + } + + /** + * Ruft den Wert der gebdat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGebdat() { + return gebdat; + } + + /** + * Legt den Wert der gebdat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGebdat(XMLGregorianCalendar value) { + this.gebdat = 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 familienstandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFamilienstandCd() { + return familienstandCd; + } + + /** + * Legt den Wert der familienstandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFamilienstandCd(String value) { + this.familienstandCd = value; + } + + /** + * Ruft den Wert der gebLandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebLandCd() { + return gebLandCd; + } + + /** + * Legt den Wert der gebLandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebLandCd(String value) { + this.gebLandCd = value; + } + + /** + * Ruft den Wert der hauptWohnLandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHauptWohnLandCd() { + return hauptWohnLandCd; + } + + /** + * Legt den Wert der hauptWohnLandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHauptWohnLandCd(String value) { + this.hauptWohnLandCd = value; + } + + /** + * Ruft den Wert der personIDVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonIDVU() { + return personIDVU; + } + + /** + * Legt den Wert der personIDVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonIDVU(String value) { + this.personIDVU = value; + } + + /** + * Ruft den Wert der personIDMakler-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonIDMakler() { + return personIDMakler; + } + + /** + * Legt den Wert der personIDMakler-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonIDMakler(String value) { + this.personIDMakler = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/OMDS.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/OMDS.java new file mode 100644 index 00000000..dad5cc5f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/OMDS.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "paket" +}) +@XmlRootElement(name = "OMDS") +public class OMDS { + + @XmlElement(name = "PAKET", required = true) + protected List paket; + + /** + * Gets the value of the paket property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the paket property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPAKET().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PAKET } + * + * + */ + public List getPAKET() { + if (paket == null) { + paket = new ArrayList(); + } + return this.paket; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ObjectFactory.java new file mode 100644 index 00000000..dd4c6963 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ObjectFactory.java @@ -0,0 +1,1181 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds2Types.v2_16 package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation"); + private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL"); + private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS"); + private final static QName _MIGRATIONSINFORMATION_QNAME = new QName("urn:omds20", "MIGRATIONSINFORMATION"); + private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON"); + private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag"); + private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl"); + private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag"); + private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung"); + private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung"); + private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage"); + private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung"); + private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel"); + private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer"); + private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung"); + private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur"); + private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung"); + private final static QName _ELRahmenvertrag_QNAME = new QName("urn:omds20", "EL-Rahmenvertrag"); + private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text"); + private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme"); + private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON"); + private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT"); + private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE"); + private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN"); + private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION"); + private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG"); + private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS"); + private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON"); + private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON"); + private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON"); + private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE"); + private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO"); + private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS"); + private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER"); + private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT"); + private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG"); + private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung"); + private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert"); + private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index"); + private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation"); + private final static QName _ELObjekt_QNAME = new QName("urn:omds20", "EL-Objekt"); + private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten"); + private final static QName _ELFlaeche_QNAME = new QName("urn:omds20", "EL-Flaeche"); + private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente"); + private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer"); + private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum"); + private final static QName _ELKFZKennzeichen_QNAME = new QName("urn:omds20", "EL-KFZ-Kennzeichen"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_16 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link OMDS } + * + */ + public OMDS createOMDS() { + return new OMDS(); + } + + /** + * Create an instance of {@link PAKET } + * + */ + public PAKET createPAKET() { + return new PAKET(); + } + + /** + * Create an instance of {@link VERSUNTERNEHMEN } + * + */ + public VERSUNTERNEHMEN createVERSUNTERNEHMEN() { + return new VERSUNTERNEHMEN(); + } + + /** + * Create an instance of {@link ELKommunikationType } + * + */ + public ELKommunikationType createELKommunikationType() { + return new ELKommunikationType(); + } + + /** + * Create an instance of {@link SCHLUESSELART } + * + */ + public SCHLUESSELART createSCHLUESSELART() { + return new SCHLUESSELART(); + } + + /** + * Create an instance of {@link SCHLUESSEL } + * + */ + public SCHLUESSEL createSCHLUESSEL() { + return new SCHLUESSEL(); + } + + /** + * Create an instance of {@link KLAUSELType } + * + */ + public KLAUSELType createKLAUSELType() { + return new KLAUSELType(); + } + + /** + * Create an instance of {@link LOESCHANSTOSSType } + * + */ + public LOESCHANSTOSSType createLOESCHANSTOSSType() { + return new LOESCHANSTOSSType(); + } + + /** + * Create an instance of {@link MIGRATIONSINFORMATIONType } + * + */ + public MIGRATIONSINFORMATIONType createMIGRATIONSINFORMATIONType() { + return new MIGRATIONSINFORMATIONType(); + } + + /** + * Create an instance of {@link PERSONType } + * + */ + public PERSONType createPERSONType() { + return new PERSONType(); + } + + /** + * Create an instance of {@link VERTRAG } + * + */ + public VERTRAG createVERTRAG() { + return new VERTRAG(); + } + + /** + * Create an instance of {@link VERTRAGType } + * + */ + public VERTRAGType createVERTRAGType() { + return new VERTRAGType(); + } + + /** + * Create an instance of {@link ELAntragType } + * + */ + public ELAntragType createELAntragType() { + return new ELAntragType(); + } + + /** + * Create an instance of {@link ELAnzahlType } + * + */ + public ELAnzahlType createELAnzahlType() { + return new ELAnzahlType(); + } + + /** + * Create an instance of {@link ELBetragType } + * + */ + public ELBetragType createELBetragType() { + return new ELBetragType(); + } + + /** + * Create an instance of {@link ELBezugsberechtigungType } + * + */ + public ELBezugsberechtigungType createELBezugsberechtigungType() { + return new ELBezugsberechtigungType(); + } + + /** + * Create an instance of {@link ELEinstufungType } + * + */ + public ELEinstufungType createELEinstufungType() { + return new ELEinstufungType(); + } + + /** + * Create an instance of {@link ELEntscheidungsfrageType } + * + */ + public ELEntscheidungsfrageType createELEntscheidungsfrageType() { + return new ELEntscheidungsfrageType(); + } + + /** + * Create an instance of {@link ELIdentifizierungType } + * + */ + public ELIdentifizierungType createELIdentifizierungType() { + return new ELIdentifizierungType(); + } + + /** + * Create an instance of {@link ELKlauselType } + * + */ + public ELKlauselType createELKlauselType() { + return new ELKlauselType(); + } + + /** + * Create an instance of {@link ELPolizzennummerType } + * + */ + public ELPolizzennummerType createELPolizzennummerType() { + return new ELPolizzennummerType(); + } + + /** + * Create an instance of {@link ELPraemienfreistellungType } + * + */ + public ELPraemienfreistellungType createELPraemienfreistellungType() { + return new ELPraemienfreistellungType(); + } + + /** + * Create an instance of {@link ELPraemienkorrekturType } + * + */ + public ELPraemienkorrekturType createELPraemienkorrekturType() { + return new ELPraemienkorrekturType(); + } + + /** + * Create an instance of {@link ELRahmenvereinbarungType } + * + */ + public ELRahmenvereinbarungType createELRahmenvereinbarungType() { + return new ELRahmenvereinbarungType(); + } + + /** + * Create an instance of {@link ELRahmenvertragType } + * + */ + public ELRahmenvertragType createELRahmenvertragType() { + return new ELRahmenvertragType(); + } + + /** + * Create an instance of {@link ELSelbstbehalt } + * + */ + public ELSelbstbehalt createELSelbstbehalt() { + return new ELSelbstbehalt(); + } + + /** + * Create an instance of {@link ELSelbstbehaltType } + * + */ + public ELSelbstbehaltType createELSelbstbehaltType() { + return new ELSelbstbehaltType(); + } + + /** + * Create an instance of {@link ELTextType } + * + */ + public ELTextType createELTextType() { + return new ELTextType(); + } + + /** + * Create an instance of {@link ELVersicherungssummeType } + * + */ + public ELVersicherungssummeType createELVersicherungssummeType() { + return new ELVersicherungssummeType(); + } + + /** + * Create an instance of {@link VERTRAGSPERSONType } + * + */ + public VERTRAGSPERSONType createVERTRAGSPERSONType() { + return new VERTRAGSPERSONType(); + } + + /** + * Create an instance of {@link VERSOBJEKTType } + * + */ + public VERSOBJEKTType createVERSOBJEKTType() { + return new VERSOBJEKTType(); + } + + /** + * Create an instance of {@link SPARTEType } + * + */ + public SPARTEType createSPARTEType() { + return new SPARTEType(); + } + + /** + * Create an instance of {@link SCHADENType } + * + */ + public SCHADENType createSCHADENType() { + return new SCHADENType(); + } + + /** + * Create an instance of {@link PROVISIONType } + * + */ + public PROVISIONType createPROVISIONType() { + return new PROVISIONType(); + } + + /** + * Create an instance of {@link MAHNUNGType } + * + */ + public MAHNUNGType createMAHNUNGType() { + return new MAHNUNGType(); + } + + /** + * Create an instance of {@link VERTRAGSFONDSType } + * + */ + public VERTRAGSFONDSType createVERTRAGSFONDSType() { + return new VERTRAGSFONDSType(); + } + + /** + * Create an instance of {@link NATUERLICHEPERSONType } + * + */ + public NATUERLICHEPERSONType createNATUERLICHEPERSONType() { + return new NATUERLICHEPERSONType(); + } + + /** + * Create an instance of {@link SONSTIGEPERSONType } + * + */ + public SONSTIGEPERSONType createSONSTIGEPERSONType() { + return new SONSTIGEPERSONType(); + } + + /** + * Create an instance of {@link VERSPERSONType } + * + */ + public VERSPERSONType createVERSPERSONType() { + return new VERSPERSONType(); + } + + /** + * Create an instance of {@link VERSKFZ } + * + */ + public VERSKFZ createVERSKFZ() { + return new VERSKFZ(); + } + + /** + * Create an instance of {@link VERSKFZType } + * + */ + public VERSKFZType createVERSKFZType() { + return new VERSKFZType(); + } + + /** + * Create an instance of {@link VERSSACHEType } + * + */ + public VERSSACHEType createVERSSACHEType() { + return new VERSSACHEType(); + } + + /** + * Create an instance of {@link RISIKOType } + * + */ + public RISIKOType createRISIKOType() { + return new RISIKOType(); + } + + /** + * Create an instance of {@link FONDSType } + * + */ + public FONDSType createFONDSType() { + return new FONDSType(); + } + + /** + * Create an instance of {@link PORTFOLIO } + * + */ + public PORTFOLIO createPORTFOLIO() { + return new PORTFOLIO(); + } + + /** + * Create an instance of {@link PORTFOLIOTYPE } + * + */ + public PORTFOLIOTYPE createPORTFOLIOTYPE() { + return new PORTFOLIOTYPE(); + } + + /** + * Create an instance of {@link SCHADENBETEILIGTERType } + * + */ + public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() { + return new SCHADENBETEILIGTERType(); + } + + /** + * Create an instance of {@link GESCHAEDIGTESOBJEKTType } + * + */ + public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() { + return new GESCHAEDIGTESOBJEKTType(); + } + + /** + * Create an instance of {@link ZAHLUNGType } + * + */ + public ZAHLUNGType createZAHLUNGType() { + return new ZAHLUNGType(); + } + + /** + * Create an instance of {@link ELGewinnbeteiligungType } + * + */ + public ELGewinnbeteiligungType createELGewinnbeteiligungType() { + return new ELGewinnbeteiligungType(); + } + + /** + * Create an instance of {@link ELGrenzwertType } + * + */ + public ELGrenzwertType createELGrenzwertType() { + return new ELGrenzwertType(); + } + + /** + * Create an instance of {@link ELIndexType } + * + */ + public ELIndexType createELIndexType() { + return new ELIndexType(); + } + + /** + * Create an instance of {@link ELLegitimationType } + * + */ + public ELLegitimationType createELLegitimationType() { + return new ELLegitimationType(); + } + + /** + * Create an instance of {@link ELObjektType } + * + */ + public ELObjektType createELObjektType() { + return new ELObjektType(); + } + + /** + * Create an instance of {@link ELObjektdatenType } + * + */ + public ELObjektdatenType createELObjektdatenType() { + return new ELObjektdatenType(); + } + + /** + * Create an instance of {@link ELFlaecheType } + * + */ + public ELFlaecheType createELFlaecheType() { + return new ELFlaecheType(); + } + + /** + * Create an instance of {@link ELRenteType } + * + */ + public ELRenteType createELRenteType() { + return new ELRenteType(); + } + + /** + * Create an instance of {@link ELSteuerType } + * + */ + public ELSteuerType createELSteuerType() { + return new ELSteuerType(); + } + + /** + * Create an instance of {@link ELZeitraumType } + * + */ + public ELZeitraumType createELZeitraumType() { + return new ELZeitraumType(); + } + + /** + * Create an instance of {@link ELKFZKennzeichenType } + * + */ + public ELKFZKennzeichenType createELKFZKennzeichenType() { + return new ELKFZKennzeichenType(); + } + + /** + * Create an instance of {@link ADRESSEType } + * + */ + public ADRESSEType createADRESSEType() { + return new ADRESSEType(); + } + + /** + * 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") + public JAXBElement createELKommunikation(ELKommunikationType value) { + return new JAXBElement(_ELKommunikation_QNAME, ELKommunikationType.class, null, value); + } + + /** + * 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") + public JAXBElement createKLAUSEL(KLAUSELType value) { + return new JAXBElement(_KLAUSEL_QNAME, KLAUSELType.class, null, value); + } + + /** + * 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") + public JAXBElement createLOESCHANSTOSS(LOESCHANSTOSSType value) { + return new JAXBElement(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MIGRATIONSINFORMATIONType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link MIGRATIONSINFORMATIONType }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds20", name = "MIGRATIONSINFORMATION") + public JAXBElement createMIGRATIONSINFORMATION(MIGRATIONSINFORMATIONType value) { + return new JAXBElement(_MIGRATIONSINFORMATION_QNAME, MIGRATIONSINFORMATIONType.class, null, value); + } + + /** + * 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") + public JAXBElement createPERSON(PERSONType value) { + return new JAXBElement(_PERSON_QNAME, PERSONType.class, null, value); + } + + /** + * 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") + public JAXBElement createELAntrag(ELAntragType value) { + return new JAXBElement(_ELAntrag_QNAME, ELAntragType.class, null, value); + } + + /** + * 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") + public JAXBElement createELAnzahl(ELAnzahlType value) { + return new JAXBElement(_ELAnzahl_QNAME, ELAnzahlType.class, null, value); + } + + /** + * 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") + public JAXBElement createELBetrag(ELBetragType value) { + return new JAXBElement(_ELBetrag_QNAME, ELBetragType.class, null, value); + } + + /** + * 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") + public JAXBElement createELBezugsberechtigung(ELBezugsberechtigungType value) { + return new JAXBElement(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELEinstufung(ELEinstufungType value) { + return new JAXBElement(_ELEinstufung_QNAME, ELEinstufungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELEntscheidungsfrage(ELEntscheidungsfrageType value) { + return new JAXBElement(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value); + } + + /** + * 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") + public JAXBElement createELIdentifizierung(ELIdentifizierungType value) { + return new JAXBElement(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELKlausel(ELKlauselType value) { + return new JAXBElement(_ELKlausel_QNAME, ELKlauselType.class, null, value); + } + + /** + * 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") + public JAXBElement createELPolizzennummer(ELPolizzennummerType value) { + return new JAXBElement(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value); + } + + /** + * 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") + public JAXBElement createELPraemienfreistellung(ELPraemienfreistellungType value) { + return new JAXBElement(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELPraemienkorrektur(ELPraemienkorrekturType value) { + return new JAXBElement(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value); + } + + /** + * 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") + public JAXBElement createELRahmenvereinbarung(ELRahmenvereinbarungType value) { + return new JAXBElement(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELRahmenvertrag(ELRahmenvertragType value) { + return new JAXBElement(_ELRahmenvertrag_QNAME, ELRahmenvertragType.class, null, value); + } + + /** + * 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") + public JAXBElement createELText(ELTextType value) { + return new JAXBElement(_ELText_QNAME, ELTextType.class, null, value); + } + + /** + * 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") + public JAXBElement createELVersicherungssumme(ELVersicherungssummeType value) { + return new JAXBElement(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value); + } + + /** + * 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") + public JAXBElement createVERTRAGSPERSON(VERTRAGSPERSONType value) { + return new JAXBElement(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value); + } + + /** + * 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") + public JAXBElement createVERSOBJEKT(VERSOBJEKTType value) { + return new JAXBElement(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value); + } + + /** + * 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") + public JAXBElement createSPARTE(SPARTEType value) { + return new JAXBElement(_SPARTE_QNAME, SPARTEType.class, null, value); + } + + /** + * 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") + public JAXBElement createSCHADEN(SCHADENType value) { + return new JAXBElement(_SCHADEN_QNAME, SCHADENType.class, null, value); + } + + /** + * 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") + public JAXBElement createPROVISION(PROVISIONType value) { + return new JAXBElement(_PROVISION_QNAME, PROVISIONType.class, null, value); + } + + /** + * 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") + public JAXBElement createMAHNUNG(MAHNUNGType value) { + return new JAXBElement(_MAHNUNG_QNAME, MAHNUNGType.class, null, value); + } + + /** + * 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") + public JAXBElement createVERTRAGSFONDS(VERTRAGSFONDSType value) { + return new JAXBElement(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value); + } + + /** + * 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") + public JAXBElement createNATUERLICHEPERSON(NATUERLICHEPERSONType value) { + return new JAXBElement(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value); + } + + /** + * 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") + public JAXBElement createSONSTIGEPERSON(SONSTIGEPERSONType value) { + return new JAXBElement(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value); + } + + /** + * 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") + public JAXBElement createVERSPERSON(VERSPERSONType value) { + return new JAXBElement(_VERSPERSON_QNAME, VERSPERSONType.class, null, value); + } + + /** + * 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") + public JAXBElement createVERSSACHE(VERSSACHEType value) { + return new JAXBElement(_VERSSACHE_QNAME, VERSSACHEType.class, null, value); + } + + /** + * 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") + public JAXBElement createRISIKO(RISIKOType value) { + return new JAXBElement(_RISIKO_QNAME, RISIKOType.class, null, value); + } + + /** + * 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") + public JAXBElement createFONDS(FONDSType value) { + return new JAXBElement(_FONDS_QNAME, FONDSType.class, null, value); + } + + /** + * 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") + public JAXBElement createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) { + return new JAXBElement(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value); + } + + /** + * 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") + public JAXBElement createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) { + return new JAXBElement(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value); + } + + /** + * 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") + public JAXBElement createZAHLUNG(ZAHLUNGType value) { + return new JAXBElement(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value); + } + + /** + * 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") + public JAXBElement createELGewinnbeteiligung(ELGewinnbeteiligungType value) { + return new JAXBElement(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value); + } + + /** + * 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") + public JAXBElement createELGrenzwert(ELGrenzwertType value) { + return new JAXBElement(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value); + } + + /** + * 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") + public JAXBElement createELIndex(ELIndexType value) { + return new JAXBElement(_ELIndex_QNAME, ELIndexType.class, null, value); + } + + /** + * 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") + public JAXBElement createELLegitimation(ELLegitimationType value) { + return new JAXBElement(_ELLegitimation_QNAME, ELLegitimationType.class, null, value); + } + + /** + * 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") + public JAXBElement createELObjekt(ELObjektType value) { + return new JAXBElement(_ELObjekt_QNAME, ELObjektType.class, null, value); + } + + /** + * 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") + public JAXBElement createELObjektdaten(ELObjektdatenType value) { + return new JAXBElement(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value); + } + + /** + * 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") + public JAXBElement createELFlaeche(ELFlaecheType value) { + return new JAXBElement(_ELFlaeche_QNAME, ELFlaecheType.class, null, value); + } + + /** + * 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") + public JAXBElement createELRente(ELRenteType value) { + return new JAXBElement(_ELRente_QNAME, ELRenteType.class, null, value); + } + + /** + * 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") + public JAXBElement createELSteuer(ELSteuerType value) { + return new JAXBElement(_ELSteuer_QNAME, ELSteuerType.class, null, value); + } + + /** + * 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") + public JAXBElement createELZeitraum(ELZeitraumType value) { + return new JAXBElement(_ELZeitraum_QNAME, ELZeitraumType.class, null, value); + } + + /** + * 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") + public JAXBElement createELKFZKennzeichen(ELKFZKennzeichenType value) { + return new JAXBElement(_ELKFZKennzeichen_QNAME, ELKFZKennzeichenType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PAKET.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PAKET.java new file mode 100644 index 00000000..6293fbf1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PAKET.java @@ -0,0 +1,716 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <sequence>
+ *           <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
+ *           <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
+ *         </sequence>
+ *         <sequence>
+ *           <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
+ *         </sequence>
+ *         <group ref="{urn:omds20}bestand"/>
+ *       </choice>
+ *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
+ *       <attribute name="MaklerID" use="required" type="{urn:omds20}MaklerID_Type" />
+ *       <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
+ *       <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
+ *       <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
+ *       <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
+ *       <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
+ *       <attribute name="VUVersion">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="6"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="DVRNrAbs" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="8"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PaketKommentar">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SprachCd" type="{urn:omds20}SprachCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "versunternehmen", + "schluesselart", + "klausel", + "loeschanstoss", + "migrationsinformation", + "person", + "vertrag", + "schaden", + "provision", + "mahnung", + "vertragsfonds" +}) +@XmlRootElement(name = "PAKET") +public class PAKET { + + @XmlElement(name = "VERS_UNTERNEHMEN") + protected List versunternehmen; + @XmlElement(name = "SCHLUESSELART") + protected List schluesselart; + @XmlElement(name = "KLAUSEL") + protected List klausel; + @XmlElement(name = "LOESCHANSTOSS") + protected List loeschanstoss; + @XmlElement(name = "MIGRATIONSINFORMATION") + protected List migrationsinformation; + @XmlElement(name = "PERSON") + protected List person; + @XmlElement(name = "VERTRAG") + protected List vertrag; + @XmlElement(name = "SCHADEN") + protected List schaden; + @XmlElement(name = "PROVISION") + protected List provision; + @XmlElement(name = "MAHNUNG") + protected List mahnung; + @XmlElement(name = "VERTRAGSFONDS") + protected List vertragsfonds; + @XmlAttribute(name = "VUNr", required = true) + protected String vuNr; + @XmlAttribute(name = "MaklerID", required = true) + protected String maklerID; + @XmlAttribute(name = "PaketZpktErstell", required = true) + protected XMLGregorianCalendar paketZpktErstell; + @XmlAttribute(name = "PaketZpktLetztErstell") + protected XMLGregorianCalendar paketZpktLetztErstell; + @XmlAttribute(name = "PaketInhCd", required = true) + protected PaketInhCdType paketInhCd; + @XmlAttribute(name = "PaketUmfCd", required = true) + protected PaketUmfCdType paketUmfCd; + @XmlAttribute(name = "OMDSVersion", required = true) + protected String omdsVersion; + @XmlAttribute(name = "VUVersion") + protected String vuVersion; + @XmlAttribute(name = "DVRNrAbs", required = true) + protected String dvrNrAbs; + @XmlAttribute(name = "PaketKommentar") + protected String paketKommentar; + @XmlAttribute(name = "SprachCd") + protected SprachCdType sprachCd; + + /** + * Gets the value of the versunternehmen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versunternehmen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVERSUNTERNEHMEN().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VERSUNTERNEHMEN } + * + * + */ + public List getVERSUNTERNEHMEN() { + if (versunternehmen == null) { + versunternehmen = new ArrayList(); + } + return this.versunternehmen; + } + + /** + * Gets the value of the schluesselart property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schluesselart property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSCHLUESSELART().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SCHLUESSELART } + * + * + */ + public List getSCHLUESSELART() { + if (schluesselart == null) { + schluesselart = new ArrayList(); + } + return this.schluesselart; + } + + /** + * Gets the value of the klausel property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the klausel property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKLAUSEL().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KLAUSELType } + * + * + */ + public List getKLAUSEL() { + if (klausel == null) { + klausel = new ArrayList(); + } + return this.klausel; + } + + /** + * Gets the value of the loeschanstoss property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the loeschanstoss property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getLOESCHANSTOSS().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link LOESCHANSTOSSType } + * + * + */ + public List getLOESCHANSTOSS() { + if (loeschanstoss == null) { + loeschanstoss = new ArrayList(); + } + return this.loeschanstoss; + } + + /** + * Gets the value of the migrationsinformation property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the migrationsinformation property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMIGRATIONSINFORMATION().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MIGRATIONSINFORMATIONType } + * + * + */ + public List getMIGRATIONSINFORMATION() { + if (migrationsinformation == null) { + migrationsinformation = new ArrayList(); + } + return this.migrationsinformation; + } + + /** + * Gets the value of the person property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the person property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPERSON().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PERSONType } + * + * + */ + public List getPERSON() { + if (person == null) { + person = new ArrayList(); + } + return this.person; + } + + /** + * Gets the value of the vertrag property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertrag property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVERTRAG().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VERTRAG } + * + * + */ + public List getVERTRAG() { + if (vertrag == null) { + vertrag = new ArrayList(); + } + return this.vertrag; + } + + /** + * Gets the value of the schaden property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schaden property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSCHADEN().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SCHADENType } + * + * + */ + public List getSCHADEN() { + if (schaden == null) { + schaden = new ArrayList(); + } + return this.schaden; + } + + /** + * Gets the value of the provision property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the provision property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPROVISION().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PROVISIONType } + * + * + */ + public List getPROVISION() { + if (provision == null) { + provision = new ArrayList(); + } + return this.provision; + } + + /** + * Gets the value of the mahnung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the mahnung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMAHNUNG().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MAHNUNGType } + * + * + */ + public List getMAHNUNG() { + if (mahnung == null) { + mahnung = new ArrayList(); + } + return this.mahnung; + } + + /** + * Gets the value of the vertragsfonds property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertragsfonds property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVERTRAGSFONDS().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VERTRAGSFONDSType } + * + * + */ + public List getVERTRAGSFONDS() { + if (vertragsfonds == null) { + vertragsfonds = new ArrayList(); + } + return this.vertragsfonds; + } + + /** + * 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 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; + } + + /** + * Ruft den Wert der paketZpktErstell-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPaketZpktErstell() { + return paketZpktErstell; + } + + /** + * Legt den Wert der paketZpktErstell-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPaketZpktErstell(XMLGregorianCalendar value) { + this.paketZpktErstell = value; + } + + /** + * Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPaketZpktLetztErstell() { + return paketZpktLetztErstell; + } + + /** + * Legt den Wert der paketZpktLetztErstell-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPaketZpktLetztErstell(XMLGregorianCalendar value) { + this.paketZpktLetztErstell = value; + } + + /** + * Ruft den Wert der paketInhCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PaketInhCdType } + * + */ + public PaketInhCdType getPaketInhCd() { + return paketInhCd; + } + + /** + * Legt den Wert der paketInhCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PaketInhCdType } + * + */ + public void setPaketInhCd(PaketInhCdType value) { + this.paketInhCd = value; + } + + /** + * Ruft den Wert der paketUmfCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PaketUmfCdType } + * + */ + public PaketUmfCdType getPaketUmfCd() { + return paketUmfCd; + } + + /** + * Legt den Wert der paketUmfCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PaketUmfCdType } + * + */ + public void setPaketUmfCd(PaketUmfCdType value) { + this.paketUmfCd = value; + } + + /** + * Ruft den Wert der omdsVersion-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOMDSVersion() { + return omdsVersion; + } + + /** + * Legt den Wert der omdsVersion-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOMDSVersion(String value) { + this.omdsVersion = value; + } + + /** + * Ruft den Wert der vuVersion-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUVersion() { + return vuVersion; + } + + /** + * Legt den Wert der vuVersion-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUVersion(String value) { + this.vuVersion = value; + } + + /** + * Ruft den Wert der dvrNrAbs-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDVRNrAbs() { + return dvrNrAbs; + } + + /** + * Legt den Wert der dvrNrAbs-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDVRNrAbs(String value) { + this.dvrNrAbs = value; + } + + /** + * Ruft den Wert der paketKommentar-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaketKommentar() { + return paketKommentar; + } + + /** + * Legt den Wert der paketKommentar-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaketKommentar(String value) { + this.paketKommentar = value; + } + + /** + * Ruft den Wert der sprachCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link SprachCdType } + * + */ + public SprachCdType getSprachCd() { + return sprachCd; + } + + /** + * Legt den Wert der sprachCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SprachCdType } + * + */ + public void setSprachCd(SprachCdType value) { + this.sprachCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PERSONType.java new file mode 100644 index 00000000..fe4ee413 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PERSONType.java @@ -0,0 +1,448 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PERSON_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PERSON_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice>
+ *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
+ *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
+ *         </choice>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Identifizierung"/>
+ *           <element ref="{urn:omds20}EL-Kommunikation"/>
+ *           <element ref="{urn:omds20}EL-Legitimation"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *         </choice>
+ *       </sequence>
+ *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
+ *       <attribute name="Personennr" use="required">
+ *         <simpleType>
+ *           <restriction base="{urn:omds20}Personennr">
+ *             <maxLength value="26"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PERSON_Type", propOrder = { + "natuerlicheperson", + "sonstigeperson", + "elAnzahlOrELEinstufungOrELEntscheidungsfrage" +}) +public class PERSONType { + + @XmlElement(name = "NATUERLICHE_PERSON") + protected NATUERLICHEPERSONType natuerlicheperson; + @XmlElement(name = "SONSTIGE_PERSON") + protected SONSTIGEPERSONType sonstigeperson; + @XmlElements({ + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), + @XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class), + @XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class), + @XmlElement(name = "EL-Text", type = ELTextType.class) + }) + protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; + @XmlAttribute(name = "Personennr", required = true) + protected String personennr; + @XmlAttribute(name = "PersArtCd", required = true) + protected PersArtCdType persArtCd; + @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 natuerlicheperson-Eigenschaft ab. + * + * @return + * possible object is + * {@link NATUERLICHEPERSONType } + * + */ + public NATUERLICHEPERSONType getNATUERLICHEPERSON() { + return natuerlicheperson; + } + + /** + * Legt den Wert der natuerlicheperson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link NATUERLICHEPERSONType } + * + */ + public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { + this.natuerlicheperson = value; + } + + /** + * Ruft den Wert der sonstigeperson-Eigenschaft ab. + * + * @return + * possible object is + * {@link SONSTIGEPERSONType } + * + */ + public SONSTIGEPERSONType getSONSTIGEPERSON() { + return sonstigeperson; + } + + /** + * Legt den Wert der sonstigeperson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SONSTIGEPERSONType } + * + */ + public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { + this.sonstigeperson = value; + } + + /** + * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELIdentifizierungType } + * {@link ELKommunikationType } + * {@link ELLegitimationType } + * {@link ELTextType } + * + * + */ + public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { + if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { + elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); + } + return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; + } + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + + /** + * Ruft den Wert der persArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PersArtCdType } + * + */ + public PersArtCdType getPersArtCd() { + return persArtCd; + } + + /** + * Legt den Wert der persArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PersArtCdType } + * + */ + public void setPersArtCd(PersArtCdType value) { + this.persArtCd = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIO.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIO.java new file mode 100644 index 00000000..8eb7ca75 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIO.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds20}PORTFOLIO_TYPE">
+ *       <sequence>
+ *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "fonds" +}) +@XmlRootElement(name = "PORTFOLIO") +public class PORTFOLIO + extends PORTFOLIOTYPE +{ + + @XmlElement(name = "FONDS") + protected List fonds; + + /** + * Gets the value of the fonds property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the fonds property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFONDS().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FONDSType } + * + * + */ + public List getFONDS() { + if (fonds == null) { + fonds = new ArrayList(); + } + return this.fonds; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIOTYPE.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIOTYPE.java new file mode 100644 index 00000000..1a06fae9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PORTFOLIOTYPE.java @@ -0,0 +1,307 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PORTFOLIO_TYPE complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PORTFOLIO_TYPE">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
+ *       <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
+ *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
+ *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
+ *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
+ *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
+ *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
+ *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
+ *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PORTFOLIO_TYPE") +@XmlSeeAlso({ + PORTFOLIO.class +}) +public class PORTFOLIOTYPE { + + @XmlAttribute(name = "PortfolioID", required = true) + protected String portfolioID; + @XmlAttribute(name = "ISIN") + protected String isin; + @XmlAttribute(name = "WKN") + protected String wkn; + @XmlAttribute(name = "Bezeichnung", required = true) + protected String bezeichnung; + @XmlAttribute(name = "Kurs") + protected BigDecimal kurs; + @XmlAttribute(name = "AnteilWertpapier") + protected BigDecimal anteilWertpapier; + @XmlAttribute(name = "Prozentsatz", required = true) + protected BigDecimal prozentsatz; + @XmlAttribute(name = "Wert") + protected BigDecimal wert; + @XmlAttribute(name = "WaehrungsCd") + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "Stichtag") + protected XMLGregorianCalendar stichtag; + + /** + * Ruft den Wert der portfolioID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPortfolioID() { + return portfolioID; + } + + /** + * Legt den Wert der portfolioID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPortfolioID(String value) { + this.portfolioID = value; + } + + /** + * Ruft den Wert der isin-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getISIN() { + return isin; + } + + /** + * Legt den Wert der isin-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setISIN(String value) { + this.isin = value; + } + + /** + * Ruft den Wert der wkn-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWKN() { + return wkn; + } + + /** + * Legt den Wert der wkn-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWKN(String value) { + this.wkn = 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 kurs-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKurs() { + return kurs; + } + + /** + * Legt den Wert der kurs-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKurs(BigDecimal value) { + this.kurs = value; + } + + /** + * Ruft den Wert der anteilWertpapier-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAnteilWertpapier() { + return anteilWertpapier; + } + + /** + * Legt den Wert der anteilWertpapier-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAnteilWertpapier(BigDecimal value) { + this.anteilWertpapier = value; + } + + /** + * Ruft den Wert der prozentsatz-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProzentsatz() { + return prozentsatz; + } + + /** + * Legt den Wert der prozentsatz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProzentsatz(BigDecimal value) { + this.prozentsatz = value; + } + + /** + * Ruft den Wert der wert-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWert() { + return wert; + } + + /** + * Legt den Wert der wert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWert(BigDecimal value) { + this.wert = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der stichtag-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStichtag() { + return stichtag; + } + + /** + * Legt den Wert der stichtag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStichtag(XMLGregorianCalendar value) { + this.stichtag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PROVISIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PROVISIONType.java new file mode 100644 index 00000000..a6cc3c23 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PROVISIONType.java @@ -0,0 +1,588 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PROVISION_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PROVISION_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ProvisionsID" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="26"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
+ *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
+ *       <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
+ *       <attribute name="SpartenErweiterung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="10"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="ProvVon" type="{urn:omds20}Datum" />
+ *       <attribute name="ProvBis" type="{urn:omds20}Datum" />
+ *       <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
+ *       <attribute name="ProvTxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="90"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
+ *       <attribute name="ProvSatz">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="8"/>
+ *             <fractionDigits value="5"/>
+ *             <pattern value="-?\d{1,3}[.]\d{1,5}"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="ProvArtText">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="90"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="ProvTeilung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="5"/>
+ *             <fractionDigits value="2"/>
+ *             <minInclusive value="0"/>
+ *             <maxInclusive value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PROVISION_Type") +public class PROVISIONType { + + @XmlAttribute(name = "ProvisionsID", required = true) + protected String provisionsID; + @XmlAttribute(name = "Vermnr", required = true) + protected String vermnr; + @XmlAttribute(name = "Polizzennr") + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + @XmlAttribute(name = "VerbandSparteCd") + protected String verbandSparteCd; + @XmlAttribute(name = "SpartenCd") + protected String spartenCd; + @XmlAttribute(name = "SpartenErweiterung") + protected String spartenErweiterung; + @XmlAttribute(name = "BuchDat", required = true) + protected XMLGregorianCalendar buchDat; + @XmlAttribute(name = "ProvVon") + protected XMLGregorianCalendar provVon; + @XmlAttribute(name = "ProvBis") + protected XMLGregorianCalendar provBis; + @XmlAttribute(name = "ProvArtCd", required = true) + protected String provArtCd; + @XmlAttribute(name = "ProvTxt") + protected String provTxt; + @XmlAttribute(name = "ProvGrdlg") + protected BigDecimal provGrdlg; + @XmlAttribute(name = "ProvSatz") + protected BigDecimal provSatz; + @XmlAttribute(name = "ProvBetrag", required = true) + protected BigDecimal provBetrag; + @XmlAttribute(name = "WaehrungsCd", required = true) + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "ProvArtText") + protected String provArtText; + @XmlAttribute(name = "Vorpolizze") + protected String vorpolizze; + @XmlAttribute(name = "ProvTeilung") + protected BigDecimal provTeilung; + + /** + * Ruft den Wert der provisionsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvisionsID() { + return provisionsID; + } + + /** + * Legt den Wert der provisionsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvisionsID(String value) { + this.provisionsID = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der verbandSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbandSparteCd() { + return verbandSparteCd; + } + + /** + * Legt den Wert der verbandSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbandSparteCd(String value) { + this.verbandSparteCd = value; + } + + /** + * Ruft den Wert der spartenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenCd() { + return spartenCd; + } + + /** + * Legt den Wert der spartenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenCd(String value) { + this.spartenCd = value; + } + + /** + * Ruft den Wert der spartenErweiterung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenErweiterung() { + return spartenErweiterung; + } + + /** + * Legt den Wert der spartenErweiterung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenErweiterung(String value) { + this.spartenErweiterung = value; + } + + /** + * Ruft den Wert der buchDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBuchDat() { + return buchDat; + } + + /** + * Legt den Wert der buchDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBuchDat(XMLGregorianCalendar value) { + this.buchDat = value; + } + + /** + * Ruft den Wert der provVon-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProvVon() { + return provVon; + } + + /** + * Legt den Wert der provVon-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProvVon(XMLGregorianCalendar value) { + this.provVon = value; + } + + /** + * Ruft den Wert der provBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProvBis() { + return provBis; + } + + /** + * Legt den Wert der provBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProvBis(XMLGregorianCalendar value) { + this.provBis = value; + } + + /** + * Ruft den Wert der provArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvArtCd() { + return provArtCd; + } + + /** + * Legt den Wert der provArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvArtCd(String value) { + this.provArtCd = value; + } + + /** + * Ruft den Wert der provTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvTxt() { + return provTxt; + } + + /** + * Legt den Wert der provTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvTxt(String value) { + this.provTxt = value; + } + + /** + * Ruft den Wert der provGrdlg-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProvGrdlg() { + return provGrdlg; + } + + /** + * Legt den Wert der provGrdlg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProvGrdlg(BigDecimal value) { + this.provGrdlg = value; + } + + /** + * Ruft den Wert der provSatz-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProvSatz() { + return provSatz; + } + + /** + * Legt den Wert der provSatz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProvSatz(BigDecimal value) { + this.provSatz = value; + } + + /** + * Ruft den Wert der provBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProvBetrag() { + return provBetrag; + } + + /** + * Legt den Wert der provBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProvBetrag(BigDecimal value) { + this.provBetrag = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der provArtText-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvArtText() { + return provArtText; + } + + /** + * Legt den Wert der provArtText-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvArtText(String value) { + this.provArtText = value; + } + + /** + * Ruft den Wert der vorpolizze-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVorpolizze() { + return vorpolizze; + } + + /** + * Legt den Wert der vorpolizze-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVorpolizze(String value) { + this.vorpolizze = value; + } + + /** + * Ruft den Wert der provTeilung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProvTeilung() { + return provTeilung; + } + + /** + * Legt den Wert der provTeilung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProvTeilung(BigDecimal value) { + this.provTeilung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketInhCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketInhCdType.java new file mode 100644 index 00000000..4636eea4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketInhCdType.java @@ -0,0 +1,89 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PaketInhCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PaketInhCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="AI"/>
+ *     <enumeration value="VF"/>
+ *     <enumeration value="VI"/>
+ *     <enumeration value="VK"/>
+ *     <enumeration value="VM"/>
+ *     <enumeration value="VP"/>
+ *     <enumeration value="VS"/>
+ *     <enumeration value="VV"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PaketInhCd_Type") +@XmlEnum +public enum PaketInhCdType { + + + /** + * Allgem. Initialbestand (generelle Schlüssel) + * + */ + AI, + + /** + * VU Fondsbestand + * + */ + VF, + + /** + * VU Initialbestand (VU Schlüssel) + * + */ + VI, + + /** + * VU Mahn/Klagebestand + * + */ + VK, + + /** + * VU Mischbestand + * + */ + VM, + + /** + * VU Provisionen + * + */ + VP, + + /** + * VU Schadenbestand + * + */ + VS, + + /** + * VU Vertragsbestand + * + */ + VV; + + public String value() { + return name(); + } + + public static PaketInhCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketUmfCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketUmfCdType.java new file mode 100644 index 00000000..911a5d54 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PaketUmfCdType.java @@ -0,0 +1,47 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PaketUmfCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PaketUmfCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="D"/>
+ *     <enumeration value="G"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PaketUmfCd_Type") +@XmlEnum +public enum PaketUmfCdType { + + + /** + * Differenz + * + */ + D, + + /** + * gesamt + * + */ + G; + + public String value() { + return name(); + } + + public static PaketUmfCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PersArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PersArtCdType.java new file mode 100644 index 00000000..17c1832c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PersArtCdType.java @@ -0,0 +1,47 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PersArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PersArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="N"/>
+ *     <enumeration value="S"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PersArtCd_Type") +@XmlEnum +public enum PersArtCdType { + + + /** + * natürliche Person + * + */ + N, + + /** + * sonstige Person + * + */ + S; + + public String value() { + return name(); + } + + public static PersArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PolArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PolArtCdType.java new file mode 100644 index 00000000..f7b03895 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PolArtCdType.java @@ -0,0 +1,61 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PolArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PolArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="E"/>
+ *     <enumeration value="N"/>
+ *     <enumeration value="V"/>
+ *     <enumeration value="X"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PolArtCd_Type") +@XmlEnum +public enum PolArtCdType { + + + /** + * Ersatzpolizze bei Ersatz/Konv. + * + */ + E, + + /** + * Nachversicherung + * + */ + N, + + /** + * Vorpolizze bei Ersatz/Konv. + * + */ + V, + + /** + * Vorpolizze bei Migration + * + */ + X; + + public String value() { + return name(); + } + + public static PolArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PraemFristCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PraemFristCdType.java new file mode 100644 index 00000000..678a69c6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/PraemFristCdType.java @@ -0,0 +1,47 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PraemFristCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PraemFristCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="E"/>
+ *     <enumeration value="J"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PraemFristCd_Type") +@XmlEnum +public enum PraemFristCdType { + + + /** + * Einmal + * + */ + E, + + /** + * Jahr + * + */ + J; + + public String value() { + return name(); + } + + public static PraemFristCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RISIKOType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RISIKOType.java new file mode 100644 index 00000000..412e0b06 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RISIKOType.java @@ -0,0 +1,263 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für RISIKO_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RISIKO_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Betrag"/>
+ *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
+ *           <element ref="{urn:omds20}EL-Grenzwert"/>
+ *           <element ref="{urn:omds20}EL-Index"/>
+ *           <element ref="{urn:omds20}EL-Identifizierung"/>
+ *           <element ref="{urn:omds20}EL-Klausel"/>
+ *           <element ref="{urn:omds20}EL-Objekt"/>
+ *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
+ *           <element ref="{urn:omds20}EL-Rente"/>
+ *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
+ *           <element ref="{urn:omds20}EL-Steuer"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
+ *           <element ref="{urn:omds20}EL-Zeitraum"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="RisikoArtCd" use="required" type="{urn:omds20}RisikoArtCd_Type" />
+ *       <attribute name="RisikoBez" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PraemFristCd" type="{urn:omds20}PraemFristCd_Type" />
+ *       <attribute name="PraemieNto" type="{urn:omds20}decimal" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RISIKO_Type", propOrder = { + "elAnzahlOrELBetragOrELBezugsberechtigung" +}) +public class RISIKOType { + + @XmlElements({ + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Betrag", type = ELBetragType.class), + @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), + @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), + @XmlElement(name = "EL-Index", type = ELIndexType.class), + @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), + @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), + @XmlElement(name = "EL-Objekt", type = ELObjektType.class), + @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), + @XmlElement(name = "EL-Rente", type = ELRenteType.class), + @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), + @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), + @XmlElement(name = "EL-Text", type = ELTextType.class), + @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), + @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) + }) + protected List elAnzahlOrELBetragOrELBezugsberechtigung; + @XmlAttribute(name = "RisikoLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int risikoLfnr; + @XmlAttribute(name = "RisikoArtCd", required = true) + protected RisikoArtCdType risikoArtCd; + @XmlAttribute(name = "RisikoBez", required = true) + protected String risikoBez; + @XmlAttribute(name = "PraemFristCd") + protected PraemFristCdType praemFristCd; + @XmlAttribute(name = "PraemieNto") + protected BigDecimal praemieNto; + + /** + * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * {@link ELBetragType } + * {@link ELBezugsberechtigungType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELGewinnbeteiligungType } + * {@link ELGrenzwertType } + * {@link ELIdentifizierungType } + * {@link ELIndexType } + * {@link ELKlauselType } + * {@link ELObjektType } + * {@link ELPraemienkorrekturType } + * {@link ELRenteType } + * {@link ELSelbstbehalt } + * {@link ELSteuerType } + * {@link ELTextType } + * {@link ELVersicherungssummeType } + * {@link ELZeitraumType } + * + * + */ + public List getELAnzahlOrELBetragOrELBezugsberechtigung() { + if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { + elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); + } + return this.elAnzahlOrELBetragOrELBezugsberechtigung; + } + + /** + * Ruft den Wert der risikoLfnr-Eigenschaft ab. + * + */ + public int getRisikoLfnr() { + return risikoLfnr; + } + + /** + * Legt den Wert der risikoLfnr-Eigenschaft fest. + * + */ + public void setRisikoLfnr(int value) { + this.risikoLfnr = value; + } + + /** + * Ruft den Wert der risikoArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link RisikoArtCdType } + * + */ + public RisikoArtCdType getRisikoArtCd() { + return risikoArtCd; + } + + /** + * Legt den Wert der risikoArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RisikoArtCdType } + * + */ + public void setRisikoArtCd(RisikoArtCdType value) { + this.risikoArtCd = value; + } + + /** + * Ruft den Wert der risikoBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRisikoBez() { + return risikoBez; + } + + /** + * Legt den Wert der risikoBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRisikoBez(String value) { + this.risikoBez = value; + } + + /** + * Ruft den Wert der praemFristCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PraemFristCdType } + * + */ + public PraemFristCdType getPraemFristCd() { + return praemFristCd; + } + + /** + * Legt den Wert der praemFristCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PraemFristCdType } + * + */ + public void setPraemFristCd(PraemFristCdType value) { + this.praemFristCd = value; + } + + /** + * Ruft den Wert der praemieNto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieNto() { + return praemieNto; + } + + /** + * Legt den Wert der praemieNto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieNto(BigDecimal value) { + this.praemieNto = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RisikoArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RisikoArtCdType.java new file mode 100644 index 00000000..28865ae4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/RisikoArtCdType.java @@ -0,0 +1,1124 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für RisikoArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="RisikoArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="AH1"/>
+ *     <enumeration value="AK1"/>
+ *     <enumeration value="AK2"/>
+ *     <enumeration value="AS1"/>
+ *     <enumeration value="AS2"/>
+ *     <enumeration value="AS3"/>
+ *     <enumeration value="AS4"/>
+ *     <enumeration value="AU1"/>
+ *     <enumeration value="AU2"/>
+ *     <enumeration value="AU3"/>
+ *     <enumeration value="AU4"/>
+ *     <enumeration value="AU5"/>
+ *     <enumeration value="AV1"/>
+ *     <enumeration value="BA1"/>
+ *     <enumeration value="BD1"/>
+ *     <enumeration value="B01"/>
+ *     <enumeration value="B02"/>
+ *     <enumeration value="B03"/>
+ *     <enumeration value="B04"/>
+ *     <enumeration value="B05"/>
+ *     <enumeration value="B06"/>
+ *     <enumeration value="B11"/>
+ *     <enumeration value="BL1"/>
+ *     <enumeration value="BL2"/>
+ *     <enumeration value="E01"/>
+ *     <enumeration value="E02"/>
+ *     <enumeration value="EC1"/>
+ *     <enumeration value="F01"/>
+ *     <enumeration value="F02"/>
+ *     <enumeration value="F03"/>
+ *     <enumeration value="F04"/>
+ *     <enumeration value="F05"/>
+ *     <enumeration value="G01"/>
+ *     <enumeration value="G02"/>
+ *     <enumeration value="H01"/>
+ *     <enumeration value="H02"/>
+ *     <enumeration value="H03"/>
+ *     <enumeration value="H04"/>
+ *     <enumeration value="H05"/>
+ *     <enumeration value="H06"/>
+ *     <enumeration value="H07"/>
+ *     <enumeration value="H08"/>
+ *     <enumeration value="H99"/>
+ *     <enumeration value="HH1"/>
+ *     <enumeration value="K01"/>
+ *     <enumeration value="K02"/>
+ *     <enumeration value="K03"/>
+ *     <enumeration value="K04"/>
+ *     <enumeration value="K09"/>
+ *     <enumeration value="K10"/>
+ *     <enumeration value="K99"/>
+ *     <enumeration value="L01"/>
+ *     <enumeration value="L02"/>
+ *     <enumeration value="L03"/>
+ *     <enumeration value="L04"/>
+ *     <enumeration value="L05"/>
+ *     <enumeration value="L06"/>
+ *     <enumeration value="L07"/>
+ *     <enumeration value="L08"/>
+ *     <enumeration value="L09"/>
+ *     <enumeration value="L10"/>
+ *     <enumeration value="L11"/>
+ *     <enumeration value="L99"/>
+ *     <enumeration value="LS1"/>
+ *     <enumeration value="LW1"/>
+ *     <enumeration value="M01"/>
+ *     <enumeration value="M02"/>
+ *     <enumeration value="M03"/>
+ *     <enumeration value="M04"/>
+ *     <enumeration value="M05"/>
+ *     <enumeration value="M06"/>
+ *     <enumeration value="M07"/>
+ *     <enumeration value="R01"/>
+ *     <enumeration value="R02"/>
+ *     <enumeration value="R03"/>
+ *     <enumeration value="R04"/>
+ *     <enumeration value="R05"/>
+ *     <enumeration value="R06"/>
+ *     <enumeration value="R07"/>
+ *     <enumeration value="R08"/>
+ *     <enumeration value="R09"/>
+ *     <enumeration value="R10"/>
+ *     <enumeration value="R11"/>
+ *     <enumeration value="R12"/>
+ *     <enumeration value="R13"/>
+ *     <enumeration value="R14"/>
+ *     <enumeration value="R15"/>
+ *     <enumeration value="R16"/>
+ *     <enumeration value="R99"/>
+ *     <enumeration value="RE1"/>
+ *     <enumeration value="RE2"/>
+ *     <enumeration value="RE3"/>
+ *     <enumeration value="RE4"/>
+ *     <enumeration value="S01"/>
+ *     <enumeration value="S12"/>
+ *     <enumeration value="S13"/>
+ *     <enumeration value="S14"/>
+ *     <enumeration value="S15"/>
+ *     <enumeration value="S16"/>
+ *     <enumeration value="S17"/>
+ *     <enumeration value="S99"/>
+ *     <enumeration value="ST1"/>
+ *     <enumeration value="T01"/>
+ *     <enumeration value="T02"/>
+ *     <enumeration value="T03"/>
+ *     <enumeration value="T04"/>
+ *     <enumeration value="T05"/>
+ *     <enumeration value="T06"/>
+ *     <enumeration value="T07"/>
+ *     <enumeration value="T08"/>
+ *     <enumeration value="T09"/>
+ *     <enumeration value="T11"/>
+ *     <enumeration value="T12"/>
+ *     <enumeration value="T13"/>
+ *     <enumeration value="T20"/>
+ *     <enumeration value="T21"/>
+ *     <enumeration value="T22"/>
+ *     <enumeration value="T23"/>
+ *     <enumeration value="T99"/>
+ *     <enumeration value="TI1"/>
+ *     <enumeration value="U01"/>
+ *     <enumeration value="U02"/>
+ *     <enumeration value="U03"/>
+ *     <enumeration value="U04"/>
+ *     <enumeration value="U05"/>
+ *     <enumeration value="U06"/>
+ *     <enumeration value="U09"/>
+ *     <enumeration value="U10"/>
+ *     <enumeration value="U11"/>
+ *     <enumeration value="U12"/>
+ *     <enumeration value="U13"/>
+ *     <enumeration value="U14"/>
+ *     <enumeration value="U15"/>
+ *     <enumeration value="U16"/>
+ *     <enumeration value="U17"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "RisikoArtCd_Type") +@XmlEnum +public enum RisikoArtCdType { + + + /** + * KFZ-Haftpflicht + * + */ + @XmlEnumValue("AH1") + AH_1("AH1"), + + /** + * Voll- und Gross-Schadenkasko + * + */ + @XmlEnumValue("AK1") + AK_1("AK1"), + + /** + * Teilkasko + * + */ + @XmlEnumValue("AK2") + AK_2("AK2"), + + /** + * KFZ-Assistance + * + */ + @XmlEnumValue("AS1") + AS_1("AS1"), + + /** + * Reise-Assistance + * + */ + @XmlEnumValue("AS2") + AS_2("AS2"), + + /** + * Wohn-Assistance + * + */ + @XmlEnumValue("AS3") + AS_3("AS3"), + + /** + * Unfall-Assistance + * + */ + @XmlEnumValue("AS4") + AS_4("AS4"), + + /** + * Insassen-Unfall + * + */ + @XmlEnumValue("AU1") + AU_1("AU1"), + + /** + * Insassen-Unfall Todesfall + * + */ + @XmlEnumValue("AU2") + AU_2("AU2"), + + /** + * Insassen-Unfall Invalidität + * + */ + @XmlEnumValue("AU3") + AU_3("AU3"), + + /** + * Insassen-Unfall Taggeld + * + */ + @XmlEnumValue("AU4") + AU_4("AU4"), + + /** + * Insassen-Unfall Heilkosten + * + */ + @XmlEnumValue("AU5") + AU_5("AU5"), + + /** + * Abfertigungs-Versicherung + * + */ + @XmlEnumValue("AV1") + AV_1("AV1"), + + /** + * Bausparen Ansparen + * + */ + @XmlEnumValue("BA1") + BA_1("BA1"), + + /** + * Bausparen Darlehen + * + */ + @XmlEnumValue("BD1") + BD_1("BD1"), + + /** + * Betr.Unterbrechung-Feuer-Zivil + * + */ + @XmlEnumValue("B01") + B_01("B01"), + + /** + * Betr.Unterbrechung Feuer-Industrie + * + */ + @XmlEnumValue("B02") + B_02("B02"), + + /** + * Betr.Unterbrechung-EC + * + */ + @XmlEnumValue("B03") + B_03("B03"), + + /** + * Betr.Unterbrechung-Maschinenbruch + * + */ + @XmlEnumValue("B04") + B_04("B04"), + + /** + * Betr.Unterbrechung-Elementarschaden + * + */ + @XmlEnumValue("B05") + B_05("B05"), + + /** + * Betr.Unterbrechung f.freiber. Tätige + * + */ + @XmlEnumValue("B06") + B_06("B06"), + + /** + * Veranstaltungen + * + */ + @XmlEnumValue("B11") + B_11("B11"), + + /** + * Blitzschlag + * + */ + @XmlEnumValue("BL1") + BL_1("BL1"), + + /** + * indirekter Blitzschlag + * + */ + @XmlEnumValue("BL2") + BL_2("BL2"), + + /** + * Einbruch-Diebstahl + * + */ + @XmlEnumValue("E01") + E_01("E01"), + + /** + * Kassenboten + * + */ + @XmlEnumValue("E02") + E_02("E02"), + + /** + * Extended Coverage + * + */ + @XmlEnumValue("EC1") + EC_1("EC1"), + + /** + * Feuer-Zivil + * + */ + @XmlEnumValue("F01") + F_01("F01"), + + /** + * Feuer-Landwirtschaft + * + */ + @XmlEnumValue("F02") + F_02("F02"), + + /** + * Feuer-Industrie + * + */ + @XmlEnumValue("F03") + F_03("F03"), + + /** + * Feuer-EC + * + */ + @XmlEnumValue("F04") + F_04("F04"), + + /** + * Waldbrand + * + */ + @XmlEnumValue("F05") + F_05("F05"), + + /** + * Glasbruch privat + * + */ + @XmlEnumValue("G01") + G_01("G01"), + + /** + * Glasbruch Geschäft + * + */ + @XmlEnumValue("G02") + G_02("G02"), + + /** + * Allg.Haftpflicht + * + */ + @XmlEnumValue("H01") + H_01("H01"), + + /** + * Sonder-Haftpflicht + * + */ + @XmlEnumValue("H02") + H_02("H02"), + + /** + * Flug-Haftpflicht + * + */ + @XmlEnumValue("H03") + H_03("H03"), + + /** + * Vermögensschaden + * + */ + @XmlEnumValue("H04") + H_04("H04"), + + /** + * Atom-Haftpflicht + * + */ + @XmlEnumValue("H05") + H_05("H05"), + + /** + * Verkehrs-Haftpflicht + * + */ + @XmlEnumValue("H06") + H_06("H06"), + + /** + * Bauherrn-Haftpflicht + * + */ + @XmlEnumValue("H07") + H_07("H07"), + + /** + * Boots-Haftpflicht + * + */ + @XmlEnumValue("H08") + H_08("H08"), + + /** + * Sonstige Haftpflicht + * + */ + @XmlEnumValue("H99") + H_99("H99"), + + /** + * Haushalt + * + */ + @XmlEnumValue("HH1") + HH_1("HH1"), + + /** + * Spital + * + */ + @XmlEnumValue("K01") + K_01("K01"), + + /** + * Ambulanz + * + */ + @XmlEnumValue("K02") + K_02("K02"), + + /** + * Heilmittel + * + */ + @XmlEnumValue("K03") + K_03("K03"), + + /** + * Taggeld + * + */ + @XmlEnumValue("K04") + K_04("K04"), + + /** + * Reise-KV + * + */ + @XmlEnumValue("K09") + K_09("K09"), + + /** + * Pflegegeld + * + */ + @XmlEnumValue("K10") + K_10("K10"), + + /** + * KV sonstige + * + */ + @XmlEnumValue("K99") + K_99("K99"), + + /** + * Leben Kapital + * + */ + @XmlEnumValue("L01") + L_01("L01"), + + /** + * Leben Risiko + * + */ + @XmlEnumValue("L02") + L_02("L02"), + + /** + * Leben Rente + * + */ + @XmlEnumValue("L03") + L_03("L03"), + + /** + * Leben Dread Disease + * + */ + @XmlEnumValue("L04") + L_04("L04"), + + /** + * Leben veranlagungsorientiert + * + */ + @XmlEnumValue("L05") + L_05("L05"), + + /** + * Leben Kreditrestschuld + * + */ + @XmlEnumValue("L06") + L_06("L06"), + + /** + * Leben prämiengefördert + * + */ + @XmlEnumValue("L07") + L_07("L07"), + + /** + * Leben fondgebunden + * + */ + @XmlEnumValue("L08") + L_08("L08"), + + /** + * Berufsunfähigkeit + * + */ + @XmlEnumValue("L09") + L_09("L09"), + + /** + * Erwerbsunfähigkeit + * + */ + @XmlEnumValue("L10") + L_10("L10"), + + /** + * Pflegegeld + * + */ + @XmlEnumValue("L11") + L_11("L11"), + + /** + * Leben sonstige + * + */ + @XmlEnumValue("L99") + L_99("L99"), + + /** + * Leasing + * + */ + @XmlEnumValue("LS1") + LS_1("LS1"), + + /** + * Leitungswasser + * + */ + @XmlEnumValue("LW1") + LW_1("LW1"), + + /** + * Maschinenbruch + * + */ + @XmlEnumValue("M01") + M_01("M01"), + + /** + * Maschinen-Montage + * + */ + @XmlEnumValue("M02") + M_02("M02"), + + /** + * Maschinen-Garantie + * + */ + @XmlEnumValue("M03") + M_03("M03"), + + /** + * Elektrogeräte + * + */ + @XmlEnumValue("M04") + M_04("M04"), + + /** + * Computer und Unterhaltungselektronik + * + */ + @XmlEnumValue("M05") + M_05("M05"), + + /** + * Tiefkühltruhen + * + */ + @XmlEnumValue("M06") + M_06("M06"), + + /** + * Haustechnik + * + */ + @XmlEnumValue("M07") + M_07("M07"), + + /** + * Privat Rechtsschutz + * + */ + @XmlEnumValue("R01") + R_01("R01"), + + /** + * Kfz-Rechtsschutz + * + */ + @XmlEnumValue("R02") + R_02("R02"), + + /** + * Firmen-Rechtsschutz + * + */ + @XmlEnumValue("R03") + R_03("R03"), + + /** + * Schadenersatz- und Strafrechtsschutz + * + */ + @XmlEnumValue("R04") + R_04("R04"), + + /** + * Arbeitsgerichtsrechtsschutz + * + */ + @XmlEnumValue("R05") + R_05("R05"), + + /** + * Sozialversicherungsrechtsschutz + * + */ + @XmlEnumValue("R06") + R_06("R06"), + + /** + * Beratungsrechtsschutz + * + */ + @XmlEnumValue("R07") + R_07("R07"), + + /** + * Allgemeiner Vertragsrechtsschutz + * + */ + @XmlEnumValue("R08") + R_08("R08"), + + /** + * Grundstückseigentum- und Mietenrechtsschutz + * + */ + @XmlEnumValue("R09") + R_09("R09"), + + /** + * Erb- und Familienrechtsschutz + * + */ + @XmlEnumValue("R10") + R_10("R10"), + + /** + * Disziplinarverfahren + * + */ + @XmlEnumValue("R11") + R_11("R11"), + + /** + * Disziplinarverfahren für angestellte Ärzte + * + */ + @XmlEnumValue("R12") + R_12("R12"), + + /** + * Vorsatzdelikte + * + */ + @XmlEnumValue("R13") + R_13("R13"), + + /** + * Fahrzeugrechtsschutz + * + */ + @XmlEnumValue("R14") + R_14("R14"), + + /** + * Lenkerrechtsschutz + * + */ + @XmlEnumValue("R15") + R_15("R15"), + + /** + * Fahrzeugvertragsrechtsschutz + * + */ + @XmlEnumValue("R16") + R_16("R16"), + + /** + * Sonstiger Rechtsschutz + * + */ + @XmlEnumValue("R99") + R_99("R99"), + + /** + * Reise-Storno + * + */ + @XmlEnumValue("RE1") + RE_1("RE1"), + + /** + * Reise-Assistance + * + */ + @XmlEnumValue("RE2") + RE_2("RE2"), + + /** + * Reise-Kranken + * + */ + @XmlEnumValue("RE3") + RE_3("RE3"), + + /** + * Reise-Unfall + * + */ + @XmlEnumValue("RE4") + RE_4("RE4"), + + /** + * Kühlgut + * + */ + @XmlEnumValue("S01") + S_01("S01"), + + /** + * Lizenzverlust + * + */ + @XmlEnumValue("S12") + S_12("S12"), + + /** + * Atom-Sach + * + */ + @XmlEnumValue("S13") + S_13("S13"), + + /** + * Bauwesen + * + */ + @XmlEnumValue("S14") + S_14("S14"), + + /** + * Flugkasko + * + */ + @XmlEnumValue("S15") + S_15("S15"), + + /** + * Bootskasko + * + */ + @XmlEnumValue("S16") + S_16("S16"), + + /** + * Grabstätten + * + */ + @XmlEnumValue("S17") + S_17("S17"), + + /** + * sonstige SV + * + */ + @XmlEnumValue("S99") + S_99("S99"), + + /** + * Sturm + * + */ + @XmlEnumValue("ST1") + ST_1("ST1"), + + /** + * Land-Binnenwaren + * + */ + @XmlEnumValue("T01") + T_01("T01"), + + /** + * See + * + */ + @XmlEnumValue("T02") + T_02("T02"), + + /** + * Krieg + * + */ + @XmlEnumValue("T03") + T_03("T03"), + + /** + * Lager + * + */ + @XmlEnumValue("T04") + T_04("T04"), + + /** + * Valoren-Gewerblich + * + */ + @XmlEnumValue("T05") + T_05("T05"), + + /** + * Valoren-Privat + * + */ + @XmlEnumValue("T06") + T_06("T06"), + + /** + * Sportboot-Kasko + * + */ + @XmlEnumValue("T07") + T_07("T07"), + + /** + * Musik-Instrumente + * + */ + @XmlEnumValue("T08") + T_08("T08"), + + /** + * Kunst + * + */ + @XmlEnumValue("T09") + T_09("T09"), + + /** + * Seekasko + * + */ + @XmlEnumValue("T11") + T_11("T11"), + + /** + * Flusskasko + * + */ + @XmlEnumValue("T12") + T_12("T12"), + + /** + * Landkasko + * + */ + @XmlEnumValue("T13") + T_13("T13"), + + /** + * Reisegepäck + * + */ + @XmlEnumValue("T20") + T_20("T20"), + + /** + * Fotoapparate + * + */ + @XmlEnumValue("T21") + T_21("T21"), + + /** + * Film/Sach + * + */ + @XmlEnumValue("T22") + T_22("T22"), + + /** + * Film/Ausfall + * + */ + @XmlEnumValue("T23") + T_23("T23"), + + /** + * Sonstige Transport + * + */ + @XmlEnumValue("T99") + T_99("T99"), + + /** + * Tier + * + */ + @XmlEnumValue("TI1") + TI_1("TI1"), + + /** + * Allg.Unfall + * + */ + @XmlEnumValue("U01") + U_01("U01"), + + /** + * Kollektiv Unfall + * + */ + @XmlEnumValue("U02") + U_02("U02"), + + /** + * Schülerunfall + * + */ + @XmlEnumValue("U03") + U_03("U03"), + + /** + * Volksunfall + * + */ + @XmlEnumValue("U04") + U_04("U04"), + + /** + * Flug-Unfall + * + */ + @XmlEnumValue("U05") + U_05("U05"), + + /** + * Boots-Unfall + * + */ + @XmlEnumValue("U06") + U_06("U06"), + + /** + * Besucher-Unfall + * + */ + @XmlEnumValue("U09") + U_09("U09"), + + /** + * Unfall mit Kapitalrückgewähr + * + */ + @XmlEnumValue("U10") + U_10("U10"), + + /** + * Taggeld + * + */ + @XmlEnumValue("U11") + U_11("U11"), + + /** + * Invalidität + * + */ + @XmlEnumValue("U12") + U_12("U12"), + + /** + * Unfallrente + * + */ + @XmlEnumValue("U13") + U_13("U13"), + + /** + * Unfalltod + * + */ + @XmlEnumValue("U14") + U_14("U14"), + + /** + * Spitalgeld + * + */ + @XmlEnumValue("U15") + U_15("U15"), + + /** + * Unfallkosten + * + */ + @XmlEnumValue("U16") + U_16("U16"), + + /** + * Kostenersatz + * + */ + @XmlEnumValue("U17") + U_17("U17"); + private final String value; + + RisikoArtCdType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static RisikoArtCdType fromValue(String v) { + for (RisikoArtCdType c: RisikoArtCdType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENBETEILIGTERType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENBETEILIGTERType.java new file mode 100644 index 00000000..a45ff0c6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENBETEILIGTERType.java @@ -0,0 +1,211 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SCHADEN_BETEILIGTER_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SCHADEN_BETEILIGTER_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence minOccurs="0">
+ *         <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
+ *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
+ *       <attribute name="BetTxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = { + "geschaedigtesobjekt", + "zahlung" +}) +public class SCHADENBETEILIGTERType { + + @XmlElement(name = "GESCHAEDIGTES_OBJEKT") + protected List geschaedigtesobjekt; + @XmlElement(name = "ZAHLUNG") + protected List zahlung; + @XmlAttribute(name = "BetLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int betLfnr; + @XmlAttribute(name = "Personennr") + protected String personennr; + @XmlAttribute(name = "BetRolleCd", required = true) + protected String betRolleCd; + @XmlAttribute(name = "BetTxt") + protected String betTxt; + + /** + * Gets the value of the geschaedigtesobjekt property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the geschaedigtesobjekt property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getGESCHAEDIGTESOBJEKT().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GESCHAEDIGTESOBJEKTType } + * + * + */ + public List getGESCHAEDIGTESOBJEKT() { + if (geschaedigtesobjekt == null) { + geschaedigtesobjekt = new ArrayList(); + } + return this.geschaedigtesobjekt; + } + + /** + * Gets the value of the zahlung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zahlung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZAHLUNG().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZAHLUNGType } + * + * + */ + public List getZAHLUNG() { + if (zahlung == null) { + zahlung = new ArrayList(); + } + return this.zahlung; + } + + /** + * Ruft den Wert der betLfnr-Eigenschaft ab. + * + */ + public int getBetLfnr() { + return betLfnr; + } + + /** + * Legt den Wert der betLfnr-Eigenschaft fest. + * + */ + public void setBetLfnr(int value) { + this.betLfnr = value; + } + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + + /** + * Ruft den Wert der betRolleCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetRolleCd() { + return betRolleCd; + } + + /** + * Legt den Wert der betRolleCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetRolleCd(String value) { + this.betRolleCd = value; + } + + /** + * Ruft den Wert der betTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetTxt() { + return betTxt; + } + + /** + * Legt den Wert der betTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetTxt(String value) { + this.betTxt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENType.java new file mode 100644 index 00000000..5e3d504b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHADENType.java @@ -0,0 +1,658 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SCHADEN_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SCHADEN_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence minOccurs="0">
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Betrag"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Polizzennummer"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *         </choice>
+ *         <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-KFZ-Kennzeichen" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
+ *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *       <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
+ *       <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
+ *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
+ *       <attribute name="SpartenErweiterung" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="10"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
+ *       <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
+ *       <attribute name="SchadUrsTxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
+ *       <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
+ *       <attribute name="ErledDat" type="{urn:omds20}Datum" />
+ *       <attribute name="SachbearbVU">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="30"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
+ *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SCHADEN_Type", propOrder = { + "elAnzahlOrELBetragOrELEinstufung", + "schadenbeteiligter", + "elkfzKennzeichen" +}) +public class SCHADENType { + + @XmlElements({ + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Betrag", type = ELBetragType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), + @XmlElement(name = "EL-Text", type = ELTextType.class) + }) + protected List elAnzahlOrELBetragOrELEinstufung; + @XmlElement(name = "SCHADEN_BETEILIGTER") + protected List schadenbeteiligter; + @XmlElement(name = "EL-KFZ-Kennzeichen") + protected ELKFZKennzeichenType elkfzKennzeichen; + @XmlAttribute(name = "Schadennr", required = true) + protected String schadennr; + @XmlAttribute(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + @XmlAttribute(name = "Vermnr") + protected String vermnr; + @XmlAttribute(name = "VerbandSparteCd") + protected String verbandSparteCd; + @XmlAttribute(name = "SpartenCd", required = true) + protected String spartenCd; + @XmlAttribute(name = "SpartenErweiterung", required = true) + protected String spartenErweiterung; + @XmlAttribute(name = "Ereigniszpkt", required = true) + protected XMLGregorianCalendar ereigniszpkt; + @XmlAttribute(name = "Meldedat", required = true) + protected XMLGregorianCalendar meldedat; + @XmlAttribute(name = "SchadUrsCd") + protected String schadUrsCd; + @XmlAttribute(name = "SchadUrsTxt") + protected String schadUrsTxt; + @XmlAttribute(name = "VerschuldenCd") + protected String verschuldenCd; + @XmlAttribute(name = "MalusWirksamKz") + protected Entsch2Type malusWirksamKz; + @XmlAttribute(name = "BearbStandCd", required = true) + protected String bearbStandCd; + @XmlAttribute(name = "ErledDat") + protected XMLGregorianCalendar erledDat; + @XmlAttribute(name = "SachbearbVU") + protected String sachbearbVU; + @XmlAttribute(name = "LeistungGeschaetzt") + protected BigDecimal leistungGeschaetzt; + @XmlAttribute(name = "WaehrungsCd", required = true) + protected WaehrungsCdType waehrungsCd; + + /** + * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahlOrELBetragOrELEinstufung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * {@link ELBetragType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELPolizzennummerType } + * {@link ELTextType } + * + * + */ + public List getELAnzahlOrELBetragOrELEinstufung() { + if (elAnzahlOrELBetragOrELEinstufung == null) { + elAnzahlOrELBetragOrELEinstufung = new ArrayList(); + } + return this.elAnzahlOrELBetragOrELEinstufung; + } + + /** + * Gets the value of the schadenbeteiligter property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schadenbeteiligter property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSCHADENBETEILIGTER().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SCHADENBETEILIGTERType } + * + * + */ + public List getSCHADENBETEILIGTER() { + if (schadenbeteiligter == null) { + schadenbeteiligter = new ArrayList(); + } + return this.schadenbeteiligter; + } + + /** + * Ruft den Wert der elkfzKennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link ELKFZKennzeichenType } + * + */ + public ELKFZKennzeichenType getELKFZKennzeichen() { + return elkfzKennzeichen; + } + + /** + * Legt den Wert der elkfzKennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ELKFZKennzeichenType } + * + */ + public void setELKFZKennzeichen(ELKFZKennzeichenType value) { + this.elkfzKennzeichen = value; + } + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Ruft den Wert der verbandSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbandSparteCd() { + return verbandSparteCd; + } + + /** + * Legt den Wert der verbandSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbandSparteCd(String value) { + this.verbandSparteCd = value; + } + + /** + * Ruft den Wert der spartenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenCd() { + return spartenCd; + } + + /** + * Legt den Wert der spartenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenCd(String value) { + this.spartenCd = value; + } + + /** + * Ruft den Wert der spartenErweiterung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenErweiterung() { + return spartenErweiterung; + } + + /** + * Legt den Wert der spartenErweiterung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenErweiterung(String value) { + this.spartenErweiterung = value; + } + + /** + * Ruft den Wert der ereigniszpkt-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEreigniszpkt() { + return ereigniszpkt; + } + + /** + * Legt den Wert der ereigniszpkt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEreigniszpkt(XMLGregorianCalendar value) { + this.ereigniszpkt = value; + } + + /** + * Ruft den Wert der meldedat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMeldedat() { + return meldedat; + } + + /** + * Legt den Wert der meldedat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMeldedat(XMLGregorianCalendar value) { + this.meldedat = value; + } + + /** + * Ruft den Wert der schadUrsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadUrsCd() { + return schadUrsCd; + } + + /** + * Legt den Wert der schadUrsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadUrsCd(String value) { + this.schadUrsCd = value; + } + + /** + * Ruft den Wert der schadUrsTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadUrsTxt() { + return schadUrsTxt; + } + + /** + * Legt den Wert der schadUrsTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadUrsTxt(String value) { + this.schadUrsTxt = value; + } + + /** + * Ruft den Wert der verschuldenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerschuldenCd() { + return verschuldenCd; + } + + /** + * Legt den Wert der verschuldenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerschuldenCd(String value) { + this.verschuldenCd = value; + } + + /** + * Ruft den Wert der malusWirksamKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getMalusWirksamKz() { + return malusWirksamKz; + } + + /** + * Legt den Wert der malusWirksamKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setMalusWirksamKz(Entsch2Type value) { + this.malusWirksamKz = value; + } + + /** + * Ruft den Wert der bearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStandCd() { + return bearbStandCd; + } + + /** + * Legt den Wert der bearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStandCd(String value) { + this.bearbStandCd = value; + } + + /** + * Ruft den Wert der erledDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getErledDat() { + return erledDat; + } + + /** + * Legt den Wert der erledDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setErledDat(XMLGregorianCalendar value) { + this.erledDat = value; + } + + /** + * Ruft den Wert der sachbearbVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSachbearbVU() { + return sachbearbVU; + } + + /** + * Legt den Wert der sachbearbVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSachbearbVU(String value) { + this.sachbearbVU = value; + } + + /** + * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLeistungGeschaetzt() { + return leistungGeschaetzt; + } + + /** + * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLeistungGeschaetzt(BigDecimal value) { + this.leistungGeschaetzt = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSEL.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSEL.java new file mode 100644 index 00000000..a98c280c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSEL.java @@ -0,0 +1,132 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="SchlWert" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="3"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Schlbez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="50"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SchlWert_generell">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="3"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "SCHLUESSEL") +public class SCHLUESSEL { + + @XmlAttribute(name = "SchlWert", required = true) + protected String schlWert; + @XmlAttribute(name = "Schlbez") + protected String schlbez; + @XmlAttribute(name = "SchlWert_generell") + protected String schlWertGenerell; + + /** + * Ruft den Wert der schlWert-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchlWert() { + return schlWert; + } + + /** + * Legt den Wert der schlWert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchlWert(String value) { + this.schlWert = value; + } + + /** + * Ruft den Wert der schlbez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchlbez() { + return schlbez; + } + + /** + * Legt den Wert der schlbez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchlbez(String value) { + this.schlbez = value; + } + + /** + * Ruft den Wert der schlWertGenerell-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchlWertGenerell() { + return schlWertGenerell; + } + + /** + * Legt den Wert der schlWertGenerell-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchlWertGenerell(String value) { + this.schlWertGenerell = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSELART.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSELART.java new file mode 100644 index 00000000..4d4888f5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SCHLUESSELART.java @@ -0,0 +1,159 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence maxOccurs="unbounded">
+ *         <element ref="{urn:omds20}SCHLUESSEL"/>
+ *       </sequence>
+ *       <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
+ *       <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="SchlArtBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="30"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "schluessel" +}) +@XmlRootElement(name = "SCHLUESSELART") +public class SCHLUESSELART { + + @XmlElement(name = "SCHLUESSEL", required = true) + protected List schluessel; + @XmlAttribute(name = "SchlArtCd", required = true) + protected SchlArtCdType schlArtCd; + @XmlAttribute(name = "VUWertErlaubtKz", required = true) + protected Entsch2Type vuWertErlaubtKz; + @XmlAttribute(name = "SchlArtBez") + protected String schlArtBez; + + /** + * Gets the value of the schluessel property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schluessel property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSCHLUESSEL().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SCHLUESSEL } + * + * + */ + public List getSCHLUESSEL() { + if (schluessel == null) { + schluessel = new ArrayList(); + } + return this.schluessel; + } + + /** + * Ruft den Wert der schlArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchlArtCdType } + * + */ + public SchlArtCdType getSchlArtCd() { + return schlArtCd; + } + + /** + * Legt den Wert der schlArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchlArtCdType } + * + */ + public void setSchlArtCd(SchlArtCdType value) { + this.schlArtCd = value; + } + + /** + * Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getVUWertErlaubtKz() { + return vuWertErlaubtKz; + } + + /** + * Legt den Wert der vuWertErlaubtKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setVUWertErlaubtKz(Entsch2Type value) { + this.vuWertErlaubtKz = value; + } + + /** + * Ruft den Wert der schlArtBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchlArtBez() { + return schlArtBez; + } + + /** + * Legt den Wert der schlArtBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchlArtBez(String value) { + this.schlArtBez = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SONSTIGEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SONSTIGEPERSONType.java new file mode 100644 index 00000000..e82e9c4a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SONSTIGEPERSONType.java @@ -0,0 +1,206 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SONSTIGE_PERSON_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SONSTIGE_PERSON_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Name" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="120"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Kurzname">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="15"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
+ *       <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" />
+ *       <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
+ *       <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SONSTIGE_PERSON_Type") +public class SONSTIGEPERSONType { + + @XmlAttribute(name = "Name", required = true) + protected String name; + @XmlAttribute(name = "Kurzname") + protected String kurzname; + @XmlAttribute(name = "SonstPersArtCd", required = true) + protected String sonstPersArtCd; + @XmlAttribute(name = "GesFormCd") + protected GesFormCdType gesFormCd; + @XmlAttribute(name = "PersonID_VU") + protected String personIDVU; + @XmlAttribute(name = "PersonID_Makler") + protected String personIDMakler; + + /** + * 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 kurzname-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKurzname() { + return kurzname; + } + + /** + * Legt den Wert der kurzname-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKurzname(String value) { + this.kurzname = value; + } + + /** + * Ruft den Wert der sonstPersArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSonstPersArtCd() { + return sonstPersArtCd; + } + + /** + * Legt den Wert der sonstPersArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSonstPersArtCd(String value) { + this.sonstPersArtCd = value; + } + + /** + * Ruft den Wert der gesFormCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link GesFormCdType } + * + */ + public GesFormCdType getGesFormCd() { + return gesFormCd; + } + + /** + * Legt den Wert der gesFormCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GesFormCdType } + * + */ + public void setGesFormCd(GesFormCdType value) { + this.gesFormCd = value; + } + + /** + * Ruft den Wert der personIDVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonIDVU() { + return personIDVU; + } + + /** + * Legt den Wert der personIDVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonIDVU(String value) { + this.personIDVU = value; + } + + /** + * Ruft den Wert der personIDMakler-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonIDMakler() { + return personIDMakler; + } + + /** + * Legt den Wert der personIDMakler-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonIDMakler(String value) { + this.personIDMakler = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SPARTEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SPARTEType.java new file mode 100644 index 00000000..f97d3629 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SPARTEType.java @@ -0,0 +1,586 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SPARTE_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SPARTE_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Betrag"/>
+ *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
+ *           <element ref="{urn:omds20}EL-Grenzwert"/>
+ *           <element ref="{urn:omds20}EL-Index"/>
+ *           <element ref="{urn:omds20}EL-Klausel"/>
+ *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
+ *           <element ref="{urn:omds20}EL-Rente"/>
+ *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
+ *           <element ref="{urn:omds20}EL-Steuer"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
+ *           <element ref="{urn:omds20}EL-Zeitraum"/>
+ *         </choice>
+ *         <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
+ *       </sequence>
+ *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
+ *       <attribute name="SpartenErweiterung" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="10"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SpartenID">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
+ *       <attribute name="Spartentxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="80"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
+ *       <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
+ *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
+ *       <attribute name="HauptTarifBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="25"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
+ *       <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
+ *       <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SPARTE_Type", propOrder = { + "elAnzahlOrELBetragOrELBezugsberechtigung", + "risiko" +}) +public class SPARTEType { + + @XmlElements({ + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Betrag", type = ELBetragType.class), + @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), + @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), + @XmlElement(name = "EL-Index", type = ELIndexType.class), + @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), + @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), + @XmlElement(name = "EL-Rente", type = ELRenteType.class), + @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), + @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), + @XmlElement(name = "EL-Text", type = ELTextType.class), + @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), + @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) + }) + protected List elAnzahlOrELBetragOrELBezugsberechtigung; + @XmlElement(name = "RISIKO", required = true) + protected List risiko; + @XmlAttribute(name = "SpartenCd", required = true) + protected String spartenCd; + @XmlAttribute(name = "SpartenErweiterung", required = true) + protected String spartenErweiterung; + @XmlAttribute(name = "SpartenID") + protected String spartenID; + @XmlAttribute(name = "VerbandSparteCd", required = true) + protected String verbandSparteCd; + @XmlAttribute(name = "Spartentxt") + protected String spartentxt; + @XmlAttribute(name = "SpartenBeg") + protected XMLGregorianCalendar spartenBeg; + @XmlAttribute(name = "SpartenEnd") + protected XMLGregorianCalendar spartenEnd; + @XmlAttribute(name = "StatusCd") + protected String statusCd; + @XmlAttribute(name = "HauptTarifBez") + protected String hauptTarifBez; + @XmlAttribute(name = "SichergKz") + protected Entsch2Type sichergKz; + @XmlAttribute(name = "DirBeteiligtKz") + protected String dirBeteiligtKz; + @XmlAttribute(name = "SondervereinbarungKz") + protected String sondervereinbarungKz; + @XmlAttribute(name = "PraemieNtoSp", required = true) + protected BigDecimal praemieNtoSp; + @XmlAttribute(name = "PraemieBtoSp", required = true) + protected BigDecimal praemieBtoSp; + @XmlAttribute(name = "nmoKuendDat") + protected XMLGregorianCalendar nmoKuendDat; + + /** + * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * {@link ELBetragType } + * {@link ELBezugsberechtigungType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELGewinnbeteiligungType } + * {@link ELGrenzwertType } + * {@link ELIndexType } + * {@link ELKlauselType } + * {@link ELPraemienkorrekturType } + * {@link ELRenteType } + * {@link ELSelbstbehalt } + * {@link ELSteuerType } + * {@link ELTextType } + * {@link ELVersicherungssummeType } + * {@link ELZeitraumType } + * + * + */ + public List getELAnzahlOrELBetragOrELBezugsberechtigung() { + if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { + elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); + } + return this.elAnzahlOrELBetragOrELBezugsberechtigung; + } + + /** + * Gets the value of the risiko property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the risiko property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRISIKO().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RISIKOType } + * + * + */ + public List getRISIKO() { + if (risiko == null) { + risiko = new ArrayList(); + } + return this.risiko; + } + + /** + * Ruft den Wert der spartenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenCd() { + return spartenCd; + } + + /** + * Legt den Wert der spartenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenCd(String value) { + this.spartenCd = value; + } + + /** + * Ruft den Wert der spartenErweiterung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenErweiterung() { + return spartenErweiterung; + } + + /** + * Legt den Wert der spartenErweiterung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenErweiterung(String value) { + this.spartenErweiterung = value; + } + + /** + * Ruft den Wert der spartenID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenID() { + return spartenID; + } + + /** + * Legt den Wert der spartenID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenID(String value) { + this.spartenID = value; + } + + /** + * Ruft den Wert der verbandSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbandSparteCd() { + return verbandSparteCd; + } + + /** + * Legt den Wert der verbandSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbandSparteCd(String value) { + this.verbandSparteCd = value; + } + + /** + * Ruft den Wert der spartentxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartentxt() { + return spartentxt; + } + + /** + * Legt den Wert der spartentxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartentxt(String value) { + this.spartentxt = value; + } + + /** + * Ruft den Wert der spartenBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSpartenBeg() { + return spartenBeg; + } + + /** + * Legt den Wert der spartenBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSpartenBeg(XMLGregorianCalendar value) { + this.spartenBeg = value; + } + + /** + * Ruft den Wert der spartenEnd-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSpartenEnd() { + return spartenEnd; + } + + /** + * Legt den Wert der spartenEnd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSpartenEnd(XMLGregorianCalendar value) { + this.spartenEnd = value; + } + + /** + * Ruft den Wert der statusCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatusCd() { + return statusCd; + } + + /** + * Legt den Wert der statusCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatusCd(String value) { + this.statusCd = value; + } + + /** + * Ruft den Wert der hauptTarifBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHauptTarifBez() { + return hauptTarifBez; + } + + /** + * Legt den Wert der hauptTarifBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHauptTarifBez(String value) { + this.hauptTarifBez = value; + } + + /** + * Ruft den Wert der sichergKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getSichergKz() { + return sichergKz; + } + + /** + * Legt den Wert der sichergKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setSichergKz(Entsch2Type value) { + this.sichergKz = value; + } + + /** + * Ruft den Wert der dirBeteiligtKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDirBeteiligtKz() { + return dirBeteiligtKz; + } + + /** + * Legt den Wert der dirBeteiligtKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDirBeteiligtKz(String value) { + this.dirBeteiligtKz = value; + } + + /** + * Ruft den Wert der sondervereinbarungKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSondervereinbarungKz() { + return sondervereinbarungKz; + } + + /** + * Legt den Wert der sondervereinbarungKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSondervereinbarungKz(String value) { + this.sondervereinbarungKz = value; + } + + /** + * Ruft den Wert der praemieNtoSp-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieNtoSp() { + return praemieNtoSp; + } + + /** + * Legt den Wert der praemieNtoSp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieNtoSp(BigDecimal value) { + this.praemieNtoSp = value; + } + + /** + * Ruft den Wert der praemieBtoSp-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieBtoSp() { + return praemieBtoSp; + } + + /** + * Legt den Wert der praemieBtoSp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieBtoSp(BigDecimal value) { + this.praemieBtoSp = value; + } + + /** + * Ruft den Wert der nmoKuendDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getNmoKuendDat() { + return nmoKuendDat; + } + + /** + * Legt den Wert der nmoKuendDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setNmoKuendDat(XMLGregorianCalendar value) { + this.nmoKuendDat = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SbhArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SbhArtCdType.java new file mode 100644 index 00000000..424d1c9f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SbhArtCdType.java @@ -0,0 +1,75 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SbhArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="SbhArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="MIS"/>
+ *     <enumeration value="MXK"/>
+ *     <enumeration value="MXS"/>
+ *     <enumeration value="STS"/>
+ *     <enumeration value="SSO"/>
+ *     <enumeration value="SRE"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "SbhArtCd_Type") +@XmlEnum +public enum SbhArtCdType { + + + /** + * Mindestselbstbehalt je Schadenfall + * + */ + MIS, + + /** + * Maximalselbstbehalt kumuliert + * + */ + MXK, + + /** + * Maximalselbstbehalt je Schadenfall + * + */ + MXS, + + /** + * Standardselbstbehalt je Schadenfall + * + */ + STS, + + /** + * Selbstbehalt sonst + * + */ + SSO, + + /** + * Selbstbehalt reduziert + * + */ + SRE; + + public String value() { + return name(); + } + + public static SbhArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SchlArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SchlArtCdType.java new file mode 100644 index 00000000..09c3b552 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SchlArtCdType.java @@ -0,0 +1,606 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SchlArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="SchlArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <minLength value="1"/>
+ *     <maxLength value="25"/>
+ *     <enumeration value="AendGrundCd"/>
+ *     <enumeration value="AntriebsArtCd"/>
+ *     <enumeration value="AufbauArtCd"/>
+ *     <enumeration value="AusstattungCd"/>
+ *     <enumeration value="BauartCd"/>
+ *     <enumeration value="BBArtCd"/>
+ *     <enumeration value="BearbStandCd"/>
+ *     <enumeration value="BetragArtCd"/>
+ *     <enumeration value="BetRolleCd"/>
+ *     <enumeration value="DachungCd"/>
+ *     <enumeration value="DachungsArtCd"/>
+ *     <enumeration value="EFrageCd"/>
+ *     <enumeration value="Entsch2"/>
+ *     <enumeration value="Entsch3"/>
+ *     <enumeration value="EstArtCd"/>
+ *     <enumeration value="FamilienstandCd"/>
+ *     <enumeration value="FlaechenAttributCd"/>
+ *     <enumeration value="FzgArtCd"/>
+ *     <enumeration value="GebaeudeArtCd"/>
+ *     <enumeration value="GebaeudeHoeheCd"/>
+ *     <enumeration value="GeschlechtCd"/>
+ *     <enumeration value="GrundRuecklaufCd"/>
+ *     <enumeration value="GrwArtCd"/>
+ *     <enumeration value="IdfArtCd"/>
+ *     <enumeration value="IndexArtCd"/>
+ *     <enumeration value="KomArtCd"/>
+ *     <enumeration value="LandesCd"/>
+ *     <enumeration value="LegArtCd"/>
+ *     <enumeration value="LoeschCd"/>
+ *     <enumeration value="MigrationsCd"/>
+ *     <enumeration value="NutzungCd"/>
+ *     <enumeration value="ObjektdatenCd"/>
+ *     <enumeration value="PaketInhCd"/>
+ *     <enumeration value="PaketUmfCd"/>
+ *     <enumeration value="PersArtCd"/>
+ *     <enumeration value="PfrArtCd"/>
+ *     <enumeration value="PolArtCd"/>
+ *     <enumeration value="PraemFristCd"/>
+ *     <enumeration value="PraemKorrArtCd"/>
+ *     <enumeration value="ProvArtCd"/>
+ *     <enumeration value="RisikoArtCd"/>
+ *     <enumeration value="RntRhythmCd"/>
+ *     <enumeration value="SbhArtCd"/>
+ *     <enumeration value="SchadUrsCd"/>
+ *     <enumeration value="SonstPersArtCd"/>
+ *     <enumeration value="SpartenCd"/>
+ *     <enumeration value="StArtCd"/>
+ *     <enumeration value="TxtArtCd"/>
+ *     <enumeration value="VSArtCd"/>
+ *     <enumeration value="VerbandSparteCd"/>
+ *     <enumeration value="VersLwCd"/>
+ *     <enumeration value="StatusCd"/>
+ *     <enumeration value="VersSacheCd"/>
+ *     <enumeration value="VerschuldenCd"/>
+ *     <enumeration value="VerwendzweckCd"/>
+ *     <enumeration value="VtgProdCd"/>
+ *     <enumeration value="VtgRolleCd"/>
+ *     <enumeration value="VtgSparteCd"/>
+ *     <enumeration value="VtgStatusCd"/>
+ *     <enumeration value="WaehrungsCd"/>
+ *     <enumeration value="ZRArtCd"/>
+ *     <enumeration value="ZahlGrundCd"/>
+ *     <enumeration value="ZahlRhythmCd"/>
+ *     <enumeration value="ZahlWegCd"/>
+ *     <enumeration value="MahnStufeCd"/>
+ *     <enumeration value="RueckGrundCd"/>
+ *     <enumeration value="SprachCd"/>
+ *     <enumeration value="VerbrEinhCd"/>
+ *     <enumeration value="GesFormCd"/>
+ *     <enumeration value="RahmenvertragsartCd"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "SchlArtCd_Type") +@XmlEnum +public enum SchlArtCdType { + + + /** + * Änderungsgrund + * + */ + @XmlEnumValue("AendGrundCd") + AEND_GRUND_CD("AendGrundCd"), + + /** + * Antriebsart + * + */ + @XmlEnumValue("AntriebsArtCd") + ANTRIEBS_ART_CD("AntriebsArtCd"), + + /** + * Aufbauart + * + */ + @XmlEnumValue("AufbauArtCd") + AUFBAU_ART_CD("AufbauArtCd"), + + /** + * Ausstattung + * + */ + @XmlEnumValue("AusstattungCd") + AUSSTATTUNG_CD("AusstattungCd"), + + /** + * Bauart + * + */ + @XmlEnumValue("BauartCd") + BAUART_CD("BauartCd"), + + /** + * Bezugsberechtigungsart + * + */ + @XmlEnumValue("BBArtCd") + BB_ART_CD("BBArtCd"), + + /** + * Bearbeitungsstand + * + */ + @XmlEnumValue("BearbStandCd") + BEARB_STAND_CD("BearbStandCd"), + + /** + * Betragsart + * + */ + @XmlEnumValue("BetragArtCd") + BETRAG_ART_CD("BetragArtCd"), + + /** + * Beteiligungsrolle + * + */ + @XmlEnumValue("BetRolleCd") + BET_ROLLE_CD("BetRolleCd"), + + /** + * Dachung + * + */ + @XmlEnumValue("DachungCd") + DACHUNG_CD("DachungCd"), + + /** + * Dachungsart + * + */ + @XmlEnumValue("DachungsArtCd") + DACHUNGS_ART_CD("DachungsArtCd"), + + /** + * Entscheidungsfrage + * + */ + @XmlEnumValue("EFrageCd") + E_FRAGE_CD("EFrageCd"), + + /** + * Zweiweg-Entscheidung (J,N)> + * + */ + @XmlEnumValue("Entsch2") + ENTSCH_2("Entsch2"), + + /** + * Dreiweg-Entscheidung (J,N,0)> + * + */ + @XmlEnumValue("Entsch3") + ENTSCH_3("Entsch3"), + + /** + * Einstufungsart + * + */ + @XmlEnumValue("EstArtCd") + EST_ART_CD("EstArtCd"), + + /** + * Familienstand + * + */ + @XmlEnumValue("FamilienstandCd") + FAMILIENSTAND_CD("FamilienstandCd"), + + /** + * Flächenattribut + * + */ + @XmlEnumValue("FlaechenAttributCd") + FLAECHEN_ATTRIBUT_CD("FlaechenAttributCd"), + + /** + * Fahrzeugart + * + */ + @XmlEnumValue("FzgArtCd") + FZG_ART_CD("FzgArtCd"), + + /** + * Art des Gebäudes + * + */ + @XmlEnumValue("GebaeudeArtCd") + GEBAEUDE_ART_CD("GebaeudeArtCd"), + + /** + * Gebäudehöhe + * + */ + @XmlEnumValue("GebaeudeHoeheCd") + GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"), + + /** + * Geschlecht + * + */ + @XmlEnumValue("GeschlechtCd") + GESCHLECHT_CD("GeschlechtCd"), + + /** + * GrundRuecklauf + * + */ + @XmlEnumValue("GrundRuecklaufCd") + GRUND_RUECKLAUF_CD("GrundRuecklaufCd"), + + /** + * Grenzwertart + * + */ + @XmlEnumValue("GrwArtCd") + GRW_ART_CD("GrwArtCd"), + + /** + * Identifizierungsart + * + */ + @XmlEnumValue("IdfArtCd") + IDF_ART_CD("IdfArtCd"), + + /** + * Indexart + * + */ + @XmlEnumValue("IndexArtCd") + INDEX_ART_CD("IndexArtCd"), + + /** + * KommunikationsArt + * + */ + @XmlEnumValue("KomArtCd") + KOM_ART_CD("KomArtCd"), + + /** + * Ländercode + * + */ + @XmlEnumValue("LandesCd") + LANDES_CD("LandesCd"), + + /** + * Legitimierungsart + * + */ + @XmlEnumValue("LegArtCd") + LEG_ART_CD("LegArtCd"), + + /** + * Löschungsarten + * + */ + @XmlEnumValue("LoeschCd") + LOESCH_CD("LoeschCd"), + + /** + * Migrationsart + * + */ + @XmlEnumValue("MigrationsCd") + MIGRATIONS_CD("MigrationsCd"), + + /** + * Nutzung + * + */ + @XmlEnumValue("NutzungCd") + NUTZUNG_CD("NutzungCd"), + + /** + * Objektdatenart + * + */ + @XmlEnumValue("ObjektdatenCd") + OBJEKTDATEN_CD("ObjektdatenCd"), + + /** + * Paketinhalt + * + */ + @XmlEnumValue("PaketInhCd") + PAKET_INH_CD("PaketInhCd"), + + /** + * Paketumfang + * + */ + @XmlEnumValue("PaketUmfCd") + PAKET_UMF_CD("PaketUmfCd"), + + /** + * Personenart + * + */ + @XmlEnumValue("PersArtCd") + PERS_ART_CD("PersArtCd"), + + /** + * Prämienfreiart + * + */ + @XmlEnumValue("PfrArtCd") + PFR_ART_CD("PfrArtCd"), + + /** + * Polizzenart + * + */ + @XmlEnumValue("PolArtCd") + POL_ART_CD("PolArtCd"), + + /** + * Prämienfrist + * + */ + @XmlEnumValue("PraemFristCd") + PRAEM_FRIST_CD("PraemFristCd"), + + /** + * Prämienkorrekturart + * + */ + @XmlEnumValue("PraemKorrArtCd") + PRAEM_KORR_ART_CD("PraemKorrArtCd"), + + /** + * Provisionsart + * + */ + @XmlEnumValue("ProvArtCd") + PROV_ART_CD("ProvArtCd"), + + /** + * Risikoart + * + */ + @XmlEnumValue("RisikoArtCd") + RISIKO_ART_CD("RisikoArtCd"), + + /** + * Rentenzahlungsrhythmus + * + */ + @XmlEnumValue("RntRhythmCd") + RNT_RHYTHM_CD("RntRhythmCd"), + + /** + * Selbstbehaltart + * + */ + @XmlEnumValue("SbhArtCd") + SBH_ART_CD("SbhArtCd"), + + /** + * Schadenursache + * + */ + @XmlEnumValue("SchadUrsCd") + SCHAD_URS_CD("SchadUrsCd"), + + /** + * Art der sonstigen Person + * + */ + @XmlEnumValue("SonstPersArtCd") + SONST_PERS_ART_CD("SonstPersArtCd"), + + /** + * Sparte + * + */ + @XmlEnumValue("SpartenCd") + SPARTEN_CD("SpartenCd"), + + /** + * Steuerart + * + */ + @XmlEnumValue("StArtCd") + ST_ART_CD("StArtCd"), + + /** + * Textart + * + */ + @XmlEnumValue("TxtArtCd") + TXT_ART_CD("TxtArtCd"), + + /** + * Versicherungssummenart + * + */ + @XmlEnumValue("VSArtCd") + VS_ART_CD("VSArtCd"), + + /** + * Verbandssparte + * + */ + @XmlEnumValue("VerbandSparteCd") + VERBAND_SPARTE_CD("VerbandSparteCd"), + + /** + * Versicherte Landwirtschaft + * + */ + @XmlEnumValue("VersLwCd") + VERS_LW_CD("VersLwCd"), + + /** + * Status + * + */ + @XmlEnumValue("StatusCd") + STATUS_CD("StatusCd"), + + /** + * Versicherte Sache + * + */ + @XmlEnumValue("VersSacheCd") + VERS_SACHE_CD("VersSacheCd"), + + /** + * Verschulden + * + */ + @XmlEnumValue("VerschuldenCd") + VERSCHULDEN_CD("VerschuldenCd"), + + /** + * Verwendungszweck + * + */ + @XmlEnumValue("VerwendzweckCd") + VERWENDZWECK_CD("VerwendzweckCd"), + + /** + * Vertragsprodukt + * + */ + @XmlEnumValue("VtgProdCd") + VTG_PROD_CD("VtgProdCd"), + + /** + * Vertragsrolle + * + */ + @XmlEnumValue("VtgRolleCd") + VTG_ROLLE_CD("VtgRolleCd"), + + /** + * Vertragssparte + * + */ + @XmlEnumValue("VtgSparteCd") + VTG_SPARTE_CD("VtgSparteCd"), + + /** + * Vertragsstatus + * + */ + @XmlEnumValue("VtgStatusCd") + VTG_STATUS_CD("VtgStatusCd"), + + /** + * Währung + * + */ + @XmlEnumValue("WaehrungsCd") + WAEHRUNGS_CD("WaehrungsCd"), + + /** + * Art des Zeitraumes + * + */ + @XmlEnumValue("ZRArtCd") + ZR_ART_CD("ZRArtCd"), + + /** + * Zahlungsgrund + * + */ + @XmlEnumValue("ZahlGrundCd") + ZAHL_GRUND_CD("ZahlGrundCd"), + + /** + * Zahlungsrhythmus + * + */ + @XmlEnumValue("ZahlRhythmCd") + ZAHL_RHYTHM_CD("ZahlRhythmCd"), + + /** + * Zahlungsweg + * + */ + @XmlEnumValue("ZahlWegCd") + ZAHL_WEG_CD("ZahlWegCd"), + + /** + * MahnStufe + * + */ + @XmlEnumValue("MahnStufeCd") + MAHN_STUFE_CD("MahnStufeCd"), + + /** + * GrundRuecklauf + * + */ + @XmlEnumValue("RueckGrundCd") + RUECK_GRUND_CD("RueckGrundCd"), + + /** + * Sprachenschlüssel + * + */ + @XmlEnumValue("SprachCd") + SPRACH_CD("SprachCd"), + + /** + * Einheit für Verbrauch + * + */ + @XmlEnumValue("VerbrEinhCd") + VERBR_EINH_CD("VerbrEinhCd"), + + /** + * Gesellschaftsform + * + */ + @XmlEnumValue("GesFormCd") + GES_FORM_CD("GesFormCd"), + + /** + * Rahmenvertragsart + * + */ + @XmlEnumValue("RahmenvertragsartCd") + RAHMENVERTRAGSART_CD("RahmenvertragsartCd"); + private final String value; + + SchlArtCdType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static SchlArtCdType fromValue(String v) { + for (SchlArtCdType c: SchlArtCdType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SprachCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SprachCdType.java new file mode 100644 index 00000000..5c2ec8ad --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/SprachCdType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SprachCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="SprachCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <minLength value="2"/>
+ *     <maxLength value="2"/>
+ *     <enumeration value="CS"/>
+ *     <enumeration value="DE"/>
+ *     <enumeration value="EN"/>
+ *     <enumeration value="HU"/>
+ *     <enumeration value="IT"/>
+ *     <enumeration value="SK"/>
+ *     <enumeration value="SL"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "SprachCd_Type") +@XmlEnum +public enum SprachCdType { + + + /** + * Tschechisch + * + */ + CS, + + /** + * Deutsch + * + */ + DE, + + /** + * Englisch + * + */ + EN, + + /** + * Ungarisch + * + */ + HU, + + /** + * Italienisch + * + */ + IT, + + /** + * Slowakisch + * + */ + SK, + + /** + * Slowenisch + * + */ + SL; + + public String value() { + return name(); + } + + public static SprachCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/TxtArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/TxtArtCdType.java new file mode 100644 index 00000000..e6004d73 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/TxtArtCdType.java @@ -0,0 +1,110 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für TxtArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="TxtArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="ANR"/>
+ *     <enumeration value="BER"/>
+ *     <enumeration value="FRT"/>
+ *     <enumeration value="TIT"/>
+ *     <enumeration value="TIN"/>
+ *     <enumeration value="VKL"/>
+ *     <enumeration value="SRT"/>
+ *     <enumeration value="EXP"/>
+ *     <enumeration value="ONR"/>
+ *     <enumeration value="FZU"/>
+ *     <enumeration value="RIM"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "TxtArtCd_Type") +@XmlEnum +public enum TxtArtCdType { + + + /** + * Anrede + * + */ + ANR, + + /** + * Beruf + * + */ + BER, + + /** + * Freitext + * + */ + FRT, + + /** + * Titel + * + */ + TIT, + + /** + * Titel nachgestellt + * + */ + TIN, + + /** + * Vertragsspez. Klausel + * + */ + VKL, + + /** + * Beschreibung Schadenort + * + */ + SRT, + + /** + * Schaden-Expertise (Besichtigungsdaten) + * + */ + EXP, + + /** + * Oeamtc-Clubkarten-Nr + * + */ + ONR, + + /** + * Ordnungsbegriff für Zuordnung Fremdsystem + * + */ + FZU, + + /** + * Risikomerkmal + * + */ + RIM; + + public String value() { + return name(); + } + + public static TxtArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZ.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZ.java new file mode 100644 index 00000000..9dc041aa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZ.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds20}VERS_KFZ_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "VERS_KFZ") +public class VERSKFZ + extends VERSKFZType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZType.java new file mode 100644 index 00000000..862fdf8b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSKFZType.java @@ -0,0 +1,958 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERS_KFZ_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERS_KFZ_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
+ *       <attribute name="AufbauArtCd" type="{urn:omds20}AufbauArtCd_Type" />
+ *       <attribute name="Marke" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Handelsbez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="30"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="TypVarVer">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Leistung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Leistung_ElektroMot">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Stehplaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Nutzlast">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="0"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
+ *       <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
+ *       <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
+ *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
+ *       <attribute name="VerbrEinhCd" type="{urn:omds20}VerbrEinhCd_Type" />
+ *       <attribute name="Fahrgestnr" use="required" type="{urn:omds20}Fahrgestnr_Type" />
+ *       <attribute name="Motornr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="NatCode">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="26"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
+ *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
+ *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="Pol_Kennz" type="{urn:omds20}Pol_Kennz_Type" />
+ *       <attribute name="Eigengew">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="0"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="HzulGesgew">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="0"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="HGeschw">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="0"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERS_KFZ_Type") +@XmlSeeAlso({ + VERSKFZ.class +}) +public class VERSKFZType { + + @XmlAttribute(name = "FzgArtCd", required = true) + protected String fzgArtCd; + @XmlAttribute(name = "AufbauArtCd") + protected String aufbauArtCd; + @XmlAttribute(name = "Marke", required = true) + protected String marke; + @XmlAttribute(name = "Handelsbez") + protected String handelsbez; + @XmlAttribute(name = "TypVarVer") + protected String typVarVer; + @XmlAttribute(name = "Leasingkz") + protected Entsch2Type leasingkz; + @XmlAttribute(name = "Modelljahr") + @XmlSchemaType(name = "unsignedShort") + protected Integer modelljahr; + @XmlAttribute(name = "Leistung") + protected BigDecimal leistung; + @XmlAttribute(name = "Leistung_ElektroMot") + protected BigDecimal leistungElektroMot; + @XmlAttribute(name = "Plaetze") + @XmlSchemaType(name = "unsignedShort") + protected Integer plaetze; + @XmlAttribute(name = "Stehplaetze") + @XmlSchemaType(name = "unsignedShort") + protected Integer stehplaetze; + @XmlAttribute(name = "Nutzlast") + protected BigDecimal nutzlast; + @XmlAttribute(name = "Hubraum") + @XmlSchemaType(name = "unsignedShort") + protected Integer hubraum; + @XmlAttribute(name = "AntriebsArtCd", required = true) + protected String antriebsArtCd; + @XmlAttribute(name = "Katkz", required = true) + protected String katkz; + @XmlAttribute(name = "ABSKz") + protected Entsch2Type absKz; + @XmlAttribute(name = "CO2_Ausstoss") + @XmlSchemaType(name = "unsignedShort") + protected Integer co2Ausstoss; + @XmlAttribute(name = "CO2_WLTP_WMTC") + @XmlSchemaType(name = "unsignedShort") + protected Integer co2WLTPWMTC; + @XmlAttribute(name = "Kraftstoffverbr_NEFZ") + protected BigDecimal kraftstoffverbrNEFZ; + @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC") + protected BigDecimal kraftstoffverbrWLTPWMTC; + @XmlAttribute(name = "VerbrEinhCd") + protected String verbrEinhCd; + @XmlAttribute(name = "Fahrgestnr", required = true) + protected String fahrgestnr; + @XmlAttribute(name = "Motornr") + protected String motornr; + @XmlAttribute(name = "NatCode") + protected String natCode; + @XmlAttribute(name = "VerwendzweckCd") + protected String verwendzweckCd; + @XmlAttribute(name = "Erstzulassdat") + protected XMLGregorianCalendar erstzulassdat; + @XmlAttribute(name = "LandesCd") + protected String landesCd; + @XmlAttribute(name = "Pol_Kennz") + protected String polKennz; + @XmlAttribute(name = "Eigengew") + protected BigDecimal eigengew; + @XmlAttribute(name = "HzulGesgew") + protected BigDecimal hzulGesgew; + @XmlAttribute(name = "HGeschw") + protected BigDecimal hGeschw; + + /** + * Ruft den Wert der fzgArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFzgArtCd() { + return fzgArtCd; + } + + /** + * Legt den Wert der fzgArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFzgArtCd(String value) { + this.fzgArtCd = value; + } + + /** + * Ruft den Wert der aufbauArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAufbauArtCd() { + return aufbauArtCd; + } + + /** + * Legt den Wert der aufbauArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAufbauArtCd(String value) { + this.aufbauArtCd = value; + } + + /** + * Ruft den Wert der marke-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMarke() { + return marke; + } + + /** + * Legt den Wert der marke-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMarke(String value) { + this.marke = value; + } + + /** + * Ruft den Wert der handelsbez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHandelsbez() { + return handelsbez; + } + + /** + * Legt den Wert der handelsbez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHandelsbez(String value) { + this.handelsbez = value; + } + + /** + * Ruft den Wert der typVarVer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypVarVer() { + return typVarVer; + } + + /** + * Legt den Wert der typVarVer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypVarVer(String value) { + this.typVarVer = value; + } + + /** + * Ruft den Wert der leasingkz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getLeasingkz() { + return leasingkz; + } + + /** + * Legt den Wert der leasingkz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setLeasingkz(Entsch2Type value) { + this.leasingkz = value; + } + + /** + * Ruft den Wert der modelljahr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getModelljahr() { + return modelljahr; + } + + /** + * Legt den Wert der modelljahr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setModelljahr(Integer value) { + this.modelljahr = value; + } + + /** + * Ruft den Wert der leistung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLeistung() { + return leistung; + } + + /** + * Legt den Wert der leistung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLeistung(BigDecimal value) { + this.leistung = value; + } + + /** + * Ruft den Wert der leistungElektroMot-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLeistungElektroMot() { + return leistungElektroMot; + } + + /** + * Legt den Wert der leistungElektroMot-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLeistungElektroMot(BigDecimal value) { + this.leistungElektroMot = value; + } + + /** + * Ruft den Wert der plaetze-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPlaetze() { + return plaetze; + } + + /** + * Legt den Wert der plaetze-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPlaetze(Integer value) { + this.plaetze = value; + } + + /** + * Ruft den Wert der stehplaetze-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStehplaetze() { + return stehplaetze; + } + + /** + * Legt den Wert der stehplaetze-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStehplaetze(Integer value) { + this.stehplaetze = value; + } + + /** + * Ruft den Wert der nutzlast-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getNutzlast() { + return nutzlast; + } + + /** + * Legt den Wert der nutzlast-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setNutzlast(BigDecimal value) { + this.nutzlast = value; + } + + /** + * Ruft den Wert der hubraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHubraum() { + return hubraum; + } + + /** + * Legt den Wert der hubraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHubraum(Integer value) { + this.hubraum = value; + } + + /** + * Ruft den Wert der antriebsArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntriebsArtCd() { + return antriebsArtCd; + } + + /** + * Legt den Wert der antriebsArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntriebsArtCd(String value) { + this.antriebsArtCd = value; + } + + /** + * Ruft den Wert der katkz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKatkz() { + return katkz; + } + + /** + * Legt den Wert der katkz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKatkz(String value) { + this.katkz = value; + } + + /** + * Ruft den Wert der absKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getABSKz() { + return absKz; + } + + /** + * Legt den Wert der absKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setABSKz(Entsch2Type value) { + this.absKz = value; + } + + /** + * Ruft den Wert der co2Ausstoss-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCO2Ausstoss() { + return co2Ausstoss; + } + + /** + * Legt den Wert der co2Ausstoss-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCO2Ausstoss(Integer value) { + this.co2Ausstoss = value; + } + + /** + * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCO2WLTPWMTC() { + return co2WLTPWMTC; + } + + /** + * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCO2WLTPWMTC(Integer value) { + this.co2WLTPWMTC = value; + } + + /** + * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKraftstoffverbrNEFZ() { + return kraftstoffverbrNEFZ; + } + + /** + * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKraftstoffverbrNEFZ(BigDecimal value) { + this.kraftstoffverbrNEFZ = value; + } + + /** + * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKraftstoffverbrWLTPWMTC() { + return kraftstoffverbrWLTPWMTC; + } + + /** + * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { + this.kraftstoffverbrWLTPWMTC = value; + } + + /** + * Ruft den Wert der verbrEinhCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbrEinhCd() { + return verbrEinhCd; + } + + /** + * Legt den Wert der verbrEinhCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbrEinhCd(String value) { + this.verbrEinhCd = value; + } + + /** + * Ruft den Wert der fahrgestnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestnr() { + return fahrgestnr; + } + + /** + * Legt den Wert der fahrgestnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestnr(String value) { + this.fahrgestnr = value; + } + + /** + * Ruft den Wert der motornr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMotornr() { + return motornr; + } + + /** + * Legt den Wert der motornr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMotornr(String value) { + this.motornr = value; + } + + /** + * Ruft den Wert der natCode-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNatCode() { + return natCode; + } + + /** + * Legt den Wert der natCode-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNatCode(String value) { + this.natCode = value; + } + + /** + * Ruft den Wert der verwendzweckCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerwendzweckCd() { + return verwendzweckCd; + } + + /** + * Legt den Wert der verwendzweckCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerwendzweckCd(String value) { + this.verwendzweckCd = value; + } + + /** + * Ruft den Wert der erstzulassdat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getErstzulassdat() { + return erstzulassdat; + } + + /** + * Legt den Wert der erstzulassdat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setErstzulassdat(XMLGregorianCalendar value) { + this.erstzulassdat = 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 polKennz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolKennz() { + return polKennz; + } + + /** + * Legt den Wert der polKennz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolKennz(String value) { + this.polKennz = value; + } + + /** + * Ruft den Wert der eigengew-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getEigengew() { + return eigengew; + } + + /** + * Legt den Wert der eigengew-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setEigengew(BigDecimal value) { + this.eigengew = value; + } + + /** + * Ruft den Wert der hzulGesgew-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getHzulGesgew() { + return hzulGesgew; + } + + /** + * Legt den Wert der hzulGesgew-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setHzulGesgew(BigDecimal value) { + this.hzulGesgew = value; + } + + /** + * Ruft den Wert der hGeschw-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getHGeschw() { + return hGeschw; + } + + /** + * Legt den Wert der hGeschw-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setHGeschw(BigDecimal value) { + this.hGeschw = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSOBJEKTType.java new file mode 100644 index 00000000..e16797ae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSOBJEKTType.java @@ -0,0 +1,233 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERS_OBJEKT_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERS_OBJEKT_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice minOccurs="0">
+ *           <element ref="{urn:omds20}VERS_PERSON"/>
+ *           <element ref="{urn:omds20}VERS_KFZ"/>
+ *           <element ref="{urn:omds20}VERS_SACHE"/>
+ *         </choice>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Betrag"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Identifizierung"/>
+ *           <element ref="{urn:omds20}EL-Grenzwert"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="VersObjTxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERS_OBJEKT_Type", propOrder = { + "versperson", + "verskfz", + "verssache", + "elAnzahlOrELBetragOrELEinstufung" +}) +public class VERSOBJEKTType { + + @XmlElement(name = "VERS_PERSON") + protected VERSPERSONType versperson; + @XmlElement(name = "VERS_KFZ") + protected VERSKFZ verskfz; + @XmlElement(name = "VERS_SACHE") + protected VERSSACHEType verssache; + @XmlElements({ + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Betrag", type = ELBetragType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), + @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), + @XmlElement(name = "EL-Text", type = ELTextType.class) + }) + protected List elAnzahlOrELBetragOrELEinstufung; + @XmlAttribute(name = "ObjLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int objLfnr; + @XmlAttribute(name = "VersObjTxt") + protected String versObjTxt; + + /** + * Ruft den Wert der versperson-Eigenschaft ab. + * + * @return + * possible object is + * {@link VERSPERSONType } + * + */ + public VERSPERSONType getVERSPERSON() { + return versperson; + } + + /** + * Legt den Wert der versperson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VERSPERSONType } + * + */ + public void setVERSPERSON(VERSPERSONType value) { + this.versperson = value; + } + + /** + * Ruft den Wert der verskfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link VERSKFZ } + * + */ + public VERSKFZ getVERSKFZ() { + return verskfz; + } + + /** + * Legt den Wert der verskfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VERSKFZ } + * + */ + public void setVERSKFZ(VERSKFZ value) { + this.verskfz = value; + } + + /** + * Ruft den Wert der verssache-Eigenschaft ab. + * + * @return + * possible object is + * {@link VERSSACHEType } + * + */ + public VERSSACHEType getVERSSACHE() { + return verssache; + } + + /** + * Legt den Wert der verssache-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VERSSACHEType } + * + */ + public void setVERSSACHE(VERSSACHEType value) { + this.verssache = value; + } + + /** + * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahlOrELBetragOrELEinstufung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * {@link ELBetragType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELGrenzwertType } + * {@link ELIdentifizierungType } + * {@link ELTextType } + * + * + */ + public List getELAnzahlOrELBetragOrELEinstufung() { + if (elAnzahlOrELBetragOrELEinstufung == null) { + elAnzahlOrELBetragOrELEinstufung = new ArrayList(); + } + return this.elAnzahlOrELBetragOrELEinstufung; + } + + /** + * Ruft den Wert der objLfnr-Eigenschaft ab. + * + */ + public int getObjLfnr() { + return objLfnr; + } + + /** + * Legt den Wert der objLfnr-Eigenschaft fest. + * + */ + public void setObjLfnr(int value) { + this.objLfnr = value; + } + + /** + * Ruft den Wert der versObjTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersObjTxt() { + return versObjTxt; + } + + /** + * Legt den Wert der versObjTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersObjTxt(String value) { + this.versObjTxt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSPERSONType.java new file mode 100644 index 00000000..18657d41 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSPERSONType.java @@ -0,0 +1,58 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERS_PERSON_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERS_PERSON_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERS_PERSON_Type") +public class VERSPERSONType { + + @XmlAttribute(name = "Personennr", required = true) + protected String personennr; + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSSACHEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSSACHEType.java new file mode 100644 index 00000000..2475e25e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSSACHEType.java @@ -0,0 +1,802 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERS_SACHE_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERS_SACHE_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds20}EL-Objektdaten" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Flaeche" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
+ *       <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
+ *       <attribute name="VersSacheBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="60"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
+ *       <attribute name="GebaeudeBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="60"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
+ *       <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
+ *       <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
+ *       <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
+ *       <attribute name="DachungsArtCd" type="{urn:omds20}DachungsArtCd_Type" />
+ *       <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
+ *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="VersLwCd" type="{urn:omds20}VersLwCd_Type" />
+ *       <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
+ *       <attribute name="Hersteller">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Modell">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERS_SACHE_Type", propOrder = { + "elObjektdaten", + "elFlaeche", + "elText" +}) +public class VERSSACHEType { + + @XmlElement(name = "EL-Objektdaten") + protected List elObjektdaten; + @XmlElement(name = "EL-Flaeche") + protected List elFlaeche; + @XmlElement(name = "EL-Text") + protected List elText; + @XmlAttribute(name = "VersSacheCd", required = true) + protected String versSacheCd; + @XmlAttribute(name = "VersSacheBez") + protected String versSacheBez; + @XmlAttribute(name = "GebaeudeArtCd") + protected String gebaeudeArtCd; + @XmlAttribute(name = "GebaeudeBez") + protected String gebaeudeBez; + @XmlAttribute(name = "BauartCd") + protected String bauartCd; + @XmlAttribute(name = "GebaeudeHoeheCd") + protected String gebaeudeHoeheCd; + @XmlAttribute(name = "AusstattungCd") + protected String ausstattungCd; + @XmlAttribute(name = "DachungCd") + protected String dachungCd; + @XmlAttribute(name = "DachungsArtCd") + protected DachungsArtCdType dachungsArtCd; + @XmlAttribute(name = "NutzungCd") + protected String nutzungCd; + @XmlAttribute(name = "SichergKz") + protected Entsch2Type sichergKz; + @XmlAttribute(name = "VersLwCd") + protected String versLwCd; + @XmlAttribute(name = "StatusCd") + protected String statusCd; + @XmlAttribute(name = "Hersteller") + protected String hersteller; + @XmlAttribute(name = "Modell") + protected String modell; + @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; + + /** + * Gets the value of the elObjektdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elObjektdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELObjektdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELObjektdatenType } + * + * + */ + public List getELObjektdaten() { + if (elObjektdaten == null) { + elObjektdaten = new ArrayList(); + } + return this.elObjektdaten; + } + + /** + * Gets the value of the elFlaeche property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elFlaeche property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELFlaeche().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELFlaecheType } + * + * + */ + public List getELFlaeche() { + if (elFlaeche == null) { + elFlaeche = new ArrayList(); + } + return this.elFlaeche; + } + + /** + * Gets the value of the elText property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elText property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELText().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELTextType } + * + * + */ + public List getELText() { + if (elText == null) { + elText = new ArrayList(); + } + return this.elText; + } + + /** + * Ruft den Wert der versSacheCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersSacheCd() { + return versSacheCd; + } + + /** + * Legt den Wert der versSacheCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersSacheCd(String value) { + this.versSacheCd = value; + } + + /** + * Ruft den Wert der versSacheBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersSacheBez() { + return versSacheBez; + } + + /** + * Legt den Wert der versSacheBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersSacheBez(String value) { + this.versSacheBez = value; + } + + /** + * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeArtCd() { + return gebaeudeArtCd; + } + + /** + * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeArtCd(String value) { + this.gebaeudeArtCd = value; + } + + /** + * Ruft den Wert der gebaeudeBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeBez() { + return gebaeudeBez; + } + + /** + * Legt den Wert der gebaeudeBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeBez(String value) { + this.gebaeudeBez = value; + } + + /** + * Ruft den Wert der bauartCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBauartCd() { + return bauartCd; + } + + /** + * Legt den Wert der bauartCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBauartCd(String value) { + this.bauartCd = value; + } + + /** + * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeHoeheCd() { + return gebaeudeHoeheCd; + } + + /** + * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeHoeheCd(String value) { + this.gebaeudeHoeheCd = value; + } + + /** + * Ruft den Wert der ausstattungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAusstattungCd() { + return ausstattungCd; + } + + /** + * Legt den Wert der ausstattungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAusstattungCd(String value) { + this.ausstattungCd = value; + } + + /** + * Ruft den Wert der dachungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDachungCd() { + return dachungCd; + } + + /** + * Legt den Wert der dachungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDachungCd(String value) { + this.dachungCd = value; + } + + /** + * Ruft den Wert der dachungsArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link DachungsArtCdType } + * + */ + public DachungsArtCdType getDachungsArtCd() { + return dachungsArtCd; + } + + /** + * Legt den Wert der dachungsArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DachungsArtCdType } + * + */ + public void setDachungsArtCd(DachungsArtCdType value) { + this.dachungsArtCd = value; + } + + /** + * Ruft den Wert der nutzungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNutzungCd() { + return nutzungCd; + } + + /** + * Legt den Wert der nutzungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNutzungCd(String value) { + this.nutzungCd = value; + } + + /** + * Ruft den Wert der sichergKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getSichergKz() { + return sichergKz; + } + + /** + * Legt den Wert der sichergKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setSichergKz(Entsch2Type value) { + this.sichergKz = value; + } + + /** + * Ruft den Wert der versLwCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersLwCd() { + return versLwCd; + } + + /** + * Legt den Wert der versLwCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersLwCd(String value) { + this.versLwCd = value; + } + + /** + * Ruft den Wert der statusCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatusCd() { + return statusCd; + } + + /** + * Legt den Wert der statusCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatusCd(String value) { + this.statusCd = value; + } + + /** + * Ruft den Wert der hersteller-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHersteller() { + return hersteller; + } + + /** + * Legt den Wert der hersteller-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHersteller(String value) { + this.hersteller = value; + } + + /** + * Ruft den Wert der modell-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModell() { + return modell; + } + + /** + * Legt den Wert der modell-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModell(String value) { + this.modell = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSUNTERNEHMEN.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSUNTERNEHMEN.java new file mode 100644 index 00000000..c0d7383f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERSUNTERNEHMEN.java @@ -0,0 +1,192 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence maxOccurs="unbounded" minOccurs="0">
+ *         <element ref="{urn:omds20}EL-Kommunikation"/>
+ *       </sequence>
+ *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
+ *       <attribute name="VUKurzBez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="8"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VUBezeichnung">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VUNrFusion" type="{urn:omds20}VUNr" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "elKommunikation" +}) +@XmlRootElement(name = "VERS_UNTERNEHMEN") +public class VERSUNTERNEHMEN { + + @XmlElement(name = "EL-Kommunikation") + protected List elKommunikation; + @XmlAttribute(name = "VUNr", required = true) + protected String vuNr; + @XmlAttribute(name = "VUKurzBez") + protected String vuKurzBez; + @XmlAttribute(name = "VUBezeichnung") + protected String vuBezeichnung; + @XmlAttribute(name = "VUNrFusion") + protected String vuNrFusion; + + /** + * Gets the value of the elKommunikation property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elKommunikation property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELKommunikation().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELKommunikationType } + * + * + */ + public List getELKommunikation() { + if (elKommunikation == null) { + elKommunikation = new ArrayList(); + } + return this.elKommunikation; + } + + /** + * 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 vuKurzBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUKurzBez() { + return vuKurzBez; + } + + /** + * Legt den Wert der vuKurzBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUKurzBez(String value) { + this.vuKurzBez = value; + } + + /** + * Ruft den Wert der vuBezeichnung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUBezeichnung() { + return vuBezeichnung; + } + + /** + * Legt den Wert der vuBezeichnung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUBezeichnung(String value) { + this.vuBezeichnung = value; + } + + /** + * Ruft den Wert der vuNrFusion-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUNrFusion() { + return vuNrFusion; + } + + /** + * Legt den Wert der vuNrFusion-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUNrFusion(String value) { + this.vuNrFusion = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAG.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAG.java new file mode 100644 index 00000000..0c853d22 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAG.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds20}VERTRAG_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "VERTRAG") +public class VERTRAG + extends VERTRAGType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSFONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSFONDSType.java new file mode 100644 index 00000000..910940f4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSFONDSType.java @@ -0,0 +1,223 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERTRAGSFONDS_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERTRAGSFONDS_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERTRAGSFONDS_Type", propOrder = { + "portfolio", + "fonds", + "elBetrag", + "elText" +}) +public class VERTRAGSFONDSType { + + @XmlElement(name = "PORTFOLIO") + protected List portfolio; + @XmlElement(name = "FONDS") + protected List fonds; + @XmlElement(name = "EL-Betrag") + protected List elBetrag; + @XmlElement(name = "EL-Text") + protected List elText; + @XmlAttribute(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + + /** + * Gets the value of the portfolio property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the portfolio property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPORTFOLIO().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PORTFOLIO } + * + * + */ + public List getPORTFOLIO() { + if (portfolio == null) { + portfolio = new ArrayList(); + } + return this.portfolio; + } + + /** + * Gets the value of the fonds property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the fonds property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFONDS().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FONDSType } + * + * + */ + public List getFONDS() { + if (fonds == null) { + fonds = new ArrayList(); + } + return this.fonds; + } + + /** + * Gets the value of the elBetrag property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elBetrag property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELBetrag().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELBetragType } + * + * + */ + public List getELBetrag() { + if (elBetrag == null) { + elBetrag = new ArrayList(); + } + return this.elBetrag; + } + + /** + * Gets the value of the elText property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elText property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELText().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELTextType } + * + * + */ + public List getELText() { + if (elText == null) { + elText = new ArrayList(); + } + return this.elText; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSPERSONType.java new file mode 100644 index 00000000..30842cc5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGSPERSONType.java @@ -0,0 +1,106 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERTRAGSPERSON_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERTRAGSPERSON_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
+ *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERTRAGSPERSON_Type") +public class VERTRAGSPERSONType { + + @XmlAttribute(name = "VtgRolleCd", required = true) + protected VtgRolleCdType vtgRolleCd; + @XmlAttribute(name = "Lfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int lfnr; + @XmlAttribute(name = "Personennr", required = true) + protected String personennr; + + /** + * Ruft den Wert der vtgRolleCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link VtgRolleCdType } + * + */ + public VtgRolleCdType getVtgRolleCd() { + return vtgRolleCd; + } + + /** + * Legt den Wert der vtgRolleCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VtgRolleCdType } + * + */ + public void setVtgRolleCd(VtgRolleCdType value) { + this.vtgRolleCd = value; + } + + /** + * 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; + } + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGType.java new file mode 100644 index 00000000..fc7275ae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VERTRAGType.java @@ -0,0 +1,952 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VERTRAG_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VERTRAG_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Antrag"/>
+ *           <element ref="{urn:omds20}EL-Anzahl"/>
+ *           <element ref="{urn:omds20}EL-Betrag"/>
+ *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
+ *           <element ref="{urn:omds20}EL-Einstufung"/>
+ *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
+ *           <element ref="{urn:omds20}EL-Identifizierung"/>
+ *           <element ref="{urn:omds20}EL-Klausel"/>
+ *           <element ref="{urn:omds20}EL-Polizzennummer"/>
+ *           <element ref="{urn:omds20}EL-Praemienfreistellung"/>
+ *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
+ *           <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
+ *           <element ref="{urn:omds20}EL-Rahmenvertrag"/>
+ *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
+ *         </choice>
+ *         <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
+ *         <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
+ *       </sequence>
+ *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
+ *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
+ *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
+ *       <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
+ *       <attribute name="VtgProdukt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
+ *       <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
+ *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
+ *       <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
+ *       <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
+ *       <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="VtgEnd" type="{urn:omds20}Datum" />
+ *       <attribute name="StornoGiltAb" type="{urn:omds20}Datum" />
+ *       <attribute name="Hptfaelligkeit">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
+ *             <minInclusive value="--01-01"/>
+ *             <maxInclusive value="--12-31"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
+ *       <attribute name="AendGrundbez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="60"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PraemieNtoVtg" use="required">
+ *         <simpleType>
+ *           <restriction base="{urn:omds20}decimal">
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="BLZ">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="9"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Ktonr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="15"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="BIC">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="11"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="IBAN">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="34"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VERTRAG_Type", propOrder = { + "elAntragOrELAnzahlOrELBetrag", + "vertragsperson", + "versobjekt", + "sparte" +}) +@XmlSeeAlso({ + VERTRAG.class +}) +public class VERTRAGType { + + @XmlElements({ + @XmlElement(name = "EL-Antrag", type = ELAntragType.class), + @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), + @XmlElement(name = "EL-Betrag", type = ELBetragType.class), + @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), + @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), + @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), + @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), + @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), + @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), + @XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class), + @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), + @XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class), + @XmlElement(name = "EL-Rahmenvertrag", type = ELRahmenvertragType.class), + @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), + @XmlElement(name = "EL-Text", type = ELTextType.class), + @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class) + }) + protected List elAntragOrELAnzahlOrELBetrag; + @XmlElement(name = "VERTRAGSPERSON", required = true) + protected List vertragsperson; + @XmlElement(name = "VERS_OBJEKT") + protected List versobjekt; + @XmlElement(name = "SPARTE", required = true) + protected List sparte; + @XmlAttribute(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlAttribute(name = "VertragsID") + protected String vertragsID; + @XmlAttribute(name = "Vermnr", required = true) + protected String vermnr; + @XmlAttribute(name = "VtgProdCd", required = true) + protected String vtgProdCd; + @XmlAttribute(name = "VtgProdukt") + protected String vtgProdukt; + @XmlAttribute(name = "VtgSparteCd") + protected String vtgSparteCd; + @XmlAttribute(name = "ZahlRhythmCd", required = true) + protected String zahlRhythmCd; + @XmlAttribute(name = "ZahlWegCd", required = true) + protected String zahlWegCd; + @XmlAttribute(name = "VtgStatusCd", required = true) + protected String vtgStatusCd; + @XmlAttribute(name = "VtgStatusBeg") + protected XMLGregorianCalendar vtgStatusBeg; + @XmlAttribute(name = "VtgBeg", required = true) + protected XMLGregorianCalendar vtgBeg; + @XmlAttribute(name = "VtgEnd") + protected XMLGregorianCalendar vtgEnd; + @XmlAttribute(name = "StornoGiltAb") + protected XMLGregorianCalendar stornoGiltAb; + @XmlAttribute(name = "Hptfaelligkeit") + protected XMLGregorianCalendar hptfaelligkeit; + @XmlAttribute(name = "DurchfDat", required = true) + protected XMLGregorianCalendar durchfDat; + @XmlAttribute(name = "GueltigBeg", required = true) + protected XMLGregorianCalendar gueltigBeg; + @XmlAttribute(name = "AendGrundCd", required = true) + protected String aendGrundCd; + @XmlAttribute(name = "AendGrundbez") + protected String aendGrundbez; + @XmlAttribute(name = "PraemieNtoVtg", required = true) + protected BigDecimal praemieNtoVtg; + @XmlAttribute(name = "PraemieBtoVtg", required = true) + protected BigDecimal praemieBtoVtg; + @XmlAttribute(name = "WaehrungsCd", required = true) + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "BLZ") + protected String blz; + @XmlAttribute(name = "Ktonr") + protected String ktonr; + @XmlAttribute(name = "BIC") + protected String bic; + @XmlAttribute(name = "IBAN") + protected String iban; + + /** + * Gets the value of the elAntragOrELAnzahlOrELBetrag property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAntragOrELAnzahlOrELBetrag property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAntragOrELAnzahlOrELBetrag().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAntragType } + * {@link ELAnzahlType } + * {@link ELBetragType } + * {@link ELBezugsberechtigungType } + * {@link ELEinstufungType } + * {@link ELEntscheidungsfrageType } + * {@link ELIdentifizierungType } + * {@link ELKlauselType } + * {@link ELPolizzennummerType } + * {@link ELPraemienfreistellungType } + * {@link ELPraemienkorrekturType } + * {@link ELRahmenvereinbarungType } + * {@link ELRahmenvertragType } + * {@link ELSelbstbehalt } + * {@link ELTextType } + * {@link ELVersicherungssummeType } + * + * + */ + public List getELAntragOrELAnzahlOrELBetrag() { + if (elAntragOrELAnzahlOrELBetrag == null) { + elAntragOrELAnzahlOrELBetrag = new ArrayList(); + } + return this.elAntragOrELAnzahlOrELBetrag; + } + + /** + * Gets the value of the vertragsperson property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertragsperson property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVERTRAGSPERSON().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VERTRAGSPERSONType } + * + * + */ + public List getVERTRAGSPERSON() { + if (vertragsperson == null) { + vertragsperson = new ArrayList(); + } + return this.vertragsperson; + } + + /** + * Gets the value of the versobjekt property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versobjekt property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVERSOBJEKT().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VERSOBJEKTType } + * + * + */ + public List getVERSOBJEKT() { + if (versobjekt == null) { + versobjekt = new ArrayList(); + } + return this.versobjekt; + } + + /** + * Gets the value of the sparte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the sparte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSPARTE().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SPARTEType } + * + * + */ + public List getSPARTE() { + if (sparte == null) { + sparte = new ArrayList(); + } + return this.sparte; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Ruft den Wert der vtgProdCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgProdCd() { + return vtgProdCd; + } + + /** + * Legt den Wert der vtgProdCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgProdCd(String value) { + this.vtgProdCd = value; + } + + /** + * Ruft den Wert der vtgProdukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgProdukt() { + return vtgProdukt; + } + + /** + * Legt den Wert der vtgProdukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgProdukt(String value) { + this.vtgProdukt = value; + } + + /** + * Ruft den Wert der vtgSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgSparteCd() { + return vtgSparteCd; + } + + /** + * Legt den Wert der vtgSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgSparteCd(String value) { + this.vtgSparteCd = value; + } + + /** + * Ruft den Wert der zahlRhythmCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlRhythmCd() { + return zahlRhythmCd; + } + + /** + * Legt den Wert der zahlRhythmCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlRhythmCd(String value) { + this.zahlRhythmCd = value; + } + + /** + * Ruft den Wert der zahlWegCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlWegCd() { + return zahlWegCd; + } + + /** + * Legt den Wert der zahlWegCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlWegCd(String value) { + this.zahlWegCd = value; + } + + /** + * Ruft den Wert der vtgStatusCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgStatusCd() { + return vtgStatusCd; + } + + /** + * Legt den Wert der vtgStatusCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgStatusCd(String value) { + this.vtgStatusCd = value; + } + + /** + * Ruft den Wert der vtgStatusBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVtgStatusBeg() { + return vtgStatusBeg; + } + + /** + * Legt den Wert der vtgStatusBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVtgStatusBeg(XMLGregorianCalendar value) { + this.vtgStatusBeg = value; + } + + /** + * 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 vtgEnd-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVtgEnd() { + return vtgEnd; + } + + /** + * Legt den Wert der vtgEnd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVtgEnd(XMLGregorianCalendar value) { + this.vtgEnd = value; + } + + /** + * Ruft den Wert der stornoGiltAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStornoGiltAb() { + return stornoGiltAb; + } + + /** + * Legt den Wert der stornoGiltAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStornoGiltAb(XMLGregorianCalendar value) { + this.stornoGiltAb = value; + } + + /** + * Ruft den Wert der hptfaelligkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getHptfaelligkeit() { + return hptfaelligkeit; + } + + /** + * Legt den Wert der hptfaelligkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setHptfaelligkeit(XMLGregorianCalendar value) { + this.hptfaelligkeit = value; + } + + /** + * Ruft den Wert der durchfDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDurchfDat() { + return durchfDat; + } + + /** + * Legt den Wert der durchfDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDurchfDat(XMLGregorianCalendar value) { + this.durchfDat = value; + } + + /** + * Ruft den Wert der gueltigBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigBeg() { + return gueltigBeg; + } + + /** + * Legt den Wert der gueltigBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigBeg(XMLGregorianCalendar value) { + this.gueltigBeg = value; + } + + /** + * 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; + } + + /** + * Ruft den Wert der praemieNtoVtg-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieNtoVtg() { + return praemieNtoVtg; + } + + /** + * Legt den Wert der praemieNtoVtg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieNtoVtg(BigDecimal value) { + this.praemieNtoVtg = value; + } + + /** + * Ruft den Wert der praemieBtoVtg-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieBtoVtg() { + return praemieBtoVtg; + } + + /** + * Legt den Wert der praemieBtoVtg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieBtoVtg(BigDecimal value) { + this.praemieBtoVtg = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der blz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBLZ() { + return blz; + } + + /** + * Legt den Wert der blz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBLZ(String value) { + this.blz = value; + } + + /** + * Ruft den Wert der ktonr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKtonr() { + return ktonr; + } + + /** + * Legt den Wert der ktonr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKtonr(String value) { + this.ktonr = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VSArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VSArtCdType.java new file mode 100644 index 00000000..0e3dbb92 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VSArtCdType.java @@ -0,0 +1,110 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VSArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="VSArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="ALS"/>
+ *     <enumeration value="BDS"/>
+ *     <enumeration value="BVS"/>
+ *     <enumeration value="ELS"/>
+ *     <enumeration value="EVS"/>
+ *     <enumeration value="HHS"/>
+ *     <enumeration value="HLS"/>
+ *     <enumeration value="OVS"/>
+ *     <enumeration value="PFR"/>
+ *     <enumeration value="PPF"/>
+ *     <enumeration value="PVS"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "VSArtCd_Type") +@XmlEnum +public enum VSArtCdType { + + + /** + * Ablebensumme + * + */ + ALS, + + /** + * Bausparen Darlehenssumme + * + */ + BDS, + + /** + * Bausparen Vertragssumme + * + */ + BVS, + + /** + * Erlebensumme + * + */ + ELS, + + /** + * EinzelVS + * + */ + EVS, + + /** + * Höchsthaftungssumme + * + */ + HHS, + + /** + * Höchstleistungssumme + * + */ + HLS, + + /** + * ohne Versicherungssumme + * + */ + OVS, + + /** + * prämienfrei + * + */ + PFR, + + /** + * prämienpflichtig + * + */ + PPF, + + /** + * PauschalVS + * + */ + PVS; + + public String value() { + return name(); + } + + public static VSArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VtgRolleCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VtgRolleCdType.java new file mode 100644 index 00000000..e2e2aaf1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/VtgRolleCdType.java @@ -0,0 +1,117 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VtgRolleCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="VtgRolleCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="AP"/>
+ *     <enumeration value="AZ"/>
+ *     <enumeration value="BG"/>
+ *     <enumeration value="BM"/>
+ *     <enumeration value="BO"/>
+ *     <enumeration value="IA"/>
+ *     <enumeration value="FI"/>
+ *     <enumeration value="GV"/>
+ *     <enumeration value="LE"/>
+ *     <enumeration value="KA"/>
+ *     <enumeration value="VN"/>
+ *     <enumeration value="ZB"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "VtgRolleCd_Type") +@XmlEnum +public enum VtgRolleCdType { + + + /** + * Ansprechperson + * + */ + AP, + + /** + * abweichender Zulassungsbesitzer + * + */ + AZ, + + /** + * Bausparer gesetzlicher Vertreter + * + */ + BG, + + /** + * Bausparer mit Prämie + * + */ + BM, + + /** + * Bausparer ohne Prämie + * + */ + BO, + + /** + * Inkassoadresse + * + */ + IA, + + /** + * Firmeninhaber + * + */ + FI, + + /** + * Gesetzlicher Vertreter + * + */ + GV, + + /** + * Lenker + * + */ + LE, + + /** + * Korrespondenz/Zustelladresse + * + */ + KA, + + /** + * Versicherungsnehmer + * + */ + VN, + + /** + * Zustellbevollmächtigter + * + */ + ZB; + + public String value() { + return name(); + } + + public static VtgRolleCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/WaehrungsCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/WaehrungsCdType.java new file mode 100644 index 00000000..eacc295e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/WaehrungsCdType.java @@ -0,0 +1,285 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für WaehrungsCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="WaehrungsCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="AUD"/>
+ *     <enumeration value="BGL"/>
+ *     <enumeration value="CAD"/>
+ *     <enumeration value="CHF"/>
+ *     <enumeration value="CYP"/>
+ *     <enumeration value="CZR"/>
+ *     <enumeration value="DKK"/>
+ *     <enumeration value="EUR"/>
+ *     <enumeration value="GBP"/>
+ *     <enumeration value="GIP"/>
+ *     <enumeration value="HKD"/>
+ *     <enumeration value="HRK"/>
+ *     <enumeration value="HUF"/>
+ *     <enumeration value="ILS"/>
+ *     <enumeration value="INR"/>
+ *     <enumeration value="ISK"/>
+ *     <enumeration value="JOD"/>
+ *     <enumeration value="JPY"/>
+ *     <enumeration value="MLT"/>
+ *     <enumeration value="MXP"/>
+ *     <enumeration value="NOK"/>
+ *     <enumeration value="NZD"/>
+ *     <enumeration value="PLZ"/>
+ *     <enumeration value="ROL"/>
+ *     <enumeration value="SEK"/>
+ *     <enumeration value="SGD"/>
+ *     <enumeration value="SIT"/>
+ *     <enumeration value="SKK"/>
+ *     <enumeration value="SUR"/>
+ *     <enumeration value="SZR"/>
+ *     <enumeration value="TND"/>
+ *     <enumeration value="TRL"/>
+ *     <enumeration value="TWD"/>
+ *     <enumeration value="USD"/>
+ *     <enumeration value="YUN"/>
+ *     <enumeration value="ZAR"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "WaehrungsCd_Type") +@XmlEnum +public enum WaehrungsCdType { + + + /** + * Dollar Australien + * + */ + AUD, + + /** + * Lewa Bulgarien + * + */ + BGL, + + /** + * Dollar Kanadien + * + */ + CAD, + + /** + * Franken Schweiz + * + */ + CHF, + + /** + * Pfund Zypern + * + */ + CYP, + + /** + * Krone Tschechien + * + */ + CZR, + + /** + * Krone Dänemark + * + */ + DKK, + + /** + * EURO + * + */ + EUR, + + /** + * Pfund Großbritannien + * + */ + GBP, + + /** + * Pfund Gibraltar + * + */ + GIP, + + /** + * Dollar Hongkong + * + */ + HKD, + + /** + * Kuna Kroatia + * + */ + HRK, + + /** + * Forint Ungarn + * + */ + HUF, + + /** + * Shekel Israel + * + */ + ILS, + + /** + * Rupie Indien + * + */ + INR, + + /** + * Krone Island + * + */ + ISK, + + /** + * Dinar Jordanien + * + */ + JOD, + + /** + * Yen Japan + * + */ + JPY, + + /** + * Pfund Malta + * + */ + MLT, + + /** + * Peso Mexiko + * + */ + MXP, + + /** + * Krone Norwegen + * + */ + NOK, + + /** + * Dollar Neuseeland + * + */ + NZD, + + /** + * Zloty Polen + * + */ + PLZ, + + /** + * Lau Rumänien + * + */ + ROL, + + /** + * Krone Schweden + * + */ + SEK, + + /** + * Dollar Singapur + * + */ + SGD, + + /** + * Tolar Slowenien + * + */ + SIT, + + /** + * Krone Slowakei + * + */ + SKK, + + /** + * Rubel Rußland + * + */ + SUR, + + /** + * Sonderziehungsrecht + * + */ + SZR, + + /** + * Dinar Tunesien + * + */ + TND, + + /** + * Lira Türkei + * + */ + TRL, + + /** + * Dollar Taiwan + * + */ + TWD, + + /** + * US Dollar $ + * + */ + USD, + + /** + * Dinar Jugoslawien-Rest + * + */ + YUN, + + /** + * Rand Südafrika + * + */ + ZAR; + + public String value() { + return name(); + } + + public static WaehrungsCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ZAHLUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ZAHLUNGType.java new file mode 100644 index 00000000..302de1bd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/ZAHLUNGType.java @@ -0,0 +1,364 @@ + +package at.vvo.omds.types.omds2Types.v2_16; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für ZAHLUNG_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZAHLUNG_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice maxOccurs="unbounded" minOccurs="0">
+ *           <element ref="{urn:omds20}EL-Text"/>
+ *         </choice>
+ *       </sequence>
+ *       <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
+ *       <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
+ *       <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
+ *       <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
+ *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
+ *       <attribute name="BLZ">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="9"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Kontonr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="15"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="BIC">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="11"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="IBAN">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="34"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZAHLUNG_Type", propOrder = { + "elText" +}) +public class ZAHLUNGType { + + @XmlElement(name = "EL-Text") + protected List elText; + @XmlAttribute(name = "ZahlungsLfnr", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int zahlungsLfnr; + @XmlAttribute(name = "WaehrungsCd", required = true) + protected WaehrungsCdType waehrungsCd; + @XmlAttribute(name = "ZahlBetrag", required = true) + protected BigDecimal zahlBetrag; + @XmlAttribute(name = "ZahlDat", required = true) + protected XMLGregorianCalendar zahlDat; + @XmlAttribute(name = "ZahlGrundCd", required = true) + protected String zahlGrundCd; + @XmlAttribute(name = "ZahlWegCd", required = true) + protected String zahlWegCd; + @XmlAttribute(name = "BLZ") + protected String blz; + @XmlAttribute(name = "Kontonr") + protected String kontonr; + @XmlAttribute(name = "BIC") + protected String bic; + @XmlAttribute(name = "IBAN") + protected String iban; + + /** + * Gets the value of the elText property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elText property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELText().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELTextType } + * + * + */ + public List getELText() { + if (elText == null) { + elText = new ArrayList(); + } + return this.elText; + } + + /** + * Ruft den Wert der zahlungsLfnr-Eigenschaft ab. + * + */ + public int getZahlungsLfnr() { + return zahlungsLfnr; + } + + /** + * Legt den Wert der zahlungsLfnr-Eigenschaft fest. + * + */ + public void setZahlungsLfnr(int value) { + this.zahlungsLfnr = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der zahlBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getZahlBetrag() { + return zahlBetrag; + } + + /** + * Legt den Wert der zahlBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setZahlBetrag(BigDecimal value) { + this.zahlBetrag = value; + } + + /** + * Ruft den Wert der zahlDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZahlDat() { + return zahlDat; + } + + /** + * Legt den Wert der zahlDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZahlDat(XMLGregorianCalendar value) { + this.zahlDat = value; + } + + /** + * Ruft den Wert der zahlGrundCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlGrundCd() { + return zahlGrundCd; + } + + /** + * Legt den Wert der zahlGrundCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlGrundCd(String value) { + this.zahlGrundCd = value; + } + + /** + * Ruft den Wert der zahlWegCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlWegCd() { + return zahlWegCd; + } + + /** + * Legt den Wert der zahlWegCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlWegCd(String value) { + this.zahlWegCd = value; + } + + /** + * Ruft den Wert der blz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBLZ() { + return blz; + } + + /** + * Legt den Wert der blz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBLZ(String value) { + this.blz = value; + } + + /** + * Ruft den Wert der kontonr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKontonr() { + return kontonr; + } + + /** + * Legt den Wert der kontonr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKontonr(String value) { + this.kontonr = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/package-info.java new file mode 100644 index 00000000..5238fe09 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_16/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds2Types.v2_16; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ADRESSEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ADRESSEType.java deleted file mode 100644 index 33644643..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ADRESSEType.java +++ /dev/null @@ -1,216 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ADRESSE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ADRESSE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ADRESSE_Type") -public class ADRESSEType { - - @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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/BBArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/BBArtCdType.java deleted file mode 100644 index f5f33e88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/BBArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BBArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="BBArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ABL"/>
- *     <enumeration value="ERL"/>
- *     <enumeration value="SLF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BBArtCd_Type") -@XmlEnum -public enum BBArtCdType { - - - /** - * Ablebensfall - * - */ - ABL, - - /** - * Erlebensfall - * - */ - ERL, - - /** - * sonstiger Leistungsfall - * - */ - SLF; - - public String value() { - return name(); - } - - public static BBArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAntragType.java deleted file mode 100644 index 3cf7ed16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAntragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Antrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Antrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Antrag_Type") -public class ELAntragType { - - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - - /** - * Ruft den Wert der nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAnzahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAnzahlType.java deleted file mode 100644 index 55f8e1ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELAnzahlType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Anzahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Anzahl_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Anzahl_Type") -public class ELAnzahlType { - - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBetragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBetragType.java deleted file mode 100644 index 153027cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBetragType.java +++ /dev/null @@ -1,174 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Betrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Betrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetragArtCd" type="{urn:omds20}BetragArtCd_Type" />
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Bezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Betrag_Type") -public class ELBetragType { - - @XmlAttribute(name = "BetragArtCd") - protected String betragArtCd; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * Ruft den Wert der betragArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetragArtCd() { - return betragArtCd; - } - - /** - * Legt den Wert der betragArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetragArtCd(String value) { - this.betragArtCd = 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 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 waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBezugsberechtigungType.java deleted file mode 100644 index fe08968f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELBezugsberechtigungType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Bezugsberechtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
- *       <attribute name="BBTxt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Bezugsberechtigung_Type") -public class ELBezugsberechtigungType { - - @XmlAttribute(name = "BBArtCd", required = true) - protected BBArtCdType bbArtCd; - @XmlAttribute(name = "BBTxt", required = true) - protected String bbTxt; - - /** - * Ruft den Wert der bbArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link BBArtCdType } - * - */ - public BBArtCdType getBBArtCd() { - return bbArtCd; - } - - /** - * Legt den Wert der bbArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BBArtCdType } - * - */ - public void setBBArtCd(BBArtCdType value) { - this.bbArtCd = value; - } - - /** - * Ruft den Wert der bbTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBBTxt() { - return bbTxt; - } - - /** - * Legt den Wert der bbTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBBTxt(String value) { - this.bbTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEinstufungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEinstufungType.java deleted file mode 100644 index 21b7613a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEinstufungType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Einstufung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Einstufung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
- *       <attribute name="EstWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="5"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Einstufung_Type") -public class ELEinstufungType { - - @XmlAttribute(name = "EstArtCd", required = true) - protected EstArtCdType estArtCd; - @XmlAttribute(name = "EstWert", required = true) - protected String estWert; - - /** - * Ruft den Wert der estArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link EstArtCdType } - * - */ - public EstArtCdType getEstArtCd() { - return estArtCd; - } - - /** - * Legt den Wert der estArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link EstArtCdType } - * - */ - public void setEstArtCd(EstArtCdType value) { - this.estArtCd = value; - } - - /** - * Ruft den Wert der estWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstWert() { - return estWert; - } - - /** - * Legt den Wert der estWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstWert(String value) { - this.estWert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEntscheidungsfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEntscheidungsfrageType.java deleted file mode 100644 index da54d577..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELEntscheidungsfrageType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Entscheidungsfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Entscheidungsfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
- *       <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Entscheidungsfrage_Type") -public class ELEntscheidungsfrageType { - - @XmlAttribute(name = "EFrageCd", required = true) - protected String eFrageCd; - @XmlAttribute(name = "EFrageAntw", required = true) - protected String eFrageAntw; - - /** - * Ruft den Wert der eFrageCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageCd() { - return eFrageCd; - } - - /** - * Legt den Wert der eFrageCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageCd(String value) { - this.eFrageCd = value; - } - - /** - * Ruft den Wert der eFrageAntw-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEFrageAntw() { - return eFrageAntw; - } - - /** - * Legt den Wert der eFrageAntw-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEFrageAntw(String value) { - this.eFrageAntw = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGewinnbeteiligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGewinnbeteiligungType.java deleted file mode 100644 index 81b73013..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGewinnbeteiligungType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Gewinnbeteiligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Gewinnbeteiligung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Gewinnbeteiligung_Type") -public class ELGewinnbeteiligungType { - - @XmlAttribute(name = "Datum", required = true) - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert", required = true) - protected BigDecimal wert; - - /** - * 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGrenzwertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGrenzwertType.java deleted file mode 100644 index a6cbb53d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELGrenzwertType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Grenzwert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Grenzwert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
- *       <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="GrwTyp">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Grenzwert_Type") -public class ELGrenzwertType { - - @XmlAttribute(name = "GrwArtCd", required = true) - protected GrwArtCdType grwArtCd; - @XmlAttribute(name = "GrWert", required = true) - protected BigDecimal grWert; - @XmlAttribute(name = "GrwTyp") - protected String grwTyp; - - /** - * Ruft den Wert der grwArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link GrwArtCdType } - * - */ - public GrwArtCdType getGrwArtCd() { - return grwArtCd; - } - - /** - * Legt den Wert der grwArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GrwArtCdType } - * - */ - public void setGrwArtCd(GrwArtCdType value) { - this.grwArtCd = value; - } - - /** - * Ruft den Wert der grWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGrWert() { - return grWert; - } - - /** - * Legt den Wert der grWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGrWert(BigDecimal value) { - this.grWert = value; - } - - /** - * Ruft den Wert der grwTyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrwTyp() { - return grwTyp; - } - - /** - * Legt den Wert der grwTyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrwTyp(String value) { - this.grwTyp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIdentifizierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIdentifizierungType.java deleted file mode 100644 index f553e54a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIdentifizierungType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Identifizierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Identifizierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
- *       <attribute name="IdfSchluessel" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IdfDatum" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Identifizierung_Type") -public class ELIdentifizierungType { - - @XmlAttribute(name = "IdfArtCd", required = true) - protected IdfArtCdType idfArtCd; - @XmlAttribute(name = "IdfSchluessel", required = true) - protected String idfSchluessel; - @XmlAttribute(name = "IdfDatum") - protected XMLGregorianCalendar idfDatum; - - /** - * Ruft den Wert der idfArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link IdfArtCdType } - * - */ - public IdfArtCdType getIdfArtCd() { - return idfArtCd; - } - - /** - * Legt den Wert der idfArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link IdfArtCdType } - * - */ - public void setIdfArtCd(IdfArtCdType value) { - this.idfArtCd = value; - } - - /** - * Ruft den Wert der idfSchluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdfSchluessel() { - return idfSchluessel; - } - - /** - * Legt den Wert der idfSchluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdfSchluessel(String value) { - this.idfSchluessel = value; - } - - /** - * Ruft den Wert der idfDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getIdfDatum() { - return idfDatum; - } - - /** - * Legt den Wert der idfDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setIdfDatum(XMLGregorianCalendar value) { - this.idfDatum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIndexType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIndexType.java deleted file mode 100644 index 63cc9503..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELIndexType.java +++ /dev/null @@ -1,116 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Index_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Index_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
- *       <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
- *       <attribute name="Wert" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Index_Type") -public class ELIndexType { - - @XmlAttribute(name = "IndexArtCd", required = true) - protected String indexArtCd; - @XmlAttribute(name = "Datum") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - - /** - * Ruft den Wert der indexArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndexArtCd() { - return indexArtCd; - } - - /** - * Legt den Wert der indexArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndexArtCd(String value) { - this.indexArtCd = 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 wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKlauselType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKlauselType.java deleted file mode 100644 index 0a254bef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKlauselType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Klausel_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Klausel_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Klausel_Type") -public class ELKlauselType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKommunikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKommunikationType.java deleted file mode 100644 index 93592a68..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELKommunikationType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Kommunikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Kommunikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
- *       <attribute name="Kennung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Kommunikation_Type") -public class ELKommunikationType { - - @XmlAttribute(name = "KomArtCd", required = true) - protected String komArtCd; - @XmlAttribute(name = "Kennung", required = true) - protected String kennung; - - /** - * Ruft den Wert der komArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKomArtCd() { - return komArtCd; - } - - /** - * Legt den Wert der komArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKomArtCd(String value) { - this.komArtCd = value; - } - - /** - * Ruft den Wert der kennung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennung() { - return kennung; - } - - /** - * Legt den Wert der kennung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennung(String value) { - this.kennung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELLegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELLegitimationType.java deleted file mode 100644 index 0af570d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELLegitimationType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Legitimation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
- *       <attribute name="Ausstellungsbehoerde">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Datum" type="{urn:omds20}Datum" />
- *       <attribute name="Nummer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Legitimation_Type") -public class ELLegitimationType { - - @XmlAttribute(name = "LegArtCd", required = true) - protected String legArtCd; - @XmlAttribute(name = "Ausstellungsbehoerde") - protected String ausstellungsbehoerde; - @XmlAttribute(name = "Datum") - protected XMLGregorianCalendar datum; - @XmlAttribute(name = "Nummer", required = true) - protected String nummer; - - /** - * Ruft den Wert der legArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegArtCd() { - return legArtCd; - } - - /** - * Legt den Wert der legArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegArtCd(String value) { - this.legArtCd = value; - } - - /** - * Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstellungsbehoerde() { - return ausstellungsbehoerde; - } - - /** - * Legt den Wert der ausstellungsbehoerde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstellungsbehoerde(String value) { - this.ausstellungsbehoerde = 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 nummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Legt den Wert der nummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELObjektdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELObjektdatenType.java deleted file mode 100644 index 96c2497b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELObjektdatenType.java +++ /dev/null @@ -1,124 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Objektdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Objektdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
- *       <attribute name="Wert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ObjektdatenInfo">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Objektdaten_Type") -public class ELObjektdatenType { - - @XmlAttribute(name = "ObjektdatenCd", required = true) - protected String objektdatenCd; - @XmlAttribute(name = "Wert", required = true) - protected String wert; - @XmlAttribute(name = "ObjektdatenInfo") - protected String objektdatenInfo; - - /** - * Ruft den Wert der objektdatenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenCd() { - return objektdatenCd; - } - - /** - * Legt den Wert der objektdatenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenCd(String value) { - this.objektdatenCd = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWert(String value) { - this.wert = value; - } - - /** - * Ruft den Wert der objektdatenInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjektdatenInfo() { - return objektdatenInfo; - } - - /** - * Legt den Wert der objektdatenInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjektdatenInfo(String value) { - this.objektdatenInfo = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPolizzennummerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPolizzennummerType.java deleted file mode 100644 index 147b683c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPolizzennummerType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Polizzennummer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Polizzennummer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
- *       <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Polizzennummer_Type") -public class ELPolizzennummerType { - - @XmlAttribute(name = "PolArtCd", required = true) - protected PolArtCdType polArtCd; - @XmlAttribute(name = "PolNr", required = true) - protected String polNr; - - /** - * Ruft den Wert der polArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolArtCdType } - * - */ - public PolArtCdType getPolArtCd() { - return polArtCd; - } - - /** - * Legt den Wert der polArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolArtCdType } - * - */ - public void setPolArtCd(PolArtCdType value) { - this.polArtCd = value; - } - - /** - * Ruft den Wert der polNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNr() { - return polNr; - } - - /** - * Legt den Wert der polNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNr(String value) { - this.polNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienfreistellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienfreistellungType.java deleted file mode 100644 index 778fcf90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienfreistellungType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Praemienfreistellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienfreistellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
- *       <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="PfrEnde" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienfreistellung_Type") -public class ELPraemienfreistellungType { - - @XmlAttribute(name = "PfrArtCd", required = true) - protected String pfrArtCd; - @XmlAttribute(name = "PfrBeg", required = true) - protected XMLGregorianCalendar pfrBeg; - @XmlAttribute(name = "PfrEnde") - protected XMLGregorianCalendar pfrEnde; - - /** - * Ruft den Wert der pfrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPfrArtCd() { - return pfrArtCd; - } - - /** - * Legt den Wert der pfrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPfrArtCd(String value) { - this.pfrArtCd = value; - } - - /** - * Ruft den Wert der pfrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrBeg() { - return pfrBeg; - } - - /** - * Legt den Wert der pfrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrBeg(XMLGregorianCalendar value) { - this.pfrBeg = value; - } - - /** - * Ruft den Wert der pfrEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPfrEnde() { - return pfrEnde; - } - - /** - * Legt den Wert der pfrEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPfrEnde(XMLGregorianCalendar value) { - this.pfrEnde = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienkorrekturType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienkorrekturType.java deleted file mode 100644 index d5e7c644..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELPraemienkorrekturType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Praemienkorrektur_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Praemienkorrektur_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
- *       <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
- *       <attribute name="PraemKorrText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Praemienkorrektur_Type") -public class ELPraemienkorrekturType { - - @XmlAttribute(name = "PraemKorrArtCd", required = true) - protected String praemKorrArtCd; - @XmlAttribute(name = "PraemKorrWert") - protected BigDecimal praemKorrWert; - @XmlAttribute(name = "PraemKorrProz") - protected BigDecimal praemKorrProz; - @XmlAttribute(name = "PraemKorrText") - protected String praemKorrText; - - /** - * Ruft den Wert der praemKorrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrArtCd() { - return praemKorrArtCd; - } - - /** - * Legt den Wert der praemKorrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrArtCd(String value) { - this.praemKorrArtCd = value; - } - - /** - * Ruft den Wert der praemKorrWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrWert() { - return praemKorrWert; - } - - /** - * Legt den Wert der praemKorrWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrWert(BigDecimal value) { - this.praemKorrWert = value; - } - - /** - * Ruft den Wert der praemKorrProz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemKorrProz() { - return praemKorrProz; - } - - /** - * Legt den Wert der praemKorrProz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemKorrProz(BigDecimal value) { - this.praemKorrProz = value; - } - - /** - * Ruft den Wert der praemKorrText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPraemKorrText() { - return praemKorrText; - } - - /** - * Legt den Wert der praemKorrText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPraemKorrText(String value) { - this.praemKorrText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRahmenvereinbarungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRahmenvereinbarungType.java deleted file mode 100644 index d461fa63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRahmenvereinbarungType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Rahmenvereinbarung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rahmenvereinbarung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RahmenVebnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rahmenvereinbarung_Type") -public class ELRahmenvereinbarungType { - - @XmlAttribute(name = "RahmenVebnr", required = true) - protected String rahmenVebnr; - - /** - * Ruft den Wert der rahmenVebnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRahmenVebnr() { - return rahmenVebnr; - } - - /** - * Legt den Wert der rahmenVebnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRahmenVebnr(String value) { - this.rahmenVebnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRenteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRenteType.java deleted file mode 100644 index 3790e192..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELRenteType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Rente_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Rente_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
- *       <attribute name="RntBeg" type="{urn:omds20}Datum" />
- *       <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Rente_Type") -public class ELRenteType { - - @XmlAttribute(name = "RntRhythmCd", required = true) - protected String rntRhythmCd; - @XmlAttribute(name = "RntBeg") - protected XMLGregorianCalendar rntBeg; - @XmlAttribute(name = "RntBetrag", required = true) - protected BigDecimal rntBetrag; - - /** - * Ruft den Wert der rntRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRntRhythmCd() { - return rntRhythmCd; - } - - /** - * Legt den Wert der rntRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRntRhythmCd(String value) { - this.rntRhythmCd = value; - } - - /** - * Ruft den Wert der rntBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRntBeg() { - return rntBeg; - } - - /** - * Legt den Wert der rntBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRntBeg(XMLGregorianCalendar value) { - this.rntBeg = value; - } - - /** - * Ruft den Wert der rntBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRntBetrag() { - return rntBetrag; - } - - /** - * Legt den Wert der rntBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRntBetrag(BigDecimal value) { - this.rntBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehalt.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehalt.java deleted file mode 100644 index 11bbe10f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehalt.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Selbstbehalt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "EL-Selbstbehalt") -public class ELSelbstbehalt - extends ELSelbstbehaltType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehaltType.java deleted file mode 100644 index 1f75e2aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSelbstbehaltType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
- *       <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
- *       <attribute name="SbhProzent" type="{urn:omds20}decimal" />
- *       <attribute name="SbhText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Selbstbehalt_Type") -@XmlSeeAlso({ - ELSelbstbehalt.class -}) -public class ELSelbstbehaltType { - - @XmlAttribute(name = "SbhArtCd", required = true) - protected SbhArtCdType sbhArtCd; - @XmlAttribute(name = "SbhBetrag") - protected BigDecimal sbhBetrag; - @XmlAttribute(name = "SbhProzent") - protected BigDecimal sbhProzent; - @XmlAttribute(name = "SbhText") - protected String sbhText; - - /** - * Ruft den Wert der sbhArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SbhArtCdType } - * - */ - public SbhArtCdType getSbhArtCd() { - return sbhArtCd; - } - - /** - * Legt den Wert der sbhArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SbhArtCdType } - * - */ - public void setSbhArtCd(SbhArtCdType value) { - this.sbhArtCd = value; - } - - /** - * Ruft den Wert der sbhBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhBetrag() { - return sbhBetrag; - } - - /** - * Legt den Wert der sbhBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhBetrag(BigDecimal value) { - this.sbhBetrag = value; - } - - /** - * Ruft den Wert der sbhProzent-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSbhProzent() { - return sbhProzent; - } - - /** - * Legt den Wert der sbhProzent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSbhProzent(BigDecimal value) { - this.sbhProzent = value; - } - - /** - * Ruft den Wert der sbhText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbhText() { - return sbhText; - } - - /** - * Legt den Wert der sbhText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbhText(String value) { - this.sbhText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSteuerType.java deleted file mode 100644 index b0785aba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELSteuerType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Steuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Steuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
- *       <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Steuer_Type") -public class ELSteuerType { - - @XmlAttribute(name = "StArtCd", required = true) - protected String stArtCd; - @XmlAttribute(name = "StBetrag", required = true) - protected BigDecimal stBetrag; - - /** - * Ruft den Wert der stArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStArtCd() { - return stArtCd; - } - - /** - * Legt den Wert der stArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStArtCd(String value) { - this.stArtCd = value; - } - - /** - * Ruft den Wert der stBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getStBetrag() { - return stBetrag; - } - - /** - * Legt den Wert der stBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setStBetrag(BigDecimal value) { - this.stBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELTextType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELTextType.java deleted file mode 100644 index bd796e88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELTextType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Text_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Text_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
- *       <attribute name="TxtInhalt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Text_Type") -public class ELTextType { - - @XmlAttribute(name = "TxtArtCd", required = true) - protected TxtArtCdType txtArtCd; - @XmlAttribute(name = "TxtInhalt", required = true) - protected String txtInhalt; - - /** - * Ruft den Wert der txtArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link TxtArtCdType } - * - */ - public TxtArtCdType getTxtArtCd() { - return txtArtCd; - } - - /** - * Legt den Wert der txtArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TxtArtCdType } - * - */ - public void setTxtArtCd(TxtArtCdType value) { - this.txtArtCd = value; - } - - /** - * Ruft den Wert der txtInhalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTxtInhalt() { - return txtInhalt; - } - - /** - * Legt den Wert der txtInhalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTxtInhalt(String value) { - this.txtInhalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELVersicherungssummeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELVersicherungssummeType.java deleted file mode 100644 index b4380e53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELVersicherungssummeType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EL-Versicherungssumme_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Versicherungssumme_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
- *       <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
- *       <attribute name="VSBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="255"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Versicherungssumme_Type") -public class ELVersicherungssummeType { - - @XmlAttribute(name = "VSArtCd", required = true) - protected VSArtCdType vsArtCd; - @XmlAttribute(name = "VSBetrag", required = true) - protected BigDecimal vsBetrag; - @XmlAttribute(name = "VSBez") - protected String vsBez; - - /** - * Ruft den Wert der vsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VSArtCdType } - * - */ - public VSArtCdType getVSArtCd() { - return vsArtCd; - } - - /** - * Legt den Wert der vsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VSArtCdType } - * - */ - public void setVSArtCd(VSArtCdType value) { - this.vsArtCd = value; - } - - /** - * Ruft den Wert der vsBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVSBetrag() { - return vsBetrag; - } - - /** - * Legt den Wert der vsBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVSBetrag(BigDecimal value) { - this.vsBetrag = value; - } - - /** - * Ruft den Wert der vsBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVSBez() { - return vsBez; - } - - /** - * Legt den Wert der vsBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVSBez(String value) { - this.vsBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELZeitraumType.java deleted file mode 100644 index f4049852..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ELZeitraumType.java +++ /dev/null @@ -1,113 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für EL-Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EL-Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EL-Zeitraum_Type") -public class ELZeitraumType { - - @XmlAttribute(name = "ZRArtCd", required = true) - protected String zrArtCd; - @XmlAttribute(name = "ZRBeg") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZRArtCd() { - return zrArtCd; - } - - /** - * Legt den Wert der zrArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZRArtCd(String value) { - this.zrArtCd = value; - } - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/Entsch2Type.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/Entsch2Type.java deleted file mode 100644 index 51cb86ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/Entsch2Type.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Entsch2_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Entsch2_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="1"/>
- *     <enumeration value="J"/>
- *     <enumeration value="N"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Entsch2_Type") -@XmlEnum -public enum Entsch2Type { - - J, - N; - - public String value() { - return name(); - } - - public static Entsch2Type fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/EstArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/EstArtCdType.java deleted file mode 100644 index 17cdc90c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/EstArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für EstArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="EstArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="G"/>
- *     <enumeration value="T"/>
- *     <enumeration value="TVU"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EstArtCd_Type") -@XmlEnum -public enum EstArtCdType { - - - /** - * Gefahrenklasse - * - */ - G, - - /** - * Tarif-, Bonus/Malus-Stufe offiziell - * - */ - T, - - /** - * Tarif-, Bonus/Malus-Stufe VU-intern - * - */ - TVU; - - public String value() { - return name(); - } - - public static EstArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/FONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/FONDSType.java deleted file mode 100644 index fbd2ab25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/FONDSType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für FONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FONDS_Type") -public class FONDSType { - - @XmlAttribute(name = "ISIN", required = true) - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GESCHAEDIGTESOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GESCHAEDIGTESOBJEKTType.java deleted file mode 100644 index 40a13ae8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GESCHAEDIGTESOBJEKTType.java +++ /dev/null @@ -1,265 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GESCHAEDIGTES_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="SchadenBeschreibung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
- *       <attribute name="VUNameGesch">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
- *       <attribute name="SchadennrGesch">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Schadennr">
- *             <maxLength value="35"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Kennz_GeschKfz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type") -public class GESCHAEDIGTESOBJEKTType { - - @XmlAttribute(name = "GeschObjektLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int geschObjektLfnr; - @XmlAttribute(name = "SchadenBeschreibung") - protected String schadenBeschreibung; - @XmlAttribute(name = "VUNrGesch") - protected String vuNrGesch; - @XmlAttribute(name = "VUNameGesch") - protected String vuNameGesch; - @XmlAttribute(name = "PolNrGesch") - protected String polNrGesch; - @XmlAttribute(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlAttribute(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlAttribute(name = "Kennz_GeschKfz") - protected String kennzGeschKfz; - - /** - * Ruft den Wert der geschObjektLfnr-Eigenschaft ab. - * - */ - public int getGeschObjektLfnr() { - return geschObjektLfnr; - } - - /** - * Legt den Wert der geschObjektLfnr-Eigenschaft fest. - * - */ - public void setGeschObjektLfnr(int value) { - this.geschObjektLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GrwArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GrwArtCdType.java deleted file mode 100644 index cf71ba1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/GrwArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GrwArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GrwArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DFP"/>
- *     <enumeration value="KAM"/>
- *     <enumeration value="KAT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GrwArtCd_Type") -@XmlEnum -public enum GrwArtCdType { - - - /** - * DauerfolgenProz(UV) - * - */ - DFP, - - /** - * Karenzmonate - * - */ - KAM, - - /** - * Karenztage - * - */ - KAT; - - public String value() { - return name(); - } - - public static GrwArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/IdfArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/IdfArtCdType.java deleted file mode 100644 index 8669e5c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/IdfArtCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für IdfArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="IdfArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FB"/>
- *     <enumeration value="SV"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "IdfArtCd_Type") -@XmlEnum -public enum IdfArtCdType { - - - /** - * Firmenbuchnummer - * - */ - FB, - - /** - * Sozialversicherungsnr - * - */ - SV, - - /** - * Versicherungsbestätigung - * - */ - VB; - - public String value() { - return name(); - } - - public static IdfArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/KLAUSELType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/KLAUSELType.java deleted file mode 100644 index c3b2e02c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/KLAUSELType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für KLAUSEL_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KLAUSEL_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Klauselnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauselbez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Klauseltxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="7998"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GueltigVon" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBis" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KLAUSEL_Type") -public class KLAUSELType { - - @XmlAttribute(name = "Klauselnr", required = true) - protected String klauselnr; - @XmlAttribute(name = "Klauselbez", required = true) - protected String klauselbez; - @XmlAttribute(name = "Klauseltxt") - protected String klauseltxt; - @XmlAttribute(name = "GueltigVon") - protected XMLGregorianCalendar gueltigVon; - @XmlAttribute(name = "GueltigBis") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der klauselnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselnr() { - return klauselnr; - } - - /** - * Legt den Wert der klauselnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselnr(String value) { - this.klauselnr = value; - } - - /** - * Ruft den Wert der klauselbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauselbez() { - return klauselbez; - } - - /** - * Legt den Wert der klauselbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauselbez(String value) { - this.klauselbez = value; - } - - /** - * Ruft den Wert der klauseltxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlauseltxt() { - return klauseltxt; - } - - /** - * Legt den Wert der klauseltxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlauseltxt(String value) { - this.klauseltxt = value; - } - - /** - * Ruft den Wert der gueltigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigVon() { - return gueltigVon; - } - - /** - * Legt den Wert der gueltigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigVon(XMLGregorianCalendar value) { - this.gueltigVon = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LOESCHANSTOSSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LOESCHANSTOSSType.java deleted file mode 100644 index c2198903..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LOESCHANSTOSSType.java +++ /dev/null @@ -1,289 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für LOESCHANSTOSS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LOESCHANSTOSS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="GueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
- *       <attribute name="ProvisionsID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnverfahrenNr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LOESCHANSTOSS_Type") -public class LOESCHANSTOSSType { - - @XmlAttribute(name = "LoeschID", required = true) - protected XMLGregorianCalendar loeschID; - @XmlAttribute(name = "GueltigAb") - protected XMLGregorianCalendar gueltigAb; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "Schadennr") - protected String schadennr; - @XmlAttribute(name = "ProvisionsID") - protected String provisionsID; - @XmlAttribute(name = "MahnverfahrenNr") - protected String mahnverfahrenNr; - @XmlAttribute(name = "LoeschCd", required = true) - protected LoeschCdType loeschCd; - - /** - * Ruft den Wert der loeschID-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLoeschID() { - return loeschID; - } - - /** - * Legt den Wert der loeschID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLoeschID(XMLGregorianCalendar value) { - this.loeschID = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der loeschCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link LoeschCdType } - * - */ - public LoeschCdType getLoeschCd() { - return loeschCd; - } - - /** - * Legt den Wert der loeschCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LoeschCdType } - * - */ - public void setLoeschCd(LoeschCdType value) { - this.loeschCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LoeschCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LoeschCdType.java deleted file mode 100644 index 88d0e641..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/LoeschCdType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für LoeschCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="LoeschCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="M"/>
- *     <enumeration value="L"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LoeschCd_Type") -@XmlEnum -public enum LoeschCdType { - - - /** - * Markieren als nichtmehrversorgt - * - */ - M, - - /** - * Löschen wg.z.B.Falschlieferung - * - */ - L, - - /** - * Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht - * - */ - G; - - public String value() { - return name(); - } - - public static LoeschCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/MAHNUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/MAHNUNGType.java deleted file mode 100644 index 3e5a52e6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/MAHNUNGType.java +++ /dev/null @@ -1,707 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für MAHNUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MAHNUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="MahnverfahrenNr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="32"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
- *       <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStelleBeauftragt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
- *       <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
- *       <attribute name="MahnStufeTextVUNext">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
- *       <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
- *       <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
- *       <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MAHNUNG_Type", propOrder = { - "elText" -}) -public class MAHNUNGType { - - @XmlElement(name = "EL-Text") - protected List elText; - @XmlAttribute(name = "MahnverfahrenNr", required = true) - protected String mahnverfahrenNr; - @XmlAttribute(name = "MahnungNr") - @XmlSchemaType(name = "positiveInteger") - protected BigInteger mahnungNr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "MahnBetrag", required = true) - protected BigDecimal mahnBetrag; - @XmlAttribute(name = "MahnSpesen") - protected BigDecimal mahnSpesen; - @XmlAttribute(name = "MahnStufeCd", required = true) - protected String mahnStufeCd; - @XmlAttribute(name = "MahnStufeTextVU") - protected String mahnStufeTextVU; - @XmlAttribute(name = "MahnStelleVU") - protected String mahnStelleVU; - @XmlAttribute(name = "MahnStelleBeauftragt") - protected String mahnStelleBeauftragt; - @XmlAttribute(name = "MahnStufeGueltigAb") - protected XMLGregorianCalendar mahnStufeGueltigAb; - @XmlAttribute(name = "MahnStufeGueltigBis") - protected XMLGregorianCalendar mahnStufeGueltigBis; - @XmlAttribute(name = "MahnStufeCdNext") - protected String mahnStufeCdNext; - @XmlAttribute(name = "MahnStufeTextVUNext") - protected String mahnStufeTextVUNext; - @XmlAttribute(name = "MahnStufeGueltigAbNext") - protected XMLGregorianCalendar mahnStufeGueltigAbNext; - @XmlAttribute(name = "MahnLetzteZahlung") - protected XMLGregorianCalendar mahnLetzteZahlung; - @XmlAttribute(name = "MahnAeltesteFaelligkeit") - protected XMLGregorianCalendar mahnAeltesteFaelligkeit; - @XmlAttribute(name = "MahnAnzahlFaelligkeiten") - @XmlSchemaType(name = "unsignedShort") - protected Integer mahnAnzahlFaelligkeiten; - @XmlAttribute(name = "GrundRuecklaufCd") - protected String grundRuecklaufCd; - @XmlAttribute(name = "MahnDeckungBis") - protected XMLGregorianCalendar mahnDeckungBis; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der mahnverfahrenNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnverfahrenNr() { - return mahnverfahrenNr; - } - - /** - * Legt den Wert der mahnverfahrenNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnverfahrenNr(String value) { - this.mahnverfahrenNr = value; - } - - /** - * Ruft den Wert der mahnungNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMahnungNr() { - return mahnungNr; - } - - /** - * Legt den Wert der mahnungNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMahnungNr(BigInteger value) { - this.mahnungNr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der mahnBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnBetrag() { - return mahnBetrag; - } - - /** - * Legt den Wert der mahnBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnBetrag(BigDecimal value) { - this.mahnBetrag = value; - } - - /** - * Ruft den Wert der mahnSpesen-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMahnSpesen() { - return mahnSpesen; - } - - /** - * Legt den Wert der mahnSpesen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMahnSpesen(BigDecimal value) { - this.mahnSpesen = value; - } - - /** - * Ruft den Wert der mahnStufeCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCd() { - return mahnStufeCd; - } - - /** - * Legt den Wert der mahnStufeCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCd(String value) { - this.mahnStufeCd = value; - } - - /** - * Ruft den Wert der mahnStufeTextVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVU() { - return mahnStufeTextVU; - } - - /** - * Legt den Wert der mahnStufeTextVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVU(String value) { - this.mahnStufeTextVU = value; - } - - /** - * Ruft den Wert der mahnStelleVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleVU() { - return mahnStelleVU; - } - - /** - * Legt den Wert der mahnStelleVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleVU(String value) { - this.mahnStelleVU = value; - } - - /** - * Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStelleBeauftragt() { - return mahnStelleBeauftragt; - } - - /** - * Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStelleBeauftragt(String value) { - this.mahnStelleBeauftragt = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAb() { - return mahnStufeGueltigAb; - } - - /** - * Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAb(XMLGregorianCalendar value) { - this.mahnStufeGueltigAb = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigBis() { - return mahnStufeGueltigBis; - } - - /** - * Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigBis(XMLGregorianCalendar value) { - this.mahnStufeGueltigBis = value; - } - - /** - * Ruft den Wert der mahnStufeCdNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeCdNext() { - return mahnStufeCdNext; - } - - /** - * Legt den Wert der mahnStufeCdNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeCdNext(String value) { - this.mahnStufeCdNext = value; - } - - /** - * Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMahnStufeTextVUNext() { - return mahnStufeTextVUNext; - } - - /** - * Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMahnStufeTextVUNext(String value) { - this.mahnStufeTextVUNext = value; - } - - /** - * Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnStufeGueltigAbNext() { - return mahnStufeGueltigAbNext; - } - - /** - * Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) { - this.mahnStufeGueltigAbNext = value; - } - - /** - * Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnLetzteZahlung() { - return mahnLetzteZahlung; - } - - /** - * Legt den Wert der mahnLetzteZahlung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnLetzteZahlung(XMLGregorianCalendar value) { - this.mahnLetzteZahlung = value; - } - - /** - * Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnAeltesteFaelligkeit() { - return mahnAeltesteFaelligkeit; - } - - /** - * Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) { - this.mahnAeltesteFaelligkeit = value; - } - - /** - * Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMahnAnzahlFaelligkeiten() { - return mahnAnzahlFaelligkeiten; - } - - /** - * Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMahnAnzahlFaelligkeiten(Integer value) { - this.mahnAnzahlFaelligkeiten = value; - } - - /** - * Ruft den Wert der grundRuecklaufCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundRuecklaufCd() { - return grundRuecklaufCd; - } - - /** - * Legt den Wert der grundRuecklaufCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundRuecklaufCd(String value) { - this.grundRuecklaufCd = value; - } - - /** - * Ruft den Wert der mahnDeckungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMahnDeckungBis() { - return mahnDeckungBis; - } - - /** - * Legt den Wert der mahnDeckungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMahnDeckungBis(XMLGregorianCalendar value) { - this.mahnDeckungBis = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/NATUERLICHEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/NATUERLICHEPERSONType.java deleted file mode 100644 index 18f890af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/NATUERLICHEPERSONType.java +++ /dev/null @@ -1,206 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für NATUERLICHE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NATUERLICHE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *       <attribute name="Gebdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="FamilienstandCd" use="required" type="{urn:omds20}FamilienstandCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NATUERLICHE_PERSON_Type") -public class NATUERLICHEPERSONType { - - @XmlAttribute(name = "Familienname", required = true) - protected String familienname; - @XmlAttribute(name = "Vorname") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", required = true) - protected String geschlechtCd; - @XmlAttribute(name = "Gebdat") - protected XMLGregorianCalendar gebdat; - @XmlAttribute(name = "LandesCd", required = true) - protected String landesCd; - @XmlAttribute(name = "FamilienstandCd", required = true) - protected String familienstandCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 familienstandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienstandCd() { - return familienstandCd; - } - - /** - * Legt den Wert der familienstandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienstandCd(String value) { - this.familienstandCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/OMDS.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/OMDS.java deleted file mode 100644 index 88df3261..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/OMDS.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="version" type="{urn:omds20}version" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "paket" -}) -@XmlRootElement(name = "OMDS") -public class OMDS { - - @XmlElement(name = "PAKET", required = true) - protected List paket; - @XmlAttribute(name = "version") - protected String version; - - /** - * Gets the value of the paket property. - * - *

- * 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 set method for the paket property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPAKET().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PAKET } - * - * - */ - public List getPAKET() { - if (paket == null) { - paket = new ArrayList(); - } - return this.paket; - } - - /** - * Ruft den Wert der version-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Legt den Wert der version-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ObjectFactory.java deleted file mode 100644 index a92f188e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ObjectFactory.java +++ /dev/null @@ -1,903 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds2Types.v2_9 package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation"); - private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL"); - private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS"); - private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON"); - private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag"); - private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl"); - private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag"); - private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung"); - private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung"); - private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage"); - private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung"); - private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel"); - private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer"); - private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung"); - private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur"); - private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung"); - private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text"); - private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON"); - private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT"); - private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE"); - private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN"); - private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION"); - private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG"); - private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS"); - private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON"); - private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON"); - private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON"); - private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE"); - private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO"); - private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS"); - private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER"); - private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT"); - private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG"); - private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung"); - private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert"); - private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index"); - private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation"); - private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten"); - private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente"); - private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer"); - private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme"); - private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_9 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link OMDS } - * - */ - public OMDS createOMDS() { - return new OMDS(); - } - - /** - * Create an instance of {@link PAKET } - * - */ - public PAKET createPAKET() { - return new PAKET(); - } - - /** - * Create an instance of {@link VERSUNTERNEHMEN } - * - */ - public VERSUNTERNEHMEN createVERSUNTERNEHMEN() { - return new VERSUNTERNEHMEN(); - } - - /** - * Create an instance of {@link ELKommunikationType } - * - */ - public ELKommunikationType createELKommunikationType() { - return new ELKommunikationType(); - } - - /** - * Create an instance of {@link SCHLUESSELART } - * - */ - public SCHLUESSELART createSCHLUESSELART() { - return new SCHLUESSELART(); - } - - /** - * Create an instance of {@link SCHLUESSEL } - * - */ - public SCHLUESSEL createSCHLUESSEL() { - return new SCHLUESSEL(); - } - - /** - * Create an instance of {@link KLAUSELType } - * - */ - public KLAUSELType createKLAUSELType() { - return new KLAUSELType(); - } - - /** - * Create an instance of {@link LOESCHANSTOSSType } - * - */ - public LOESCHANSTOSSType createLOESCHANSTOSSType() { - return new LOESCHANSTOSSType(); - } - - /** - * Create an instance of {@link PERSONType } - * - */ - public PERSONType createPERSONType() { - return new PERSONType(); - } - - /** - * Create an instance of {@link VERTRAG } - * - */ - public VERTRAG createVERTRAG() { - return new VERTRAG(); - } - - /** - * Create an instance of {@link VERTRAGType } - * - */ - public VERTRAGType createVERTRAGType() { - return new VERTRAGType(); - } - - /** - * Create an instance of {@link ELAntragType } - * - */ - public ELAntragType createELAntragType() { - return new ELAntragType(); - } - - /** - * Create an instance of {@link ELAnzahlType } - * - */ - public ELAnzahlType createELAnzahlType() { - return new ELAnzahlType(); - } - - /** - * Create an instance of {@link ELBetragType } - * - */ - public ELBetragType createELBetragType() { - return new ELBetragType(); - } - - /** - * Create an instance of {@link ELBezugsberechtigungType } - * - */ - public ELBezugsberechtigungType createELBezugsberechtigungType() { - return new ELBezugsberechtigungType(); - } - - /** - * Create an instance of {@link ELEinstufungType } - * - */ - public ELEinstufungType createELEinstufungType() { - return new ELEinstufungType(); - } - - /** - * Create an instance of {@link ELEntscheidungsfrageType } - * - */ - public ELEntscheidungsfrageType createELEntscheidungsfrageType() { - return new ELEntscheidungsfrageType(); - } - - /** - * Create an instance of {@link ELIdentifizierungType } - * - */ - public ELIdentifizierungType createELIdentifizierungType() { - return new ELIdentifizierungType(); - } - - /** - * Create an instance of {@link ELKlauselType } - * - */ - public ELKlauselType createELKlauselType() { - return new ELKlauselType(); - } - - /** - * Create an instance of {@link ELPolizzennummerType } - * - */ - public ELPolizzennummerType createELPolizzennummerType() { - return new ELPolizzennummerType(); - } - - /** - * Create an instance of {@link ELPraemienfreistellungType } - * - */ - public ELPraemienfreistellungType createELPraemienfreistellungType() { - return new ELPraemienfreistellungType(); - } - - /** - * Create an instance of {@link ELPraemienkorrekturType } - * - */ - public ELPraemienkorrekturType createELPraemienkorrekturType() { - return new ELPraemienkorrekturType(); - } - - /** - * Create an instance of {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType createELRahmenvereinbarungType() { - return new ELRahmenvereinbarungType(); - } - - /** - * Create an instance of {@link ELSelbstbehalt } - * - */ - public ELSelbstbehalt createELSelbstbehalt() { - return new ELSelbstbehalt(); - } - - /** - * Create an instance of {@link ELSelbstbehaltType } - * - */ - public ELSelbstbehaltType createELSelbstbehaltType() { - return new ELSelbstbehaltType(); - } - - /** - * Create an instance of {@link ELTextType } - * - */ - public ELTextType createELTextType() { - return new ELTextType(); - } - - /** - * Create an instance of {@link VERTRAGSPERSONType } - * - */ - public VERTRAGSPERSONType createVERTRAGSPERSONType() { - return new VERTRAGSPERSONType(); - } - - /** - * Create an instance of {@link VERSOBJEKTType } - * - */ - public VERSOBJEKTType createVERSOBJEKTType() { - return new VERSOBJEKTType(); - } - - /** - * Create an instance of {@link SPARTEType } - * - */ - public SPARTEType createSPARTEType() { - return new SPARTEType(); - } - - /** - * Create an instance of {@link SCHADENType } - * - */ - public SCHADENType createSCHADENType() { - return new SCHADENType(); - } - - /** - * Create an instance of {@link PROVISIONType } - * - */ - public PROVISIONType createPROVISIONType() { - return new PROVISIONType(); - } - - /** - * Create an instance of {@link MAHNUNGType } - * - */ - public MAHNUNGType createMAHNUNGType() { - return new MAHNUNGType(); - } - - /** - * Create an instance of {@link VERTRAGSFONDSType } - * - */ - public VERTRAGSFONDSType createVERTRAGSFONDSType() { - return new VERTRAGSFONDSType(); - } - - /** - * Create an instance of {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType createNATUERLICHEPERSONType() { - return new NATUERLICHEPERSONType(); - } - - /** - * Create an instance of {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType createSONSTIGEPERSONType() { - return new SONSTIGEPERSONType(); - } - - /** - * Create an instance of {@link VERSPERSONType } - * - */ - public VERSPERSONType createVERSPERSONType() { - return new VERSPERSONType(); - } - - /** - * Create an instance of {@link VERSKFZ } - * - */ - public VERSKFZ createVERSKFZ() { - return new VERSKFZ(); - } - - /** - * Create an instance of {@link VERSKFZType } - * - */ - public VERSKFZType createVERSKFZType() { - return new VERSKFZType(); - } - - /** - * Create an instance of {@link VERSSACHEType } - * - */ - public VERSSACHEType createVERSSACHEType() { - return new VERSSACHEType(); - } - - /** - * Create an instance of {@link RISIKOType } - * - */ - public RISIKOType createRISIKOType() { - return new RISIKOType(); - } - - /** - * Create an instance of {@link FONDSType } - * - */ - public FONDSType createFONDSType() { - return new FONDSType(); - } - - /** - * Create an instance of {@link PORTFOLIO } - * - */ - public PORTFOLIO createPORTFOLIO() { - return new PORTFOLIO(); - } - - /** - * Create an instance of {@link PORTFOLIOTYPE } - * - */ - public PORTFOLIOTYPE createPORTFOLIOTYPE() { - return new PORTFOLIOTYPE(); - } - - /** - * Create an instance of {@link SCHADENBETEILIGTERType } - * - */ - public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() { - return new SCHADENBETEILIGTERType(); - } - - /** - * Create an instance of {@link GESCHAEDIGTESOBJEKTType } - * - */ - public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() { - return new GESCHAEDIGTESOBJEKTType(); - } - - /** - * Create an instance of {@link ZAHLUNGType } - * - */ - public ZAHLUNGType createZAHLUNGType() { - return new ZAHLUNGType(); - } - - /** - * Create an instance of {@link ELGewinnbeteiligungType } - * - */ - public ELGewinnbeteiligungType createELGewinnbeteiligungType() { - return new ELGewinnbeteiligungType(); - } - - /** - * Create an instance of {@link ELGrenzwertType } - * - */ - public ELGrenzwertType createELGrenzwertType() { - return new ELGrenzwertType(); - } - - /** - * Create an instance of {@link ELIndexType } - * - */ - public ELIndexType createELIndexType() { - return new ELIndexType(); - } - - /** - * Create an instance of {@link ELLegitimationType } - * - */ - public ELLegitimationType createELLegitimationType() { - return new ELLegitimationType(); - } - - /** - * Create an instance of {@link ELObjektdatenType } - * - */ - public ELObjektdatenType createELObjektdatenType() { - return new ELObjektdatenType(); - } - - /** - * Create an instance of {@link ELRenteType } - * - */ - public ELRenteType createELRenteType() { - return new ELRenteType(); - } - - /** - * Create an instance of {@link ELSteuerType } - * - */ - public ELSteuerType createELSteuerType() { - return new ELSteuerType(); - } - - /** - * Create an instance of {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType createELVersicherungssummeType() { - return new ELVersicherungssummeType(); - } - - /** - * Create an instance of {@link ELZeitraumType } - * - */ - public ELZeitraumType createELZeitraumType() { - return new ELZeitraumType(); - } - - /** - * Create an instance of {@link ADRESSEType } - * - */ - public ADRESSEType createADRESSEType() { - return new ADRESSEType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Kommunikation") - public JAXBElement createELKommunikation(ELKommunikationType value) { - return new JAXBElement(_ELKommunikation_QNAME, ELKommunikationType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "KLAUSEL") - public JAXBElement createKLAUSEL(KLAUSELType value) { - return new JAXBElement(_KLAUSEL_QNAME, KLAUSELType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "LOESCHANSTOSS") - public JAXBElement createLOESCHANSTOSS(LOESCHANSTOSSType value) { - return new JAXBElement(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "PERSON") - public JAXBElement createPERSON(PERSONType value) { - return new JAXBElement(_PERSON_QNAME, PERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Antrag") - public JAXBElement createELAntrag(ELAntragType value) { - return new JAXBElement(_ELAntrag_QNAME, ELAntragType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Anzahl") - public JAXBElement createELAnzahl(ELAnzahlType value) { - return new JAXBElement(_ELAnzahl_QNAME, ELAnzahlType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Betrag") - public JAXBElement createELBetrag(ELBetragType value) { - return new JAXBElement(_ELBetrag_QNAME, ELBetragType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Bezugsberechtigung") - public JAXBElement createELBezugsberechtigung(ELBezugsberechtigungType value) { - return new JAXBElement(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Einstufung") - public JAXBElement createELEinstufung(ELEinstufungType value) { - return new JAXBElement(_ELEinstufung_QNAME, ELEinstufungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Entscheidungsfrage") - public JAXBElement createELEntscheidungsfrage(ELEntscheidungsfrageType value) { - return new JAXBElement(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Identifizierung") - public JAXBElement createELIdentifizierung(ELIdentifizierungType value) { - return new JAXBElement(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Klausel") - public JAXBElement createELKlausel(ELKlauselType value) { - return new JAXBElement(_ELKlausel_QNAME, ELKlauselType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Polizzennummer") - public JAXBElement createELPolizzennummer(ELPolizzennummerType value) { - return new JAXBElement(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienfreistellung") - public JAXBElement createELPraemienfreistellung(ELPraemienfreistellungType value) { - return new JAXBElement(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienkorrektur") - public JAXBElement createELPraemienkorrektur(ELPraemienkorrekturType value) { - return new JAXBElement(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvereinbarung") - public JAXBElement createELRahmenvereinbarung(ELRahmenvereinbarungType value) { - return new JAXBElement(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Text") - public JAXBElement createELText(ELTextType value) { - return new JAXBElement(_ELText_QNAME, ELTextType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSPERSON") - public JAXBElement createVERTRAGSPERSON(VERTRAGSPERSONType value) { - return new JAXBElement(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_OBJEKT") - public JAXBElement createVERSOBJEKT(VERSOBJEKTType value) { - return new JAXBElement(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SPARTE") - public JAXBElement createSPARTE(SPARTEType value) { - return new JAXBElement(_SPARTE_QNAME, SPARTEType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN") - public JAXBElement createSCHADEN(SCHADENType value) { - return new JAXBElement(_SCHADEN_QNAME, SCHADENType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "PROVISION") - public JAXBElement createPROVISION(PROVISIONType value) { - return new JAXBElement(_PROVISION_QNAME, PROVISIONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "MAHNUNG") - public JAXBElement createMAHNUNG(MAHNUNGType value) { - return new JAXBElement(_MAHNUNG_QNAME, MAHNUNGType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSFONDS") - public JAXBElement createVERTRAGSFONDS(VERTRAGSFONDSType value) { - return new JAXBElement(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "NATUERLICHE_PERSON") - public JAXBElement createNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - return new JAXBElement(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SONSTIGE_PERSON") - public JAXBElement createSONSTIGEPERSON(SONSTIGEPERSONType value) { - return new JAXBElement(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_PERSON") - public JAXBElement createVERSPERSON(VERSPERSONType value) { - return new JAXBElement(_VERSPERSON_QNAME, VERSPERSONType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "VERS_SACHE") - public JAXBElement createVERSSACHE(VERSSACHEType value) { - return new JAXBElement(_VERSSACHE_QNAME, VERSSACHEType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "RISIKO") - public JAXBElement createRISIKO(RISIKOType value) { - return new JAXBElement(_RISIKO_QNAME, RISIKOType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "FONDS") - public JAXBElement createFONDS(FONDSType value) { - return new JAXBElement(_FONDS_QNAME, FONDSType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN_BETEILIGTER") - public JAXBElement createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) { - return new JAXBElement(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "GESCHAEDIGTES_OBJEKT") - public JAXBElement createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) { - return new JAXBElement(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "ZAHLUNG") - public JAXBElement createZAHLUNG(ZAHLUNGType value) { - return new JAXBElement(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Gewinnbeteiligung") - public JAXBElement createELGewinnbeteiligung(ELGewinnbeteiligungType value) { - return new JAXBElement(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Grenzwert") - public JAXBElement createELGrenzwert(ELGrenzwertType value) { - return new JAXBElement(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Index") - public JAXBElement createELIndex(ELIndexType value) { - return new JAXBElement(_ELIndex_QNAME, ELIndexType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Legitimation") - public JAXBElement createELLegitimation(ELLegitimationType value) { - return new JAXBElement(_ELLegitimation_QNAME, ELLegitimationType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Objektdaten") - public JAXBElement createELObjektdaten(ELObjektdatenType value) { - return new JAXBElement(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Rente") - public JAXBElement createELRente(ELRenteType value) { - return new JAXBElement(_ELRente_QNAME, ELRenteType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Steuer") - public JAXBElement createELSteuer(ELSteuerType value) { - return new JAXBElement(_ELSteuer_QNAME, ELSteuerType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Versicherungssumme") - public JAXBElement createELVersicherungssumme(ELVersicherungssummeType value) { - return new JAXBElement(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds20", name = "EL-Zeitraum") - public JAXBElement createELZeitraum(ELZeitraumType value) { - return new JAXBElement(_ELZeitraum_QNAME, ELZeitraumType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PAKET.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PAKET.java deleted file mode 100644 index 1bb45b6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PAKET.java +++ /dev/null @@ -1,670 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
- *           <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <group ref="{urn:omds20}bestand"/>
- *       </choice>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="MaklerID" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
- *       <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
- *       <attribute name="OMDSVersion" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VUVersion" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DVRNrAbs" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="8"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PaketKommentar">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versunternehmen", - "schluesselart", - "klausel", - "loeschanstoss", - "person", - "vertrag", - "schaden", - "provision", - "mahnung", - "vertragsfonds" -}) -@XmlRootElement(name = "PAKET") -public class PAKET { - - @XmlElement(name = "VERS_UNTERNEHMEN") - protected List versunternehmen; - @XmlElement(name = "SCHLUESSELART") - protected List schluesselart; - @XmlElement(name = "KLAUSEL") - protected List klausel; - @XmlElement(name = "LOESCHANSTOSS") - protected List loeschanstoss; - @XmlElement(name = "PERSON") - protected List person; - @XmlElement(name = "VERTRAG") - protected List vertrag; - @XmlElement(name = "SCHADEN") - protected List schaden; - @XmlElement(name = "PROVISION") - protected List provision; - @XmlElement(name = "MAHNUNG") - protected List mahnung; - @XmlElement(name = "VERTRAGSFONDS") - protected List vertragsfonds; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "MaklerID", required = true) - protected String maklerID; - @XmlAttribute(name = "PaketZpktErstell", required = true) - protected XMLGregorianCalendar paketZpktErstell; - @XmlAttribute(name = "PaketZpktLetztErstell") - protected XMLGregorianCalendar paketZpktLetztErstell; - @XmlAttribute(name = "PaketInhCd", required = true) - protected PaketInhCdType paketInhCd; - @XmlAttribute(name = "PaketUmfCd", required = true) - protected PaketUmfCdType paketUmfCd; - @XmlAttribute(name = "OMDSVersion", required = true) - protected String omdsVersion; - @XmlAttribute(name = "VUVersion", required = true) - protected String vuVersion; - @XmlAttribute(name = "DVRNrAbs", required = true) - protected String dvrNrAbs; - @XmlAttribute(name = "PaketKommentar") - protected String paketKommentar; - - /** - * Gets the value of the versunternehmen property. - * - *

- * 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 set method for the versunternehmen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSUNTERNEHMEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSUNTERNEHMEN } - * - * - */ - public List getVERSUNTERNEHMEN() { - if (versunternehmen == null) { - versunternehmen = new ArrayList(); - } - return this.versunternehmen; - } - - /** - * Gets the value of the schluesselart property. - * - *

- * 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 set method for the schluesselart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSELART().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSELART } - * - * - */ - public List getSCHLUESSELART() { - if (schluesselart == null) { - schluesselart = new ArrayList(); - } - return this.schluesselart; - } - - /** - * Gets the value of the klausel property. - * - *

- * 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 set method for the klausel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKLAUSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KLAUSELType } - * - * - */ - public List getKLAUSEL() { - if (klausel == null) { - klausel = new ArrayList(); - } - return this.klausel; - } - - /** - * Gets the value of the loeschanstoss property. - * - *

- * 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 set method for the loeschanstoss property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLOESCHANSTOSS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LOESCHANSTOSSType } - * - * - */ - public List getLOESCHANSTOSS() { - if (loeschanstoss == null) { - loeschanstoss = new ArrayList(); - } - return this.loeschanstoss; - } - - /** - * Gets the value of the person property. - * - *

- * 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 set method for the person property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PERSONType } - * - * - */ - public List getPERSON() { - if (person == null) { - person = new ArrayList(); - } - return this.person; - } - - /** - * Gets the value of the vertrag property. - * - *

- * 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 set method for the vertrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAG } - * - * - */ - public List getVERTRAG() { - if (vertrag == null) { - vertrag = new ArrayList(); - } - return this.vertrag; - } - - /** - * Gets the value of the schaden property. - * - *

- * 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 set method for the schaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADEN().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENType } - * - * - */ - public List getSCHADEN() { - if (schaden == null) { - schaden = new ArrayList(); - } - return this.schaden; - } - - /** - * Gets the value of the provision property. - * - *

- * 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 set method for the provision property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPROVISION().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PROVISIONType } - * - * - */ - public List getPROVISION() { - if (provision == null) { - provision = new ArrayList(); - } - return this.provision; - } - - /** - * Gets the value of the mahnung property. - * - *

- * 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 set method for the mahnung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMAHNUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MAHNUNGType } - * - * - */ - public List getMAHNUNG() { - if (mahnung == null) { - mahnung = new ArrayList(); - } - return this.mahnung; - } - - /** - * Gets the value of the vertragsfonds property. - * - *

- * 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 set method for the vertragsfonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSFONDSType } - * - * - */ - public List getVERTRAGSFONDS() { - if (vertragsfonds == null) { - vertragsfonds = new ArrayList(); - } - return this.vertragsfonds; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der paketZpktErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktErstell() { - return paketZpktErstell; - } - - /** - * Legt den Wert der paketZpktErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktErstell(XMLGregorianCalendar value) { - this.paketZpktErstell = value; - } - - /** - * Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaketZpktLetztErstell() { - return paketZpktLetztErstell; - } - - /** - * Legt den Wert der paketZpktLetztErstell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaketZpktLetztErstell(XMLGregorianCalendar value) { - this.paketZpktLetztErstell = value; - } - - /** - * Ruft den Wert der paketInhCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketInhCdType } - * - */ - public PaketInhCdType getPaketInhCd() { - return paketInhCd; - } - - /** - * Legt den Wert der paketInhCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketInhCdType } - * - */ - public void setPaketInhCd(PaketInhCdType value) { - this.paketInhCd = value; - } - - /** - * Ruft den Wert der paketUmfCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPaketUmfCd() { - return paketUmfCd; - } - - /** - * Legt den Wert der paketUmfCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPaketUmfCd(PaketUmfCdType value) { - this.paketUmfCd = value; - } - - /** - * Ruft den Wert der omdsVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOMDSVersion() { - return omdsVersion; - } - - /** - * Legt den Wert der omdsVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOMDSVersion(String value) { - this.omdsVersion = value; - } - - /** - * Ruft den Wert der vuVersion-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUVersion() { - return vuVersion; - } - - /** - * Legt den Wert der vuVersion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUVersion(String value) { - this.vuVersion = value; - } - - /** - * Ruft den Wert der dvrNrAbs-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDVRNrAbs() { - return dvrNrAbs; - } - - /** - * Legt den Wert der dvrNrAbs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDVRNrAbs(String value) { - this.dvrNrAbs = value; - } - - /** - * Ruft den Wert der paketKommentar-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaketKommentar() { - return paketKommentar; - } - - /** - * Legt den Wert der paketKommentar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaketKommentar(String value) { - this.paketKommentar = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PERSONType.java deleted file mode 100644 index 7ba25c25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PERSONType.java +++ /dev/null @@ -1,396 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}Personennr">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PERSON_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class PERSONType { - - @XmlElement(name = "NATUERLICHE_PERSON") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - @XmlAttribute(name = "PersArtCd", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIO.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIO.java deleted file mode 100644 index 3dbeb595..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIO.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}PORTFOLIO_TYPE">
- *       <sequence>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "fonds" -}) -@XmlRootElement(name = "PORTFOLIO") -public class PORTFOLIO - extends PORTFOLIOTYPE -{ - - @XmlElement(name = "FONDS") - protected List fonds; - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIOTYPE.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIOTYPE.java deleted file mode 100644 index 4bed2630..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PORTFOLIOTYPE.java +++ /dev/null @@ -1,307 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PORTFOLIO_TYPE complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PORTFOLIO_TYPE">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
- *       <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
- *       <attribute name="WKN" type="{urn:omds20}WKN_Type" />
- *       <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
- *       <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
- *       <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
- *       <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
- *       <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="Stichtag" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PORTFOLIO_TYPE") -@XmlSeeAlso({ - PORTFOLIO.class -}) -public class PORTFOLIOTYPE { - - @XmlAttribute(name = "PortfolioID", required = true) - protected String portfolioID; - @XmlAttribute(name = "ISIN") - protected String isin; - @XmlAttribute(name = "WKN") - protected String wkn; - @XmlAttribute(name = "Bezeichnung", required = true) - protected String bezeichnung; - @XmlAttribute(name = "Kurs") - protected BigDecimal kurs; - @XmlAttribute(name = "AnteilWertpapier") - protected BigDecimal anteilWertpapier; - @XmlAttribute(name = "Prozentsatz", required = true) - protected BigDecimal prozentsatz; - @XmlAttribute(name = "Wert") - protected BigDecimal wert; - @XmlAttribute(name = "WaehrungsCd") - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "Stichtag") - protected XMLGregorianCalendar stichtag; - - /** - * Ruft den Wert der portfolioID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPortfolioID() { - return portfolioID; - } - - /** - * Legt den Wert der portfolioID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPortfolioID(String value) { - this.portfolioID = value; - } - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISIN(String value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWKN(String value) { - this.wkn = 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 kurs-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getKurs() { - return kurs; - } - - /** - * Legt den Wert der kurs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setKurs(BigDecimal value) { - this.kurs = value; - } - - /** - * Ruft den Wert der anteilWertpapier-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAnteilWertpapier() { - return anteilWertpapier; - } - - /** - * Legt den Wert der anteilWertpapier-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAnteilWertpapier(BigDecimal value) { - this.anteilWertpapier = value; - } - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProzentsatz(BigDecimal value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der wert-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWert() { - return wert; - } - - /** - * Legt den Wert der wert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWert(BigDecimal value) { - this.wert = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der stichtag-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStichtag() { - return stichtag; - } - - /** - * Legt den Wert der stichtag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStichtag(XMLGregorianCalendar value) { - this.stichtag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PROVISIONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PROVISIONType.java deleted file mode 100644 index 782d5e30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PROVISIONType.java +++ /dev/null @@ -1,516 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für PROVISION_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PROVISION_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ProvisionsID" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ProvVon" type="{urn:omds20}Datum" />
- *       <attribute name="ProvBis" type="{urn:omds20}Datum" />
- *       <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
- *       <attribute name="ProvTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
- *       <attribute name="ProvSatz" type="{urn:omds20}decimal" />
- *       <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ProvArtText">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="90"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PROVISION_Type") -public class PROVISIONType { - - @XmlAttribute(name = "ProvisionsID", required = true) - protected String provisionsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "Polizzennr") - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "SpartenCd") - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung") - protected String spartenErweiterung; - @XmlAttribute(name = "BuchDat", required = true) - protected XMLGregorianCalendar buchDat; - @XmlAttribute(name = "ProvVon") - protected XMLGregorianCalendar provVon; - @XmlAttribute(name = "ProvBis") - protected XMLGregorianCalendar provBis; - @XmlAttribute(name = "ProvArtCd", required = true) - protected String provArtCd; - @XmlAttribute(name = "ProvTxt") - protected String provTxt; - @XmlAttribute(name = "ProvGrdlg") - protected BigDecimal provGrdlg; - @XmlAttribute(name = "ProvSatz") - protected BigDecimal provSatz; - @XmlAttribute(name = "ProvBetrag", required = true) - protected BigDecimal provBetrag; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ProvArtText") - protected String provArtText; - @XmlAttribute(name = "Vorpolizze") - protected String vorpolizze; - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionsID(String value) { - this.provisionsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der buchDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBuchDat() { - return buchDat; - } - - /** - * Legt den Wert der buchDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBuchDat(XMLGregorianCalendar value) { - this.buchDat = value; - } - - /** - * Ruft den Wert der provVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvVon() { - return provVon; - } - - /** - * Legt den Wert der provVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvVon(XMLGregorianCalendar value) { - this.provVon = value; - } - - /** - * Ruft den Wert der provBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvBis() { - return provBis; - } - - /** - * Legt den Wert der provBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvBis(XMLGregorianCalendar value) { - this.provBis = value; - } - - /** - * Ruft den Wert der provArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtCd() { - return provArtCd; - } - - /** - * Legt den Wert der provArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtCd(String value) { - this.provArtCd = value; - } - - /** - * Ruft den Wert der provTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvTxt() { - return provTxt; - } - - /** - * Legt den Wert der provTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvTxt(String value) { - this.provTxt = value; - } - - /** - * Ruft den Wert der provGrdlg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvGrdlg() { - return provGrdlg; - } - - /** - * Legt den Wert der provGrdlg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvGrdlg(BigDecimal value) { - this.provGrdlg = value; - } - - /** - * Ruft den Wert der provSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvSatz() { - return provSatz; - } - - /** - * Legt den Wert der provSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvSatz(BigDecimal value) { - this.provSatz = value; - } - - /** - * Ruft den Wert der provBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProvBetrag() { - return provBetrag; - } - - /** - * Legt den Wert der provBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProvBetrag(BigDecimal value) { - this.provBetrag = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der provArtText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvArtText() { - return provArtText; - } - - /** - * Legt den Wert der provArtText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvArtText(String value) { - this.provArtText = value; - } - - /** - * Ruft den Wert der vorpolizze-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorpolizze() { - return vorpolizze; - } - - /** - * Legt den Wert der vorpolizze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorpolizze(String value) { - this.vorpolizze = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketInhCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketInhCdType.java deleted file mode 100644 index 431b85ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketInhCdType.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketInhCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PaketInhCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AI"/>
- *     <enumeration value="VF"/>
- *     <enumeration value="VI"/>
- *     <enumeration value="VK"/>
- *     <enumeration value="VM"/>
- *     <enumeration value="VP"/>
- *     <enumeration value="VS"/>
- *     <enumeration value="VV"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketInhCd_Type") -@XmlEnum -public enum PaketInhCdType { - - - /** - * Allgem. Initialbestand (generelle Schlüssel) - * - */ - AI, - - /** - * VU Fondsbestand - * - */ - VF, - - /** - * VU Initialbestand (VU Schlüssel) - * - */ - VI, - - /** - * VU Mahn/Klagebestand - * - */ - VK, - - /** - * VU Mischbestand - * - */ - VM, - - /** - * VU Provisionen - * - */ - VP, - - /** - * VU Schadenbestand - * - */ - VS, - - /** - * VU Vertragsbestand - * - */ - VV; - - public String value() { - return name(); - } - - public static PaketInhCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketUmfCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketUmfCdType.java deleted file mode 100644 index 3f47adb0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PaketUmfCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PaketUmfCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PaketUmfCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="D"/>
- *     <enumeration value="G"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PaketUmfCd_Type") -@XmlEnum -public enum PaketUmfCdType { - - - /** - * Differenz - * - */ - D, - - /** - * gesamt - * - */ - G; - - public String value() { - return name(); - } - - public static PaketUmfCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PersArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PersArtCdType.java deleted file mode 100644 index c9fe6f09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PersArtCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PersArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="N"/>
- *     <enumeration value="S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PersArtCd_Type") -@XmlEnum -public enum PersArtCdType { - - - /** - * natürliche Person - * - */ - N, - - /** - * sonstige Person - * - */ - S; - - public String value() { - return name(); - } - - public static PersArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PolArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PolArtCdType.java deleted file mode 100644 index 831475c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PolArtCdType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="N"/>
- *     <enumeration value="V"/>
- *     <enumeration value="X"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolArtCd_Type") -@XmlEnum -public enum PolArtCdType { - - - /** - * Ersatzpolizze bei Ersatz/Konv. - * - */ - E, - - /** - * Nachversicherung - * - */ - N, - - /** - * Vorpolizze bei Ersatz/Konv. - * - */ - V, - - /** - * Vorpolizze bei Migration - * - */ - X; - - public String value() { - return name(); - } - - public static PolArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PraemFristCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PraemFristCdType.java deleted file mode 100644 index c933f390..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/PraemFristCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PraemFristCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PraemFristCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="E"/>
- *     <enumeration value="J"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PraemFristCd_Type") -@XmlEnum -public enum PraemFristCdType { - - - /** - * Einmal - * - */ - E, - - /** - * Jahr - * - */ - J; - - public String value() { - return name(); - } - - public static PraemFristCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RISIKOType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RISIKOType.java deleted file mode 100644 index 1a9f0887..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RISIKOType.java +++ /dev/null @@ -1,343 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RISIKO_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RISIKO_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ObjLfnr1" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ObjLfnr2" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ObjLfnr3" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="RisikoArtCd" type="{urn:omds20}RisikoArtCd_Type" />
- *       <attribute name="RisikoBez" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemFristCd" use="required" type="{urn:omds20}PraemFristCd_Type" />
- *       <attribute name="PraemieNto" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RISIKO_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung" -}) -public class RISIKOType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlAttribute(name = "RisikoLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int risikoLfnr; - @XmlAttribute(name = "ObjLfnr1") - @XmlSchemaType(name = "unsignedShort") - protected Integer objLfnr1; - @XmlAttribute(name = "ObjLfnr2") - @XmlSchemaType(name = "unsignedShort") - protected Integer objLfnr2; - @XmlAttribute(name = "ObjLfnr3") - @XmlSchemaType(name = "unsignedShort") - protected Integer objLfnr3; - @XmlAttribute(name = "RisikoArtCd") - protected RisikoArtCdType risikoArtCd; - @XmlAttribute(name = "RisikoBez", required = true) - protected String risikoBez; - @XmlAttribute(name = "PraemFristCd", required = true) - protected PraemFristCdType praemFristCd; - @XmlAttribute(name = "PraemieNto") - protected BigDecimal praemieNto; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELVersicherungssummeType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Ruft den Wert der risikoLfnr-Eigenschaft ab. - * - */ - public int getRisikoLfnr() { - return risikoLfnr; - } - - /** - * Legt den Wert der risikoLfnr-Eigenschaft fest. - * - */ - public void setRisikoLfnr(int value) { - this.risikoLfnr = value; - } - - /** - * Ruft den Wert der objLfnr1-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getObjLfnr1() { - return objLfnr1; - } - - /** - * Legt den Wert der objLfnr1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setObjLfnr1(Integer value) { - this.objLfnr1 = value; - } - - /** - * Ruft den Wert der objLfnr2-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getObjLfnr2() { - return objLfnr2; - } - - /** - * Legt den Wert der objLfnr2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setObjLfnr2(Integer value) { - this.objLfnr2 = value; - } - - /** - * Ruft den Wert der objLfnr3-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getObjLfnr3() { - return objLfnr3; - } - - /** - * Legt den Wert der objLfnr3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setObjLfnr3(Integer value) { - this.objLfnr3 = value; - } - - /** - * Ruft den Wert der risikoArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoArtCdType } - * - */ - public RisikoArtCdType getRisikoArtCd() { - return risikoArtCd; - } - - /** - * Legt den Wert der risikoArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoArtCdType } - * - */ - public void setRisikoArtCd(RisikoArtCdType value) { - this.risikoArtCd = value; - } - - /** - * Ruft den Wert der risikoBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRisikoBez() { - return risikoBez; - } - - /** - * Legt den Wert der risikoBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRisikoBez(String value) { - this.risikoBez = value; - } - - /** - * Ruft den Wert der praemFristCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemFristCdType } - * - */ - public PraemFristCdType getPraemFristCd() { - return praemFristCd; - } - - /** - * Legt den Wert der praemFristCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemFristCdType } - * - */ - public void setPraemFristCd(PraemFristCdType value) { - this.praemFristCd = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RisikoArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RisikoArtCdType.java deleted file mode 100644 index cdc81d08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/RisikoArtCdType.java +++ /dev/null @@ -1,1093 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="RisikoArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AH1"/>
- *     <enumeration value="AK1"/>
- *     <enumeration value="AK2"/>
- *     <enumeration value="AS1"/>
- *     <enumeration value="AS2"/>
- *     <enumeration value="AS3"/>
- *     <enumeration value="AS4"/>
- *     <enumeration value="AU1"/>
- *     <enumeration value="AU2"/>
- *     <enumeration value="AU3"/>
- *     <enumeration value="AU4"/>
- *     <enumeration value="AU5"/>
- *     <enumeration value="AV1"/>
- *     <enumeration value="BA1"/>
- *     <enumeration value="BD1"/>
- *     <enumeration value="B01"/>
- *     <enumeration value="B02"/>
- *     <enumeration value="B03"/>
- *     <enumeration value="B04"/>
- *     <enumeration value="B05"/>
- *     <enumeration value="B06"/>
- *     <enumeration value="B11"/>
- *     <enumeration value="E01"/>
- *     <enumeration value="E02"/>
- *     <enumeration value="F01"/>
- *     <enumeration value="F02"/>
- *     <enumeration value="F03"/>
- *     <enumeration value="F04"/>
- *     <enumeration value="F05"/>
- *     <enumeration value="G01"/>
- *     <enumeration value="G02"/>
- *     <enumeration value="H01"/>
- *     <enumeration value="H02"/>
- *     <enumeration value="H03"/>
- *     <enumeration value="H04"/>
- *     <enumeration value="H05"/>
- *     <enumeration value="H06"/>
- *     <enumeration value="H07"/>
- *     <enumeration value="H08"/>
- *     <enumeration value="H99"/>
- *     <enumeration value="HH1"/>
- *     <enumeration value="K01"/>
- *     <enumeration value="K02"/>
- *     <enumeration value="K03"/>
- *     <enumeration value="K04"/>
- *     <enumeration value="K09"/>
- *     <enumeration value="K10"/>
- *     <enumeration value="K99"/>
- *     <enumeration value="L01"/>
- *     <enumeration value="L02"/>
- *     <enumeration value="L03"/>
- *     <enumeration value="L04"/>
- *     <enumeration value="L05"/>
- *     <enumeration value="L06"/>
- *     <enumeration value="L07"/>
- *     <enumeration value="L08"/>
- *     <enumeration value="L09"/>
- *     <enumeration value="L10"/>
- *     <enumeration value="L11"/>
- *     <enumeration value="L99"/>
- *     <enumeration value="LS1"/>
- *     <enumeration value="LW1"/>
- *     <enumeration value="M01"/>
- *     <enumeration value="M02"/>
- *     <enumeration value="M03"/>
- *     <enumeration value="M04"/>
- *     <enumeration value="M05"/>
- *     <enumeration value="M06"/>
- *     <enumeration value="R01"/>
- *     <enumeration value="R02"/>
- *     <enumeration value="R03"/>
- *     <enumeration value="R04"/>
- *     <enumeration value="R05"/>
- *     <enumeration value="R06"/>
- *     <enumeration value="R07"/>
- *     <enumeration value="R08"/>
- *     <enumeration value="R09"/>
- *     <enumeration value="R10"/>
- *     <enumeration value="R11"/>
- *     <enumeration value="R12"/>
- *     <enumeration value="R13"/>
- *     <enumeration value="R14"/>
- *     <enumeration value="R15"/>
- *     <enumeration value="R16"/>
- *     <enumeration value="R99"/>
- *     <enumeration value="RE1"/>
- *     <enumeration value="RE2"/>
- *     <enumeration value="RE3"/>
- *     <enumeration value="RE4"/>
- *     <enumeration value="S01"/>
- *     <enumeration value="S12"/>
- *     <enumeration value="S13"/>
- *     <enumeration value="S14"/>
- *     <enumeration value="S15"/>
- *     <enumeration value="S16"/>
- *     <enumeration value="S17"/>
- *     <enumeration value="S99"/>
- *     <enumeration value="ST1"/>
- *     <enumeration value="T01"/>
- *     <enumeration value="T02"/>
- *     <enumeration value="T03"/>
- *     <enumeration value="T04"/>
- *     <enumeration value="T05"/>
- *     <enumeration value="T06"/>
- *     <enumeration value="T07"/>
- *     <enumeration value="T08"/>
- *     <enumeration value="T09"/>
- *     <enumeration value="T11"/>
- *     <enumeration value="T12"/>
- *     <enumeration value="T13"/>
- *     <enumeration value="T20"/>
- *     <enumeration value="T21"/>
- *     <enumeration value="T22"/>
- *     <enumeration value="T23"/>
- *     <enumeration value="T99"/>
- *     <enumeration value="TI1"/>
- *     <enumeration value="U01"/>
- *     <enumeration value="U02"/>
- *     <enumeration value="U03"/>
- *     <enumeration value="U04"/>
- *     <enumeration value="U05"/>
- *     <enumeration value="U06"/>
- *     <enumeration value="U09"/>
- *     <enumeration value="U10"/>
- *     <enumeration value="U11"/>
- *     <enumeration value="U12"/>
- *     <enumeration value="U13"/>
- *     <enumeration value="U14"/>
- *     <enumeration value="U15"/>
- *     <enumeration value="U16"/>
- *     <enumeration value="U17"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoArtCd_Type") -@XmlEnum -public enum RisikoArtCdType { - - - /** - * KFZ-Haftpflicht - * - */ - @XmlEnumValue("AH1") - AH_1("AH1"), - - /** - * Voll- und Gross-Schadenkasko - * - */ - @XmlEnumValue("AK1") - AK_1("AK1"), - - /** - * Teilkasko - * - */ - @XmlEnumValue("AK2") - AK_2("AK2"), - - /** - * KFZ-Assistance - * - */ - @XmlEnumValue("AS1") - AS_1("AS1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("AS2") - AS_2("AS2"), - - /** - * Wohn-Assistance - * - */ - @XmlEnumValue("AS3") - AS_3("AS3"), - - /** - * Unfall-Assistance - * - */ - @XmlEnumValue("AS4") - AS_4("AS4"), - - /** - * Insassen-Unfall - * - */ - @XmlEnumValue("AU1") - AU_1("AU1"), - - /** - * Insassen-Unfall Todesfall - * - */ - @XmlEnumValue("AU2") - AU_2("AU2"), - - /** - * Insassen-Unfall Invalidität - * - */ - @XmlEnumValue("AU3") - AU_3("AU3"), - - /** - * Insassen-Unfall Taggeld - * - */ - @XmlEnumValue("AU4") - AU_4("AU4"), - - /** - * Insassen-Unfall Heilkosten - * - */ - @XmlEnumValue("AU5") - AU_5("AU5"), - - /** - * Abfertigungs-Versicherung - * - */ - @XmlEnumValue("AV1") - AV_1("AV1"), - - /** - * Bausparen Ansparen - * - */ - @XmlEnumValue("BA1") - BA_1("BA1"), - - /** - * Bausparen Darlehen - * - */ - @XmlEnumValue("BD1") - BD_1("BD1"), - - /** - * Betr.Unterbrechung-Feuer-Zivil - * - */ - @XmlEnumValue("B01") - B_01("B01"), - - /** - * Betr.Unterbrechung Feuer-Industrie - * - */ - @XmlEnumValue("B02") - B_02("B02"), - - /** - * Betr.Unterbrechung-EC - * - */ - @XmlEnumValue("B03") - B_03("B03"), - - /** - * Betr.Unterbrechung-Maschinenbruch - * - */ - @XmlEnumValue("B04") - B_04("B04"), - - /** - * Betr.Unterbrechung-Elementarschaden - * - */ - @XmlEnumValue("B05") - B_05("B05"), - - /** - * Betr.Unterbrechung f.freiber. Tätige - * - */ - @XmlEnumValue("B06") - B_06("B06"), - - /** - * Veranstaltungen - * - */ - @XmlEnumValue("B11") - B_11("B11"), - - /** - * Einbruch-Diebstahl - * - */ - @XmlEnumValue("E01") - E_01("E01"), - - /** - * Kassenboten - * - */ - @XmlEnumValue("E02") - E_02("E02"), - - /** - * Feuer-Zivil - * - */ - @XmlEnumValue("F01") - F_01("F01"), - - /** - * Feuer-Landwirtschaft - * - */ - @XmlEnumValue("F02") - F_02("F02"), - - /** - * Feuer-Industrie - * - */ - @XmlEnumValue("F03") - F_03("F03"), - - /** - * Feuer-EC - * - */ - @XmlEnumValue("F04") - F_04("F04"), - - /** - * Waldbrand - * - */ - @XmlEnumValue("F05") - F_05("F05"), - - /** - * Glasbruch privat - * - */ - @XmlEnumValue("G01") - G_01("G01"), - - /** - * Glasbruch Geschäft - * - */ - @XmlEnumValue("G02") - G_02("G02"), - - /** - * Allg.Haftpflicht - * - */ - @XmlEnumValue("H01") - H_01("H01"), - - /** - * Sonder-Haftpflicht - * - */ - @XmlEnumValue("H02") - H_02("H02"), - - /** - * Flug-Haftpflicht - * - */ - @XmlEnumValue("H03") - H_03("H03"), - - /** - * Vermögensschaden - * - */ - @XmlEnumValue("H04") - H_04("H04"), - - /** - * Atom-Haftpflicht - * - */ - @XmlEnumValue("H05") - H_05("H05"), - - /** - * Verkehrs-Haftpflicht - * - */ - @XmlEnumValue("H06") - H_06("H06"), - - /** - * Bauherrn-Haftpflicht - * - */ - @XmlEnumValue("H07") - H_07("H07"), - - /** - * Boots-Haftpflicht - * - */ - @XmlEnumValue("H08") - H_08("H08"), - - /** - * Sonstige Haftpflicht - * - */ - @XmlEnumValue("H99") - H_99("H99"), - - /** - * Haushalt - * - */ - @XmlEnumValue("HH1") - HH_1("HH1"), - - /** - * Spital - * - */ - @XmlEnumValue("K01") - K_01("K01"), - - /** - * Ambulanz - * - */ - @XmlEnumValue("K02") - K_02("K02"), - - /** - * Heilmittel - * - */ - @XmlEnumValue("K03") - K_03("K03"), - - /** - * Taggeld - * - */ - @XmlEnumValue("K04") - K_04("K04"), - - /** - * Reise-KV - * - */ - @XmlEnumValue("K09") - K_09("K09"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("K10") - K_10("K10"), - - /** - * KV sonstige - * - */ - @XmlEnumValue("K99") - K_99("K99"), - - /** - * Leben Kapital - * - */ - @XmlEnumValue("L01") - L_01("L01"), - - /** - * Leben Risiko - * - */ - @XmlEnumValue("L02") - L_02("L02"), - - /** - * Leben Rente - * - */ - @XmlEnumValue("L03") - L_03("L03"), - - /** - * Leben Dread Disease - * - */ - @XmlEnumValue("L04") - L_04("L04"), - - /** - * Leben veranlagungsorientiert - * - */ - @XmlEnumValue("L05") - L_05("L05"), - - /** - * Leben Kreditrestschuld - * - */ - @XmlEnumValue("L06") - L_06("L06"), - - /** - * Leben prämiengefördert - * - */ - @XmlEnumValue("L07") - L_07("L07"), - - /** - * Leben fondgebunden - * - */ - @XmlEnumValue("L08") - L_08("L08"), - - /** - * Berufsunfähigkeit - * - */ - @XmlEnumValue("L09") - L_09("L09"), - - /** - * Erwerbsunfähigkeit - * - */ - @XmlEnumValue("L10") - L_10("L10"), - - /** - * Pflegegeld - * - */ - @XmlEnumValue("L11") - L_11("L11"), - - /** - * Leben sonstige - * - */ - @XmlEnumValue("L99") - L_99("L99"), - - /** - * Leasing - * - */ - @XmlEnumValue("LS1") - LS_1("LS1"), - - /** - * Leitungswasser - * - */ - @XmlEnumValue("LW1") - LW_1("LW1"), - - /** - * Maschinenbruch - * - */ - @XmlEnumValue("M01") - M_01("M01"), - - /** - * Maschinen-Montage - * - */ - @XmlEnumValue("M02") - M_02("M02"), - - /** - * Maschinen-Garantie - * - */ - @XmlEnumValue("M03") - M_03("M03"), - - /** - * Elektrogeräte - * - */ - @XmlEnumValue("M04") - M_04("M04"), - - /** - * Computer-Vers. - * - */ - @XmlEnumValue("M05") - M_05("M05"), - - /** - * Tiefkühltruhen - * - */ - @XmlEnumValue("M06") - M_06("M06"), - - /** - * Privat Rechtschutz - * - */ - @XmlEnumValue("R01") - R_01("R01"), - - /** - * Kfz-Rechtschutz - * - */ - @XmlEnumValue("R02") - R_02("R02"), - - /** - * Firmen-Rechtschutz - * - */ - @XmlEnumValue("R03") - R_03("R03"), - - /** - * Schadenersatz- und Strafrechtsschutz - * - */ - @XmlEnumValue("R04") - R_04("R04"), - - /** - * Arbeitsgerichtsrechtsschutz - * - */ - @XmlEnumValue("R05") - R_05("R05"), - - /** - * Sozialversicherungsrechtsschutz - * - */ - @XmlEnumValue("R06") - R_06("R06"), - - /** - * Beratungsrechtsschutz - * - */ - @XmlEnumValue("R07") - R_07("R07"), - - /** - * Allgemeiner Vertragsrechtsschutz - * - */ - @XmlEnumValue("R08") - R_08("R08"), - - /** - * Grundstückseigentum- und Mietenrechtsschutz - * - */ - @XmlEnumValue("R09") - R_09("R09"), - - /** - * Erb- und Familienrechtsschutz - * - */ - @XmlEnumValue("R10") - R_10("R10"), - - /** - * Disziplinarverfahren - * - */ - @XmlEnumValue("R11") - R_11("R11"), - - /** - * Disziplinarverfahren für angestellte Ärzte - * - */ - @XmlEnumValue("R12") - R_12("R12"), - - /** - * Vorsatzdelikte - * - */ - @XmlEnumValue("R13") - R_13("R13"), - - /** - * Fahrzeugrechtsschutz - * - */ - @XmlEnumValue("R14") - R_14("R14"), - - /** - * Lenkerrechtsschutz - * - */ - @XmlEnumValue("R15") - R_15("R15"), - - /** - * Fahrzeugvertragsrechtsschutz - * - */ - @XmlEnumValue("R16") - R_16("R16"), - - /** - * Sonstiger Rechtsschutz - * - */ - @XmlEnumValue("R99") - R_99("R99"), - - /** - * Reise-Storno - * - */ - @XmlEnumValue("RE1") - RE_1("RE1"), - - /** - * Reise-Assistance - * - */ - @XmlEnumValue("RE2") - RE_2("RE2"), - - /** - * Reise-Kranken - * - */ - @XmlEnumValue("RE3") - RE_3("RE3"), - - /** - * Reise-Unfall - * - */ - @XmlEnumValue("RE4") - RE_4("RE4"), - - /** - * Kühlgut - * - */ - @XmlEnumValue("S01") - S_01("S01"), - - /** - * Lizenzverlust - * - */ - @XmlEnumValue("S12") - S_12("S12"), - - /** - * Atom-Sach - * - */ - @XmlEnumValue("S13") - S_13("S13"), - - /** - * Bauwesen - * - */ - @XmlEnumValue("S14") - S_14("S14"), - - /** - * Flugkasko - * - */ - @XmlEnumValue("S15") - S_15("S15"), - - /** - * Bootskasko - * - */ - @XmlEnumValue("S16") - S_16("S16"), - - /** - * Grabstätten - * - */ - @XmlEnumValue("S17") - S_17("S17"), - - /** - * sonstige SV - * - */ - @XmlEnumValue("S99") - S_99("S99"), - - /** - * Sturm - * - */ - @XmlEnumValue("ST1") - ST_1("ST1"), - - /** - * Land-Binnenwaren - * - */ - @XmlEnumValue("T01") - T_01("T01"), - - /** - * See - * - */ - @XmlEnumValue("T02") - T_02("T02"), - - /** - * Krieg - * - */ - @XmlEnumValue("T03") - T_03("T03"), - - /** - * Lager - * - */ - @XmlEnumValue("T04") - T_04("T04"), - - /** - * Valoren-Gewerblich - * - */ - @XmlEnumValue("T05") - T_05("T05"), - - /** - * Valoren-Privat - * - */ - @XmlEnumValue("T06") - T_06("T06"), - - /** - * Sportboot-Kasko - * - */ - @XmlEnumValue("T07") - T_07("T07"), - - /** - * Musik-Instrumente - * - */ - @XmlEnumValue("T08") - T_08("T08"), - - /** - * Kunst - * - */ - @XmlEnumValue("T09") - T_09("T09"), - - /** - * Seekasko - * - */ - @XmlEnumValue("T11") - T_11("T11"), - - /** - * Flusskasko - * - */ - @XmlEnumValue("T12") - T_12("T12"), - - /** - * Landkasko - * - */ - @XmlEnumValue("T13") - T_13("T13"), - - /** - * Reisegepäck - * - */ - @XmlEnumValue("T20") - T_20("T20"), - - /** - * Fotoapparate - * - */ - @XmlEnumValue("T21") - T_21("T21"), - - /** - * Film/Sach - * - */ - @XmlEnumValue("T22") - T_22("T22"), - - /** - * Film/Ausfall - * - */ - @XmlEnumValue("T23") - T_23("T23"), - - /** - * Sonstige Transport - * - */ - @XmlEnumValue("T99") - T_99("T99"), - - /** - * Tier - * - */ - @XmlEnumValue("TI1") - TI_1("TI1"), - - /** - * Allg.Unfall - * - */ - @XmlEnumValue("U01") - U_01("U01"), - - /** - * Kollektiv Unfall - * - */ - @XmlEnumValue("U02") - U_02("U02"), - - /** - * Schülerunfall - * - */ - @XmlEnumValue("U03") - U_03("U03"), - - /** - * Volksunfall - * - */ - @XmlEnumValue("U04") - U_04("U04"), - - /** - * Flug-Unfall - * - */ - @XmlEnumValue("U05") - U_05("U05"), - - /** - * Boots-Unfall - * - */ - @XmlEnumValue("U06") - U_06("U06"), - - /** - * Besucher-Unfall - * - */ - @XmlEnumValue("U09") - U_09("U09"), - - /** - * Unfall mit Kapitalrückgewähr - * - */ - @XmlEnumValue("U10") - U_10("U10"), - - /** - * Taggeld - * - */ - @XmlEnumValue("U11") - U_11("U11"), - - /** - * Invalidität - * - */ - @XmlEnumValue("U12") - U_12("U12"), - - /** - * Unfallrente - * - */ - @XmlEnumValue("U13") - U_13("U13"), - - /** - * Unfalltod - * - */ - @XmlEnumValue("U14") - U_14("U14"), - - /** - * Spitalgeld - * - */ - @XmlEnumValue("U15") - U_15("U15"), - - /** - * Unfallkosten - * - */ - @XmlEnumValue("U16") - U_16("U16"), - - /** - * Kostenersatz - * - */ - @XmlEnumValue("U17") - U_17("U17"); - private final String value; - - RisikoArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoArtCdType fromValue(String v) { - for (RisikoArtCdType c: RisikoArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENBETEILIGTERType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENBETEILIGTERType.java deleted file mode 100644 index fe03454d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENBETEILIGTERType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SCHADEN_BETEILIGTER_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_BETEILIGTER_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = { - "geschaedigtesobjekt", - "zahlung" -}) -public class SCHADENBETEILIGTERType { - - @XmlElement(name = "GESCHAEDIGTES_OBJEKT") - protected List geschaedigtesobjekt; - @XmlElement(name = "ZAHLUNG") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "Personennr") - protected String personennr; - @XmlAttribute(name = "BetRolleCd", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt") - protected String betTxt; - - /** - * Gets the value of the geschaedigtesobjekt property. - * - *

- * 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 set method for the geschaedigtesobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGESCHAEDIGTESOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GESCHAEDIGTESOBJEKTType } - * - * - */ - public List getGESCHAEDIGTESOBJEKT() { - if (geschaedigtesobjekt == null) { - geschaedigtesobjekt = new ArrayList(); - } - return this.geschaedigtesobjekt; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZAHLUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENType.java deleted file mode 100644 index e4dbf48d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHADENType.java +++ /dev/null @@ -1,602 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SCHADEN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SCHADEN_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
- *       <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
- *       <attribute name="SchadUrsTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
- *       <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
- *       <attribute name="ErledDat" type="{urn:omds20}Datum" />
- *       <attribute name="SachbearbVU">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SCHADEN_Type", propOrder = { - "elAnzahlOrELBetragOrELEinstufung", - "schadenbeteiligter" -}) -public class SCHADENType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlElement(name = "SCHADEN_BETEILIGTER") - protected List schadenbeteiligter; - @XmlAttribute(name = "Schadennr", required = true) - protected String schadennr; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr") - protected String vermnr; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "Ereigniszpkt", required = true) - protected XMLGregorianCalendar ereigniszpkt; - @XmlAttribute(name = "Meldedat", required = true) - protected XMLGregorianCalendar meldedat; - @XmlAttribute(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlAttribute(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlAttribute(name = "VerschuldenCd") - protected String verschuldenCd; - @XmlAttribute(name = "MalusWirksamKz") - protected Entsch2Type malusWirksamKz; - @XmlAttribute(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlAttribute(name = "ErledDat") - protected XMLGregorianCalendar erledDat; - @XmlAttribute(name = "SachbearbVU") - protected String sachbearbVU; - @XmlAttribute(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELPolizzennummerType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Gets the value of the schadenbeteiligter property. - * - *

- * 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 set method for the schadenbeteiligter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHADENBETEILIGTER().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHADENBETEILIGTERType } - * - * - */ - public List getSCHADENBETEILIGTER() { - if (schadenbeteiligter == null) { - schadenbeteiligter = new ArrayList(); - } - return this.schadenbeteiligter; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - - /** - * Ruft den Wert der malusWirksamKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getMalusWirksamKz() { - return malusWirksamKz; - } - - /** - * Legt den Wert der malusWirksamKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setMalusWirksamKz(Entsch2Type value) { - this.malusWirksamKz = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSachbearbVU(String value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSEL.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSEL.java deleted file mode 100644 index 3bbba62b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSEL.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="SchlWert" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Schlbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="50"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SchlWert_generell">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SCHLUESSEL") -public class SCHLUESSEL { - - @XmlAttribute(name = "SchlWert", required = true) - protected String schlWert; - @XmlAttribute(name = "Schlbez") - protected String schlbez; - @XmlAttribute(name = "SchlWert_generell") - protected String schlWertGenerell; - - /** - * Ruft den Wert der schlWert-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWert() { - return schlWert; - } - - /** - * Legt den Wert der schlWert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWert(String value) { - this.schlWert = value; - } - - /** - * Ruft den Wert der schlbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlbez() { - return schlbez; - } - - /** - * Legt den Wert der schlbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlbez(String value) { - this.schlbez = value; - } - - /** - * Ruft den Wert der schlWertGenerell-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlWertGenerell() { - return schlWertGenerell; - } - - /** - * Legt den Wert der schlWertGenerell-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlWertGenerell(String value) { - this.schlWertGenerell = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSELART.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSELART.java deleted file mode 100644 index 97e28d9b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SCHLUESSELART.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element ref="{urn:omds20}SCHLUESSEL"/>
- *       </sequence>
- *       <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
- *       <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="SchlArtBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "schluessel" -}) -@XmlRootElement(name = "SCHLUESSELART") -public class SCHLUESSELART { - - @XmlElement(name = "SCHLUESSEL", required = true) - protected List schluessel; - @XmlAttribute(name = "SchlArtCd", required = true) - protected SchlArtCdType schlArtCd; - @XmlAttribute(name = "VUWertErlaubtKz", required = true) - protected Entsch2Type vuWertErlaubtKz; - @XmlAttribute(name = "SchlArtBez") - protected String schlArtBez; - - /** - * Gets the value of the schluessel property. - * - *

- * 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 set method for the schluessel property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSCHLUESSEL().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SCHLUESSEL } - * - * - */ - public List getSCHLUESSEL() { - if (schluessel == null) { - schluessel = new ArrayList(); - } - return this.schluessel; - } - - /** - * Ruft den Wert der schlArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchlArtCdType } - * - */ - public SchlArtCdType getSchlArtCd() { - return schlArtCd; - } - - /** - * Legt den Wert der schlArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchlArtCdType } - * - */ - public void setSchlArtCd(SchlArtCdType value) { - this.schlArtCd = value; - } - - /** - * Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getVUWertErlaubtKz() { - return vuWertErlaubtKz; - } - - /** - * Legt den Wert der vuWertErlaubtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setVUWertErlaubtKz(Entsch2Type value) { - this.vuWertErlaubtKz = value; - } - - /** - * Ruft den Wert der schlArtBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchlArtBez() { - return schlArtBez; - } - - /** - * Legt den Wert der schlArtBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchlArtBez(String value) { - this.schlArtBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SONSTIGEPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SONSTIGEPERSONType.java deleted file mode 100644 index e07a0c71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SONSTIGEPERSONType.java +++ /dev/null @@ -1,124 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SONSTIGE_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SONSTIGE_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Name" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="120"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kurzname">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SONSTIGE_PERSON_Type") -public class SONSTIGEPERSONType { - - @XmlAttribute(name = "Name", required = true) - protected String name; - @XmlAttribute(name = "Kurzname") - protected String kurzname; - @XmlAttribute(name = "SonstPersArtCd", required = true) - protected String sonstPersArtCd; - - /** - * 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 kurzname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKurzname() { - return kurzname; - } - - /** - * Legt den Wert der kurzname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKurzname(String value) { - this.kurzname = value; - } - - /** - * Ruft den Wert der sonstPersArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSonstPersArtCd() { - return sonstPersArtCd; - } - - /** - * Legt den Wert der sonstPersArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSonstPersArtCd(String value) { - this.sonstPersArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SPARTEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SPARTEType.java deleted file mode 100644 index c92660c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SPARTEType.java +++ /dev/null @@ -1,528 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für SPARTE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SPARTE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Index"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rente"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Steuer"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *           <element ref="{urn:omds20}EL-Zeitraum"/>
- *         </choice>
- *         <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
- *       <attribute name="SpartenErweiterung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="10"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenID">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
- *       <attribute name="Spartentxt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="80"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
- *       <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
- *       <attribute name="HauptTarifBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="25"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SPARTE_Type", propOrder = { - "elAnzahlOrELBetragOrELBezugsberechtigung", - "risiko" -}) -public class SPARTEType { - - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Index", type = ELIndexType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rente", type = ELRenteType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Steuer", type = ELSteuerType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class), - @XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class) - }) - protected List elAnzahlOrELBetragOrELBezugsberechtigung; - @XmlElement(name = "RISIKO", required = true) - protected List risiko; - @XmlAttribute(name = "SpartenCd", required = true) - protected String spartenCd; - @XmlAttribute(name = "SpartenErweiterung", required = true) - protected String spartenErweiterung; - @XmlAttribute(name = "SpartenID") - protected String spartenID; - @XmlAttribute(name = "VerbandSparteCd", required = true) - protected String verbandSparteCd; - @XmlAttribute(name = "Spartentxt", required = true) - protected String spartentxt; - @XmlAttribute(name = "SpartenBeg") - protected XMLGregorianCalendar spartenBeg; - @XmlAttribute(name = "SpartenEnd") - protected XMLGregorianCalendar spartenEnd; - @XmlAttribute(name = "HauptTarifBez") - protected String hauptTarifBez; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @XmlAttribute(name = "DirBeteiligtKz") - protected String dirBeteiligtKz; - @XmlAttribute(name = "SondervereinbarungKz") - protected String sondervereinbarungKz; - @XmlAttribute(name = "PraemieNtoSp", required = true) - protected BigDecimal praemieNtoSp; - @XmlAttribute(name = "PraemieBtoSp", required = true) - protected BigDecimal praemieBtoSp; - - /** - * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELBezugsberechtigung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELGewinnbeteiligungType } - * {@link ELGrenzwertType } - * {@link ELIndexType } - * {@link ELKlauselType } - * {@link ELPraemienkorrekturType } - * {@link ELRenteType } - * {@link ELSelbstbehalt } - * {@link ELSteuerType } - * {@link ELTextType } - * {@link ELZeitraumType } - * - * - */ - public List getELAnzahlOrELBetragOrELBezugsberechtigung() { - if (elAnzahlOrELBetragOrELBezugsberechtigung == null) { - elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELBezugsberechtigung; - } - - /** - * Gets the value of the risiko property. - * - *

- * 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 set method for the risiko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRISIKO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RISIKOType } - * - * - */ - public List getRISIKO() { - if (risiko == null) { - risiko = new ArrayList(); - } - return this.risiko; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenErweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenErweiterung() { - return spartenErweiterung; - } - - /** - * Legt den Wert der spartenErweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenErweiterung(String value) { - this.spartenErweiterung = value; - } - - /** - * Ruft den Wert der spartenID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenID() { - return spartenID; - } - - /** - * Legt den Wert der spartenID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenID(String value) { - this.spartenID = value; - } - - /** - * Ruft den Wert der verbandSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbandSparteCd() { - return verbandSparteCd; - } - - /** - * Legt den Wert der verbandSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbandSparteCd(String value) { - this.verbandSparteCd = value; - } - - /** - * Ruft den Wert der spartentxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartentxt() { - return spartentxt; - } - - /** - * Legt den Wert der spartentxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartentxt(String value) { - this.spartentxt = value; - } - - /** - * Ruft den Wert der spartenBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenBeg() { - return spartenBeg; - } - - /** - * Legt den Wert der spartenBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenBeg(XMLGregorianCalendar value) { - this.spartenBeg = value; - } - - /** - * Ruft den Wert der spartenEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSpartenEnd() { - return spartenEnd; - } - - /** - * Legt den Wert der spartenEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSpartenEnd(XMLGregorianCalendar value) { - this.spartenEnd = value; - } - - /** - * Ruft den Wert der hauptTarifBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHauptTarifBez() { - return hauptTarifBez; - } - - /** - * Legt den Wert der hauptTarifBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHauptTarifBez(String value) { - this.hauptTarifBez = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der dirBeteiligtKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirBeteiligtKz() { - return dirBeteiligtKz; - } - - /** - * Legt den Wert der dirBeteiligtKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirBeteiligtKz(String value) { - this.dirBeteiligtKz = value; - } - - /** - * Ruft den Wert der sondervereinbarungKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSondervereinbarungKz() { - return sondervereinbarungKz; - } - - /** - * Legt den Wert der sondervereinbarungKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSondervereinbarungKz(String value) { - this.sondervereinbarungKz = value; - } - - /** - * Ruft den Wert der praemieNtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoSp() { - return praemieNtoSp; - } - - /** - * Legt den Wert der praemieNtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoSp(BigDecimal value) { - this.praemieNtoSp = value; - } - - /** - * Ruft den Wert der praemieBtoSp-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoSp() { - return praemieBtoSp; - } - - /** - * Legt den Wert der praemieBtoSp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoSp(BigDecimal value) { - this.praemieBtoSp = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SbhArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SbhArtCdType.java deleted file mode 100644 index 5a95d44f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SbhArtCdType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SbhArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SbhArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MIS"/>
- *     <enumeration value="MXK"/>
- *     <enumeration value="MXS"/>
- *     <enumeration value="STS"/>
- *     <enumeration value="SSO"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SbhArtCd_Type") -@XmlEnum -public enum SbhArtCdType { - - - /** - * Mindestselbstbehalt je Schadenfall - * - */ - MIS, - - /** - * Maximalselbstbehalt kumuliert - * - */ - MXK, - - /** - * Maximalselbstbehalt je Schadenfall - * - */ - MXS, - - /** - * Standardselbstbehalt je Schadenfall - * - */ - STS, - - /** - * Selbstbehalt sonst - * - */ - SSO; - - public String value() { - return name(); - } - - public static SbhArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SchlArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SchlArtCdType.java deleted file mode 100644 index 81f81712..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/SchlArtCdType.java +++ /dev/null @@ -1,511 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchlArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchlArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <minLength value="1"/>
- *     <maxLength value="25"/>
- *     <enumeration value="AendGrundCd"/>
- *     <enumeration value="AntriebsArtCd"/>
- *     <enumeration value="AusstattungCd"/>
- *     <enumeration value="BauartCd"/>
- *     <enumeration value="BBArtCd"/>
- *     <enumeration value="BearbStandCd"/>
- *     <enumeration value="BetragArtCd"/>
- *     <enumeration value="BetRolleCd"/>
- *     <enumeration value="DachungCd"/>
- *     <enumeration value="EFrageCd"/>
- *     <enumeration value="EstArtCd"/>
- *     <enumeration value="FamilienstandCd"/>
- *     <enumeration value="FzgArtCd"/>
- *     <enumeration value="GebaeudeArtCd"/>
- *     <enumeration value="GebaeudeHoeheCd"/>
- *     <enumeration value="GeschlechtCd"/>
- *     <enumeration value="GrundRuecklaufCd"/>
- *     <enumeration value="GrwArtCd"/>
- *     <enumeration value="IdfArtCd"/>
- *     <enumeration value="IndexArtCd"/>
- *     <enumeration value="KomArtCd"/>
- *     <enumeration value="LandesCd"/>
- *     <enumeration value="LegArtCd"/>
- *     <enumeration value="LoeschCd"/>
- *     <enumeration value="NutzungCd"/>
- *     <enumeration value="ObjektdatenCd"/>
- *     <enumeration value="PaketInhCd"/>
- *     <enumeration value="PaketUmfCd"/>
- *     <enumeration value="PersArtCd"/>
- *     <enumeration value="PfrArtCd"/>
- *     <enumeration value="PolArtCd"/>
- *     <enumeration value="PraemFristCd"/>
- *     <enumeration value="PraemKorrArtCd"/>
- *     <enumeration value="ProvArtCd"/>
- *     <enumeration value="RisikoArtCd"/>
- *     <enumeration value="RntRhythmCd"/>
- *     <enumeration value="SbhArtCd"/>
- *     <enumeration value="SchadUrsCd"/>
- *     <enumeration value="SonstPersArtCd"/>
- *     <enumeration value="SpartenCd"/>
- *     <enumeration value="StArtCd"/>
- *     <enumeration value="TxtArtCd"/>
- *     <enumeration value="VSArtCd"/>
- *     <enumeration value="VerbandSparteCd"/>
- *     <enumeration value="VersSacheCd"/>
- *     <enumeration value="VerschuldenCd"/>
- *     <enumeration value="VerwendzweckCd"/>
- *     <enumeration value="VtgProdCd"/>
- *     <enumeration value="VtgRolleCd"/>
- *     <enumeration value="VtgSparteCd"/>
- *     <enumeration value="VtgStatusCd"/>
- *     <enumeration value="WaehrungsCd"/>
- *     <enumeration value="ZRArtCd"/>
- *     <enumeration value="ZahlGrundCd"/>
- *     <enumeration value="ZahlRhythmCd"/>
- *     <enumeration value="ZahlWegCd"/>
- *     <enumeration value="MahnStufeCd"/>
- *     <enumeration value="RueckGrundCd"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchlArtCd_Type") -@XmlEnum -public enum SchlArtCdType { - - - /** - * Änderungsgrund - * - */ - @XmlEnumValue("AendGrundCd") - AEND_GRUND_CD("AendGrundCd"), - - /** - * Antriebsart - * - */ - @XmlEnumValue("AntriebsArtCd") - ANTRIEBS_ART_CD("AntriebsArtCd"), - - /** - * Ausstattung - * - */ - @XmlEnumValue("AusstattungCd") - AUSSTATTUNG_CD("AusstattungCd"), - - /** - * Bauart - * - */ - @XmlEnumValue("BauartCd") - BAUART_CD("BauartCd"), - - /** - * Bezugsberechtigungsart - * - */ - @XmlEnumValue("BBArtCd") - BB_ART_CD("BBArtCd"), - - /** - * Bearbeitungsstand - * - */ - @XmlEnumValue("BearbStandCd") - BEARB_STAND_CD("BearbStandCd"), - - /** - * Betragsart - * - */ - @XmlEnumValue("BetragArtCd") - BETRAG_ART_CD("BetragArtCd"), - - /** - * Beteiligungsrolle - * - */ - @XmlEnumValue("BetRolleCd") - BET_ROLLE_CD("BetRolleCd"), - - /** - * Dachung - * - */ - @XmlEnumValue("DachungCd") - DACHUNG_CD("DachungCd"), - - /** - * Entscheidungsfrage - * - */ - @XmlEnumValue("EFrageCd") - E_FRAGE_CD("EFrageCd"), - - /** - * Einstufungsart - * - */ - @XmlEnumValue("EstArtCd") - EST_ART_CD("EstArtCd"), - - /** - * Familienstand - * - */ - @XmlEnumValue("FamilienstandCd") - FAMILIENSTAND_CD("FamilienstandCd"), - - /** - * Fahrzeugart - * - */ - @XmlEnumValue("FzgArtCd") - FZG_ART_CD("FzgArtCd"), - - /** - * Art des Gebäudes - * - */ - @XmlEnumValue("GebaeudeArtCd") - GEBAEUDE_ART_CD("GebaeudeArtCd"), - - /** - * Gebäudehöhe - * - */ - @XmlEnumValue("GebaeudeHoeheCd") - GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"), - - /** - * Geschlecht - * - */ - @XmlEnumValue("GeschlechtCd") - GESCHLECHT_CD("GeschlechtCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("GrundRuecklaufCd") - GRUND_RUECKLAUF_CD("GrundRuecklaufCd"), - - /** - * Grenzwertart - * - */ - @XmlEnumValue("GrwArtCd") - GRW_ART_CD("GrwArtCd"), - - /** - * Identifizierungsart - * - */ - @XmlEnumValue("IdfArtCd") - IDF_ART_CD("IdfArtCd"), - - /** - * Indexart - * - */ - @XmlEnumValue("IndexArtCd") - INDEX_ART_CD("IndexArtCd"), - - /** - * KommunikationsArt - * - */ - @XmlEnumValue("KomArtCd") - KOM_ART_CD("KomArtCd"), - - /** - * Internat. KFZ-Kennzeichen - * - */ - @XmlEnumValue("LandesCd") - LANDES_CD("LandesCd"), - - /** - * Legitimierungsart - * - */ - @XmlEnumValue("LegArtCd") - LEG_ART_CD("LegArtCd"), - - /** - * Löschungsarten - * - */ - @XmlEnumValue("LoeschCd") - LOESCH_CD("LoeschCd"), - - /** - * Nutzung - * - */ - @XmlEnumValue("NutzungCd") - NUTZUNG_CD("NutzungCd"), - - /** - * Objektdatenart - * - */ - @XmlEnumValue("ObjektdatenCd") - OBJEKTDATEN_CD("ObjektdatenCd"), - - /** - * Paketinhalt - * - */ - @XmlEnumValue("PaketInhCd") - PAKET_INH_CD("PaketInhCd"), - - /** - * Paketumfang - * - */ - @XmlEnumValue("PaketUmfCd") - PAKET_UMF_CD("PaketUmfCd"), - - /** - * Personenart - * - */ - @XmlEnumValue("PersArtCd") - PERS_ART_CD("PersArtCd"), - - /** - * Prämienfreiart - * - */ - @XmlEnumValue("PfrArtCd") - PFR_ART_CD("PfrArtCd"), - - /** - * Polizzenart - * - */ - @XmlEnumValue("PolArtCd") - POL_ART_CD("PolArtCd"), - - /** - * Prämienfrist - * - */ - @XmlEnumValue("PraemFristCd") - PRAEM_FRIST_CD("PraemFristCd"), - - /** - * Prämienkorrekturart - * - */ - @XmlEnumValue("PraemKorrArtCd") - PRAEM_KORR_ART_CD("PraemKorrArtCd"), - - /** - * Provisionsart - * - */ - @XmlEnumValue("ProvArtCd") - PROV_ART_CD("ProvArtCd"), - - /** - * Risikoart - * - */ - @XmlEnumValue("RisikoArtCd") - RISIKO_ART_CD("RisikoArtCd"), - - /** - * Rentenzahlungsrhythmus - * - */ - @XmlEnumValue("RntRhythmCd") - RNT_RHYTHM_CD("RntRhythmCd"), - - /** - * Selbstbehaltart - * - */ - @XmlEnumValue("SbhArtCd") - SBH_ART_CD("SbhArtCd"), - - /** - * Schadenursache - * - */ - @XmlEnumValue("SchadUrsCd") - SCHAD_URS_CD("SchadUrsCd"), - - /** - * Art der sonstigen Person - * - */ - @XmlEnumValue("SonstPersArtCd") - SONST_PERS_ART_CD("SonstPersArtCd"), - - /** - * Sparte - * - */ - @XmlEnumValue("SpartenCd") - SPARTEN_CD("SpartenCd"), - - /** - * Steuerart - * - */ - @XmlEnumValue("StArtCd") - ST_ART_CD("StArtCd"), - - /** - * Textart - * - */ - @XmlEnumValue("TxtArtCd") - TXT_ART_CD("TxtArtCd"), - - /** - * Versicherungssummenart - * - */ - @XmlEnumValue("VSArtCd") - VS_ART_CD("VSArtCd"), - - /** - * Verbandssparte - * - */ - @XmlEnumValue("VerbandSparteCd") - VERBAND_SPARTE_CD("VerbandSparteCd"), - - /** - * Versicherte Sache - * - */ - @XmlEnumValue("VersSacheCd") - VERS_SACHE_CD("VersSacheCd"), - - /** - * Verschulden - * - */ - @XmlEnumValue("VerschuldenCd") - VERSCHULDEN_CD("VerschuldenCd"), - - /** - * Verwendungszweck - * - */ - @XmlEnumValue("VerwendzweckCd") - VERWENDZWECK_CD("VerwendzweckCd"), - - /** - * Vertragsprodukt - * - */ - @XmlEnumValue("VtgProdCd") - VTG_PROD_CD("VtgProdCd"), - - /** - * Vertragsrolle - * - */ - @XmlEnumValue("VtgRolleCd") - VTG_ROLLE_CD("VtgRolleCd"), - - /** - * Vertragssparte - * - */ - @XmlEnumValue("VtgSparteCd") - VTG_SPARTE_CD("VtgSparteCd"), - - /** - * Vertragsstatus - * - */ - @XmlEnumValue("VtgStatusCd") - VTG_STATUS_CD("VtgStatusCd"), - - /** - * Währung - * - */ - @XmlEnumValue("WaehrungsCd") - WAEHRUNGS_CD("WaehrungsCd"), - - /** - * Art des Zeitraumes - * - */ - @XmlEnumValue("ZRArtCd") - ZR_ART_CD("ZRArtCd"), - - /** - * Zahlungsgrund - * - */ - @XmlEnumValue("ZahlGrundCd") - ZAHL_GRUND_CD("ZahlGrundCd"), - - /** - * Zahlungsrhythmus - * - */ - @XmlEnumValue("ZahlRhythmCd") - ZAHL_RHYTHM_CD("ZahlRhythmCd"), - - /** - * Zahlungsweg - * - */ - @XmlEnumValue("ZahlWegCd") - ZAHL_WEG_CD("ZahlWegCd"), - - /** - * MahnStufe - * - */ - @XmlEnumValue("MahnStufeCd") - MAHN_STUFE_CD("MahnStufeCd"), - - /** - * GrundRuecklauf - * - */ - @XmlEnumValue("RueckGrundCd") - RUECK_GRUND_CD("RueckGrundCd"); - private final String value; - - SchlArtCdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchlArtCdType fromValue(String v) { - for (SchlArtCdType c: SchlArtCdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/TxtArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/TxtArtCdType.java deleted file mode 100644 index 47779458..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/TxtArtCdType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für TxtArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="TxtArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ANR"/>
- *     <enumeration value="BER"/>
- *     <enumeration value="FRT"/>
- *     <enumeration value="TIT"/>
- *     <enumeration value="VKL"/>
- *     <enumeration value="SRT"/>
- *     <enumeration value="EXP"/>
- *     <enumeration value="ONR"/>
- *     <enumeration value="FZU"/>
- *     <enumeration value="RIM"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TxtArtCd_Type") -@XmlEnum -public enum TxtArtCdType { - - - /** - * Anrede - * - */ - ANR, - - /** - * Beruf - * - */ - BER, - - /** - * Freitext - * - */ - FRT, - - /** - * Titel - * - */ - TIT, - - /** - * Vertragsspez. Klausel - * - */ - VKL, - - /** - * Beschreibung Schadenort - * - */ - SRT, - - /** - * Schaden-Expertise (Besichtigungsdaten) - * - */ - EXP, - - /** - * Oeamtc-Clubkarten-Nr - * - */ - ONR, - - /** - * Ordnungsbegriff für Zuordnung Fremdsystem - * - */ - FZU, - - /** - * Risikomerkmal - * - */ - RIM; - - public String value() { - return name(); - } - - public static TxtArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZ.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZ.java deleted file mode 100644 index 8301f087..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZ.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERS_KFZ_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERS_KFZ") -public class VERSKFZ - extends VERSKFZType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZType.java deleted file mode 100644 index 80fc4517..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSKFZType.java +++ /dev/null @@ -1,664 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERS_KFZ_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_KFZ_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
- *       <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_KFZ_Type") -@XmlSeeAlso({ - VERSKFZ.class -}) -public class VERSKFZType { - - @XmlAttribute(name = "FzgArtCd", required = true) - protected String fzgArtCd; - @XmlAttribute(name = "Marke", required = true) - protected String marke; - @XmlAttribute(name = "Handelsbez") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", required = true) - protected String antriebsArtCd; - @XmlAttribute(name = "Katkz", required = true) - protected String katkz; - @XmlAttribute(name = "ABSKz") - protected Entsch2Type absKz; - @XmlAttribute(name = "CO2_Ausstoss") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", required = true) - protected String fahrgestnr; - @XmlAttribute(name = "Motornr") - protected String motornr; - @XmlAttribute(name = "NatCode") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz") - protected String polKennz; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der katkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKatkz() { - return katkz; - } - - /** - * Legt den Wert der katkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKatkz(String value) { - this.katkz = value; - } - - /** - * Ruft den Wert der absKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getABSKz() { - return absKz; - } - - /** - * Legt den Wert der absKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setABSKz(Entsch2Type value) { - this.absKz = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSOBJEKTType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSOBJEKTType.java deleted file mode 100644 index d0f316d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSOBJEKTType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_OBJEKT_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_OBJEKT_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element ref="{urn:omds20}VERS_PERSON"/>
- *           <element ref="{urn:omds20}VERS_KFZ"/>
- *           <element ref="{urn:omds20}VERS_SACHE"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Grenzwert"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="VersObjTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_OBJEKT_Type", propOrder = { - "versperson", - "verskfz", - "verssache", - "elAnzahlOrELBetragOrELEinstufung" -}) -public class VERSOBJEKTType { - - @XmlElement(name = "VERS_PERSON") - protected VERSPERSONType versperson; - @XmlElement(name = "VERS_KFZ") - protected VERSKFZ verskfz; - @XmlElement(name = "VERS_SACHE") - protected VERSSACHEType verssache; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAnzahlOrELBetragOrELEinstufung; - @XmlAttribute(name = "ObjLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int objLfnr; - @XmlAttribute(name = "VersObjTxt") - protected String versObjTxt; - - /** - * Ruft den Wert der versperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSPERSONType } - * - */ - public VERSPERSONType getVERSPERSON() { - return versperson; - } - - /** - * Legt den Wert der versperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSPERSONType } - * - */ - public void setVERSPERSON(VERSPERSONType value) { - this.versperson = value; - } - - /** - * Ruft den Wert der verskfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSKFZ } - * - */ - public VERSKFZ getVERSKFZ() { - return verskfz; - } - - /** - * Legt den Wert der verskfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSKFZ } - * - */ - public void setVERSKFZ(VERSKFZ value) { - this.verskfz = value; - } - - /** - * Ruft den Wert der verssache-Eigenschaft ab. - * - * @return - * possible object is - * {@link VERSSACHEType } - * - */ - public VERSSACHEType getVERSSACHE() { - return verssache; - } - - /** - * Legt den Wert der verssache-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VERSSACHEType } - * - */ - public void setVERSSACHE(VERSSACHEType value) { - this.verssache = value; - } - - /** - * Gets the value of the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * 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 set method for the elAnzahlOrELBetragOrELEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELBetragOrELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELGrenzwertType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELBetragOrELEinstufung() { - if (elAnzahlOrELBetragOrELEinstufung == null) { - elAnzahlOrELBetragOrELEinstufung = new ArrayList(); - } - return this.elAnzahlOrELBetragOrELEinstufung; - } - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - */ - public int getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - */ - public void setObjLfnr(int value) { - this.objLfnr = value; - } - - /** - * Ruft den Wert der versObjTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersObjTxt() { - return versObjTxt; - } - - /** - * Legt den Wert der versObjTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersObjTxt(String value) { - this.versObjTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSPERSONType.java deleted file mode 100644 index b6c4c3a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSPERSONType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_PERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_PERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_PERSON_Type") -public class VERSPERSONType { - - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSSACHEType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSSACHEType.java deleted file mode 100644 index 4b4517d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSSACHEType.java +++ /dev/null @@ -1,504 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERS_SACHE_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERS_SACHE_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <element ref="{urn:omds20}EL-Objektdaten"/>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
- *       <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
- *       <attribute name="GebaeudeBez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
- *       <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
- *       <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
- *       <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
- *       <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
- *       <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERS_SACHE_Type", propOrder = { - "elObjektdaten" -}) -public class VERSSACHEType { - - @XmlElement(name = "EL-Objektdaten") - protected List elObjektdaten; - @XmlAttribute(name = "VersSacheCd", required = true) - protected String versSacheCd; - @XmlAttribute(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlAttribute(name = "GebaeudeBez") - protected String gebaeudeBez; - @XmlAttribute(name = "BauartCd") - protected String bauartCd; - @XmlAttribute(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlAttribute(name = "AusstattungCd") - protected String ausstattungCd; - @XmlAttribute(name = "DachungCd") - protected String dachungCd; - @XmlAttribute(name = "NutzungCd") - protected String nutzungCd; - @XmlAttribute(name = "SichergKz") - protected Entsch2Type sichergKz; - @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; - - /** - * Gets the value of the elObjektdaten property. - * - *

- * 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 set method for the elObjektdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELObjektdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELObjektdatenType } - * - * - */ - public List getELObjektdaten() { - if (elObjektdaten == null) { - elObjektdaten = new ArrayList(); - } - return this.elObjektdaten; - } - - /** - * Ruft den Wert der versSacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersSacheCd() { - return versSacheCd; - } - - /** - * Legt den Wert der versSacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersSacheCd(String value) { - this.versSacheCd = value; - } - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSUNTERNEHMEN.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSUNTERNEHMEN.java deleted file mode 100644 index 335a74af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERSUNTERNEHMEN.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded" minOccurs="0">
- *         <element ref="{urn:omds20}EL-Kommunikation"/>
- *       </sequence>
- *       <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
- *       <attribute name="VUBezeichnung" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "elKommunikation" -}) -@XmlRootElement(name = "VERS_UNTERNEHMEN") -public class VERSUNTERNEHMEN { - - @XmlElement(name = "EL-Kommunikation") - protected List elKommunikation; - @XmlAttribute(name = "VUNr", required = true) - protected String vuNr; - @XmlAttribute(name = "VUBezeichnung", required = true) - protected String vuBezeichnung; - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * 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 vuBezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUBezeichnung() { - return vuBezeichnung; - } - - /** - * Legt den Wert der vuBezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUBezeichnung(String value) { - this.vuBezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAG.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAG.java deleted file mode 100644 index 21456bcd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAG.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds20}VERTRAG_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "VERTRAG") -public class VERTRAG - extends VERTRAGType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSFONDSType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSFONDSType.java deleted file mode 100644 index bbae4673..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSFONDSType.java +++ /dev/null @@ -1,190 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSFONDS_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSFONDS_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSFONDS_Type", propOrder = { - "portfolio", - "fonds", - "elBetrag" -}) -public class VERTRAGSFONDSType { - - @XmlElement(name = "PORTFOLIO") - protected List portfolio; - @XmlElement(name = "FONDS") - protected List fonds; - @XmlElement(name = "EL-Betrag") - protected List elBetrag; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - - /** - * Gets the value of the portfolio property. - * - *

- * 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 set method for the portfolio property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPORTFOLIO().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PORTFOLIO } - * - * - */ - public List getPORTFOLIO() { - if (portfolio == null) { - portfolio = new ArrayList(); - } - return this.portfolio; - } - - /** - * Gets the value of the fonds property. - * - *

- * 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 set method for the fonds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFONDS().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FONDSType } - * - * - */ - public List getFONDS() { - if (fonds == null) { - fonds = new ArrayList(); - } - return this.fonds; - } - - /** - * Gets the value of the elBetrag property. - * - *

- * 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 set method for the elBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - public List getELBetrag() { - if (elBetrag == null) { - elBetrag = new ArrayList(); - } - return this.elBetrag; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSPERSONType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSPERSONType.java deleted file mode 100644 index f4898660..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGSPERSONType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VERTRAGSPERSON_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAGSPERSON_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAGSPERSON_Type") -public class VERTRAGSPERSONType { - - @XmlAttribute(name = "VtgRolleCd", required = true) - protected VtgRolleCdType vtgRolleCd; - @XmlAttribute(name = "Lfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlAttribute(name = "Personennr", required = true) - protected String personennr; - - /** - * Ruft den Wert der vtgRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVtgRolleCd() { - return vtgRolleCd; - } - - /** - * Legt den Wert der vtgRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVtgRolleCd(VtgRolleCdType value) { - this.vtgRolleCd = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGType.java deleted file mode 100644 index aa4c23ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VERTRAGType.java +++ /dev/null @@ -1,919 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für VERTRAG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VERTRAG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Antrag"/>
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Betrag"/>
- *           <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Klausel"/>
- *           <element ref="{urn:omds20}EL-Polizzennummer"/>
- *           <element ref="{urn:omds20}EL-Praemienfreistellung"/>
- *           <element ref="{urn:omds20}EL-Praemienkorrektur"/>
- *           <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
- *           <element ref="{urn:omds20}EL-Selbstbehalt"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *         <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
- *         <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- *       <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- *       <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
- *       <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
- *       <attribute name="VtgProdukt" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *       <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
- *       <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
- *       <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="VtgEnd" type="{urn:omds20}Datum" />
- *       <attribute name="Hptfaelligkeit">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
- *             <minInclusive value="--01-01"/>
- *             <maxInclusive value="--12-31"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
- *       <attribute name="AendGrundbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="60"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieNtoVtg" use="required">
- *         <simpleType>
- *           <restriction base="{urn:omds20}decimal">
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Ktonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VERTRAG_Type", propOrder = { - "elAntragOrELAnzahlOrELBetrag", - "vertragsperson", - "versobjekt", - "sparte" -}) -@XmlSeeAlso({ - VERTRAG.class -}) -public class VERTRAGType { - - @XmlElements({ - @XmlElement(name = "EL-Antrag", type = ELAntragType.class), - @XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class), - @XmlElement(name = "EL-Betrag", type = ELBetragType.class), - @XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class), - @XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Klausel", type = ELKlauselType.class), - @XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class), - @XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class), - @XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class), - @XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class), - @XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class), - @XmlElement(name = "EL-Text", type = ELTextType.class) - }) - protected List elAntragOrELAnzahlOrELBetrag; - @XmlElement(name = "VERTRAGSPERSON", required = true) - protected List vertragsperson; - @XmlElement(name = "VERS_OBJEKT") - protected List versobjekt; - @XmlElement(name = "SPARTE", required = true) - protected List sparte; - @XmlAttribute(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlAttribute(name = "VertragsID") - protected String vertragsID; - @XmlAttribute(name = "Vermnr", required = true) - protected String vermnr; - @XmlAttribute(name = "VtgProdCd", required = true) - protected String vtgProdCd; - @XmlAttribute(name = "VtgProdukt", required = true) - protected String vtgProdukt; - @XmlAttribute(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlAttribute(name = "ZahlRhythmCd", required = true) - protected String zahlRhythmCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "VtgStatusCd", required = true) - protected String vtgStatusCd; - @XmlAttribute(name = "VtgStatusBeg") - protected XMLGregorianCalendar vtgStatusBeg; - @XmlAttribute(name = "VtgBeg", required = true) - protected XMLGregorianCalendar vtgBeg; - @XmlAttribute(name = "VtgEnd") - protected XMLGregorianCalendar vtgEnd; - @XmlAttribute(name = "Hptfaelligkeit") - protected XMLGregorianCalendar hptfaelligkeit; - @XmlAttribute(name = "DurchfDat", required = true) - protected XMLGregorianCalendar durchfDat; - @XmlAttribute(name = "GueltigBeg", required = true) - protected XMLGregorianCalendar gueltigBeg; - @XmlAttribute(name = "AendGrundCd", required = true) - protected String aendGrundCd; - @XmlAttribute(name = "AendGrundbez") - protected String aendGrundbez; - @XmlAttribute(name = "PraemieNtoVtg", required = true) - protected BigDecimal praemieNtoVtg; - @XmlAttribute(name = "PraemieBtoVtg", required = true) - protected BigDecimal praemieBtoVtg; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Ktonr") - protected String ktonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Gets the value of the elAntragOrELAnzahlOrELBetrag property. - * - *

- * 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 set method for the elAntragOrELAnzahlOrELBetrag property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAntragOrELAnzahlOrELBetrag().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAntragType } - * {@link ELAnzahlType } - * {@link ELBetragType } - * {@link ELBezugsberechtigungType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKlauselType } - * {@link ELPolizzennummerType } - * {@link ELPraemienfreistellungType } - * {@link ELPraemienkorrekturType } - * {@link ELRahmenvereinbarungType } - * {@link ELSelbstbehalt } - * {@link ELTextType } - * - * - */ - public List getELAntragOrELAnzahlOrELBetrag() { - if (elAntragOrELAnzahlOrELBetrag == null) { - elAntragOrELAnzahlOrELBetrag = new ArrayList(); - } - return this.elAntragOrELAnzahlOrELBetrag; - } - - /** - * Gets the value of the vertragsperson property. - * - *

- * 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 set method for the vertragsperson property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERTRAGSPERSON().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERTRAGSPERSONType } - * - * - */ - public List getVERTRAGSPERSON() { - if (vertragsperson == null) { - vertragsperson = new ArrayList(); - } - return this.vertragsperson; - } - - /** - * Gets the value of the versobjekt property. - * - *

- * 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 set method for the versobjekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVERSOBJEKT().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VERSOBJEKTType } - * - * - */ - public List getVERSOBJEKT() { - if (versobjekt == null) { - versobjekt = new ArrayList(); - } - return this.versobjekt; - } - - /** - * Gets the value of the sparte property. - * - *

- * 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 set method for the sparte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSPARTE().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SPARTEType } - * - * - */ - public List getSPARTE() { - if (sparte == null) { - sparte = new ArrayList(); - } - return this.sparte; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Ruft den Wert der vtgProdukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdukt() { - return vtgProdukt; - } - - /** - * Legt den Wert der vtgProdukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdukt(String value) { - this.vtgProdukt = value; - } - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Ruft den Wert der zahlRhythmCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlRhythmCd() { - return zahlRhythmCd; - } - - /** - * Legt den Wert der zahlRhythmCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlRhythmCd(String value) { - this.zahlRhythmCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der vtgStatusCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgStatusCd() { - return vtgStatusCd; - } - - /** - * Legt den Wert der vtgStatusCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgStatusCd(String value) { - this.vtgStatusCd = value; - } - - /** - * Ruft den Wert der vtgStatusBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgStatusBeg() { - return vtgStatusBeg; - } - - /** - * Legt den Wert der vtgStatusBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgStatusBeg(XMLGregorianCalendar value) { - this.vtgStatusBeg = value; - } - - /** - * 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 vtgEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnd() { - return vtgEnd; - } - - /** - * Legt den Wert der vtgEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnd(XMLGregorianCalendar value) { - this.vtgEnd = value; - } - - /** - * Ruft den Wert der hptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHptfaelligkeit() { - return hptfaelligkeit; - } - - /** - * Legt den Wert der hptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHptfaelligkeit(XMLGregorianCalendar value) { - this.hptfaelligkeit = value; - } - - /** - * Ruft den Wert der durchfDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDurchfDat() { - return durchfDat; - } - - /** - * Legt den Wert der durchfDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDurchfDat(XMLGregorianCalendar value) { - this.durchfDat = value; - } - - /** - * Ruft den Wert der gueltigBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBeg() { - return gueltigBeg; - } - - /** - * Legt den Wert der gueltigBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBeg(XMLGregorianCalendar value) { - this.gueltigBeg = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der praemieNtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNtoVtg() { - return praemieNtoVtg; - } - - /** - * Legt den Wert der praemieNtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNtoVtg(BigDecimal value) { - this.praemieNtoVtg = value; - } - - /** - * Ruft den Wert der praemieBtoVtg-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBtoVtg() { - return praemieBtoVtg; - } - - /** - * Legt den Wert der praemieBtoVtg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBtoVtg(BigDecimal value) { - this.praemieBtoVtg = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der ktonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKtonr() { - return ktonr; - } - - /** - * Legt den Wert der ktonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKtonr(String value) { - this.ktonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VSArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VSArtCdType.java deleted file mode 100644 index a8c77c3f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VSArtCdType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VSArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VSArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ALS"/>
- *     <enumeration value="BDS"/>
- *     <enumeration value="BVS"/>
- *     <enumeration value="ELS"/>
- *     <enumeration value="EVS"/>
- *     <enumeration value="HHS"/>
- *     <enumeration value="HLS"/>
- *     <enumeration value="OVS"/>
- *     <enumeration value="PFR"/>
- *     <enumeration value="PPF"/>
- *     <enumeration value="PVS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VSArtCd_Type") -@XmlEnum -public enum VSArtCdType { - - - /** - * Ablebensumme - * - */ - ALS, - - /** - * Bausparen Darlehenssumme - * - */ - BDS, - - /** - * Bausparen Vertragssumme - * - */ - BVS, - - /** - * Erlebensumme - * - */ - ELS, - - /** - * EinzelVS - * - */ - EVS, - - /** - * Höchsthaftungssumme - * - */ - HHS, - - /** - * Höchstleistungssumme - * - */ - HLS, - - /** - * ohne Versicherungssumme - * - */ - OVS, - - /** - * prämienfrei - * - */ - PFR, - - /** - * prämienpflichtig - * - */ - PPF, - - /** - * PauschalVS - * - */ - PVS; - - public String value() { - return name(); - } - - public static VSArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VtgRolleCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VtgRolleCdType.java deleted file mode 100644 index 9ef37938..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/VtgRolleCdType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VtgRolleCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VtgRolleCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AP"/>
- *     <enumeration value="BG"/>
- *     <enumeration value="BM"/>
- *     <enumeration value="BO"/>
- *     <enumeration value="IA"/>
- *     <enumeration value="GV"/>
- *     <enumeration value="LE"/>
- *     <enumeration value="KA"/>
- *     <enumeration value="VN"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VtgRolleCd_Type") -@XmlEnum -public enum VtgRolleCdType { - - - /** - * Ansprechperson - * - */ - AP, - - /** - * Bausparer gesetzlicher Vertreter - * - */ - BG, - - /** - * Bausparer mit Prämie - * - */ - BM, - - /** - * Bausparer ohne Prämie - * - */ - BO, - - /** - * Inkassoadresse - * - */ - IA, - - /** - * Gesetzlicher Vertreter - * - */ - GV, - - /** - * Lenker - * - */ - LE, - - /** - * Korrespondenz/Zustelladresse - * - */ - KA, - - /** - * Versicherungsnehmer - * - */ - VN; - - public String value() { - return name(); - } - - public static VtgRolleCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/WaehrungsCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/WaehrungsCdType.java deleted file mode 100644 index e48f8288..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/WaehrungsCdType.java +++ /dev/null @@ -1,279 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für WaehrungsCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="WaehrungsCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AUD"/>
- *     <enumeration value="BGL"/>
- *     <enumeration value="CAD"/>
- *     <enumeration value="CHF"/>
- *     <enumeration value="CYP"/>
- *     <enumeration value="CZR"/>
- *     <enumeration value="DKK"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="GBP"/>
- *     <enumeration value="GIP"/>
- *     <enumeration value="HKD"/>
- *     <enumeration value="HRK"/>
- *     <enumeration value="HUF"/>
- *     <enumeration value="ILS"/>
- *     <enumeration value="INR"/>
- *     <enumeration value="ISK"/>
- *     <enumeration value="JOD"/>
- *     <enumeration value="JPY"/>
- *     <enumeration value="MLT"/>
- *     <enumeration value="MXP"/>
- *     <enumeration value="NOK"/>
- *     <enumeration value="NZD"/>
- *     <enumeration value="PLZ"/>
- *     <enumeration value="ROL"/>
- *     <enumeration value="SEK"/>
- *     <enumeration value="SGD"/>
- *     <enumeration value="SIT"/>
- *     <enumeration value="SKK"/>
- *     <enumeration value="SUR"/>
- *     <enumeration value="TND"/>
- *     <enumeration value="TRL"/>
- *     <enumeration value="TWD"/>
- *     <enumeration value="USD"/>
- *     <enumeration value="YUN"/>
- *     <enumeration value="ZAR"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "WaehrungsCd_Type") -@XmlEnum -public enum WaehrungsCdType { - - - /** - * Dollar Australien - * - */ - AUD, - - /** - * Lewa Bulgarien - * - */ - BGL, - - /** - * Dollar Kanadien - * - */ - CAD, - - /** - * Franken Schweiz - * - */ - CHF, - - /** - * Pfund Zypern - * - */ - CYP, - - /** - * Krone Tschechien - * - */ - CZR, - - /** - * Krone Dänemark - * - */ - DKK, - - /** - * EURO - * - */ - EUR, - - /** - * Pfund Großbritannien - * - */ - GBP, - - /** - * Pfund Gibraltar - * - */ - GIP, - - /** - * Dollar Hongkong - * - */ - HKD, - - /** - * Kuna Kroatia - * - */ - HRK, - - /** - * Forint Ungarn - * - */ - HUF, - - /** - * Shekel Israel - * - */ - ILS, - - /** - * Rupie Indien - * - */ - INR, - - /** - * Krone Island - * - */ - ISK, - - /** - * Dinar Jordanien - * - */ - JOD, - - /** - * Yen Japan - * - */ - JPY, - - /** - * Pfund Malta - * - */ - MLT, - - /** - * Peso Mexiko - * - */ - MXP, - - /** - * Krone Norwegen - * - */ - NOK, - - /** - * Dollar Neuseeland - * - */ - NZD, - - /** - * Zloty Polen - * - */ - PLZ, - - /** - * Lau Rumänien - * - */ - ROL, - - /** - * Krone Schweden - * - */ - SEK, - - /** - * Dollar Singapur - * - */ - SGD, - - /** - * Tolar Slowenien - * - */ - SIT, - - /** - * Krone Slowakei - * - */ - SKK, - - /** - * Rubel Rußland - * - */ - SUR, - - /** - * Dinar Tunesien - * - */ - TND, - - /** - * Lira Türkei - * - */ - TRL, - - /** - * Dollar Taiwan - * - */ - TWD, - - /** - * US Dollar $ - * - */ - USD, - - /** - * Dinar Jugoslawien-Rest - * - */ - YUN, - - /** - * Rand Südafrika - * - */ - ZAR; - - public String value() { - return name(); - } - - public static WaehrungsCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ZAHLUNGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ZAHLUNGType.java deleted file mode 100644 index 0b248664..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/ZAHLUNGType.java +++ /dev/null @@ -1,323 +0,0 @@ - -package at.vvo.omds.types.omds2Types.v2_9; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für ZAHLUNG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZAHLUNG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
- *       <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
- *       <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
- *       <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
- *       <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
- *       <attribute name="BLZ">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="9"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Kontonr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="15"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="BIC">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="11"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="IBAN">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="34"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZAHLUNG_Type") -public class ZAHLUNGType { - - @XmlAttribute(name = "ZahlungsLfnr", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int zahlungsLfnr; - @XmlAttribute(name = "WaehrungsCd", required = true) - protected WaehrungsCdType waehrungsCd; - @XmlAttribute(name = "ZahlBetrag", required = true) - protected BigDecimal zahlBetrag; - @XmlAttribute(name = "ZahlDat", required = true) - protected XMLGregorianCalendar zahlDat; - @XmlAttribute(name = "ZahlGrundCd", required = true) - protected String zahlGrundCd; - @XmlAttribute(name = "ZahlWegCd", required = true) - protected String zahlWegCd; - @XmlAttribute(name = "BLZ") - protected String blz; - @XmlAttribute(name = "Kontonr") - protected String kontonr; - @XmlAttribute(name = "BIC") - protected String bic; - @XmlAttribute(name = "IBAN") - protected String iban; - - /** - * Ruft den Wert der zahlungsLfnr-Eigenschaft ab. - * - */ - public int getZahlungsLfnr() { - return zahlungsLfnr; - } - - /** - * Legt den Wert der zahlungsLfnr-Eigenschaft fest. - * - */ - public void setZahlungsLfnr(int value) { - this.zahlungsLfnr = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der zahlBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZahlBetrag() { - return zahlBetrag; - } - - /** - * Legt den Wert der zahlBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZahlBetrag(BigDecimal value) { - this.zahlBetrag = value; - } - - /** - * Ruft den Wert der zahlDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZahlDat() { - return zahlDat; - } - - /** - * Legt den Wert der zahlDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZahlDat(XMLGregorianCalendar value) { - this.zahlDat = value; - } - - /** - * Ruft den Wert der zahlGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlGrundCd() { - return zahlGrundCd; - } - - /** - * Legt den Wert der zahlGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlGrundCd(String value) { - this.zahlGrundCd = value; - } - - /** - * Ruft den Wert der zahlWegCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlWegCd() { - return zahlWegCd; - } - - /** - * Legt den Wert der zahlWegCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlWegCd(String value) { - this.zahlWegCd = value; - } - - /** - * Ruft den Wert der blz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBLZ() { - return blz; - } - - /** - * Legt den Wert der blz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBLZ(String value) { - this.blz = value; - } - - /** - * Ruft den Wert der kontonr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonr() { - return kontonr; - } - - /** - * Legt den Wert der kontonr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonr(String value) { - this.kontonr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/package-info.java deleted file mode 100644 index 3662f883..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds2Types/v2_9/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds2Types.v2_9; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AListenAttributType.java deleted file mode 100644 index c920855c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AListenAttributType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AListenAttribut_Type", propOrder = { - "values", - "minAnz" -}) -@XmlSeeAlso({ - AttributEnumType.class, - AttributMultiEnumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AListenAttributType - extends AttributType -{ - - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der minAnz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMinAnz() { - return minAnz; - } - - /** - * Legt den Wert der minAnz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMinAnz(Integer value) { - this.minAnz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ASingleAttributType.java deleted file mode 100644 index 40c90076..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ASingleAttributType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ASingleAttribut_Type", propOrder = { - "pflichtfeld" -}) -@XmlSeeAlso({ - AttributStringType.class, - AttributIntType.class, - AttributDezimalType.class, - AttributDoubleType.class, - AttributDatumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ASingleAttributType - extends AttributType -{ - - @XmlElement(name = "Pflichtfeld") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean pflichtfeld; - - /** - * Ruft den Wert der pflichtfeld-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isPflichtfeld() { - return pflichtfeld; - } - - /** - * Legt den Wert der pflichtfeld-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPflichtfeld(Boolean value) { - this.pflichtfeld = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 5af151b3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ zur Beschreibung abgelehnter Risiken - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbtretungType.java deleted file mode 100644 index 1ba6c745..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AbtretungType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Abtretung_Type", propOrder = { - "zessionar" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AbtretungType - extends SicherstellungType -{ - - @XmlElement(name = "Zessionar", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GlaeubigerSicherstellungType zessionar; - - /** - * Ruft den Wert der zessionar-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GlaeubigerSicherstellungType getZessionar() { - return zessionar; - } - - /** - * Legt den Wert der zessionar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZessionar(GlaeubigerSicherstellungType value) { - this.zessionar = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseArtCdType.java deleted file mode 100644 index 2ed1b9a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseType.java deleted file mode 100644 index 6f6ea80b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AdresseType.java +++ /dev/null @@ -1,334 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Adresse_Type", propOrder = { - "objektId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AdresseType { - - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlAttribute(name = "Pac") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long pac; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlAttribute(name = "Ort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ort; - @XmlAttribute(name = "Strasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String strasse; - @XmlAttribute(name = "Hausnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String hausnr; - @XmlAttribute(name = "Zusatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zusatz; - @XmlAttribute(name = "AdressID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDVU; - @XmlAttribute(name = "AdressID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String adressIDMakler; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der pac-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getPac() { - return pac; - } - - /** - * Legt den Wert der pac-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPac(Long value) { - this.pac = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der ort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrt() { - return ort; - } - - /** - * Legt den Wert der ort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrt(String value) { - this.ort = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der hausnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHausnr() { - return hausnr; - } - - /** - * Legt den Wert der hausnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHausnr(String value) { - this.hausnr = value; - } - - /** - * Ruft den Wert der zusatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZusatz() { - return zusatz; - } - - /** - * Legt den Wert der zusatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusatz(String value) { - this.zusatz = value; - } - - /** - * Ruft den Wert der adressIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDVU() { - return adressIDVU; - } - - /** - * Legt den Wert der adressIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDVU(String value) { - this.adressIDVU = value; - } - - /** - * Ruft den Wert der adressIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAdressIDMakler() { - return adressIDMakler; - } - - /** - * Legt den Wert der adressIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdressIDMakler(String value) { - this.adressIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AgentFilterType.java deleted file mode 100644 index 42fab826..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AgentFilterType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AgentFilter_Type", propOrder = { - "maklerID", - "vermnr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AgentFilterType - extends AuthorizationFilter -{ - - @XmlElement(name = "MaklerID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String maklerID; - @XmlElement(name = "Vermnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vermnr; - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Gets the value of the vermnr property. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AntragsartType.java deleted file mode 100644 index 778e9b8f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AntragsartType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@XmlType(name = "Antragsart_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ArtAenderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ArtAenderungType.java deleted file mode 100644 index ea2fb2c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ArtAenderungType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtAenderung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="ArtAenderung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="NEW"/>
- *     <enumeration value="UPDATE"/>
- *     <enumeration value="DELETE"/>
- *     <enumeration value="UNCHANGED"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtAenderung_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum ArtAenderungType { - - NEW, - UPDATE, - DELETE, - UNCHANGED; - - public String value() { - return name(); - } - - public static ArtAenderungType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDatumType.java deleted file mode 100644 index 05c0c996..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDatumType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDatum_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributDatumType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar value; - @XmlElement(name = "Default") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar _default; - @XmlElement(name = "Values") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar min; - @XmlElement(name = "Max") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(XMLGregorianCalendar value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(XMLGregorianCalendar value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(XMLGregorianCalendar value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDezimalType.java deleted file mode 100644 index e91fbd1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDezimalType.java +++ /dev/null @@ -1,202 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDezimal_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributDezimalType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(BigDecimal value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(BigDecimal value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(BigDecimal value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(BigDecimal value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDoubleType.java deleted file mode 100644 index 8fabe10c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributDoubleType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDouble_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributDoubleType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double _default; - @XmlElement(name = "Values", type = Double.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(Double value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(Double value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(Double value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(Double value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributEnumType.java deleted file mode 100644 index fe8a6df4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributEnumType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributEnum_Type", propOrder = { - "value", - "_default" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String _default; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(String value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(String value) { - this._default = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributIntType.java deleted file mode 100644 index d6c8744f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributIntType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributInt_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributIntType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer _default; - @XmlElement(name = "Values", type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(Integer value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(Integer value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(Integer value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(Integer value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index d20f66fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenDatum_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMetadatenDatumType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar _default; - @XmlElement(name = "Values") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar min; - @XmlElement(name = "Max") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(XMLGregorianCalendar value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(XMLGregorianCalendar value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(XMLGregorianCalendar value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index 31df2584..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMetadatenDezimalType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(BigDecimal value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(BigDecimal value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(BigDecimal value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index da47af11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenEnum_Type", propOrder = { - "_default", - "values" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMetadatenEnumType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenIntType.java deleted file mode 100644 index ba9e16d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,170 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenInt_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMetadatenIntType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer _default; - @XmlElement(name = "Values", type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(Integer value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMin(Integer value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMax(Integer value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenStringType.java deleted file mode 100644 index 6ee0efd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,204 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenString_Type", propOrder = { - "_default", - "values", - "minLaenge", - "maxLaenge", - "regex" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMetadatenStringType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - @XmlElement(name = "MinLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer minLaenge; - @XmlElement(name = "MaxLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer maxLaenge; - @XmlElement(name = "Regex") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String regex; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der minLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMinLaenge() { - return minLaenge; - } - - /** - * Legt den Wert der minLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMinLaenge(Integer value) { - this.minLaenge = value; - } - - /** - * Ruft den Wert der maxLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMaxLaenge() { - return maxLaenge; - } - - /** - * Legt den Wert der maxLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxLaenge(Integer value) { - this.maxLaenge = value; - } - - /** - * Ruft den Wert der regex-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRegex() { - return regex; - } - - /** - * Legt den Wert der regex-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRegex(String value) { - this.regex = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenType.java deleted file mode 100644 index e95544f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadaten_Type", propOrder = { - "attribut", - "aenderbar", - "bezeichnung", - "beschreibungTxt" -}) -@XmlSeeAlso({ - AttributMetadatenStringType.class, - AttributMetadatenIntType.class, - AttributMetadatenDezimalType.class, - AttributMetadatenDatumType.class, - AttributMetadatenEnumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AttributMetadatenType { - - @XmlElement(name = "Attribut", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object attribut; - @XmlElement(name = "Aenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean aenderbar; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der attribut-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getAttribut() { - return attribut; - } - - /** - * Legt den Wert der attribut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAttribut(Object value) { - this.attribut = value; - } - - /** - * Ruft den Wert der aenderbar-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isAenderbar() { - return aenderbar; - } - - /** - * Legt den Wert der aenderbar-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAenderbar(boolean value) { - this.aenderbar = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMsgType.java deleted file mode 100644 index 185019d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMsgType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMsg_Type", propOrder = { - "errorType", - "errorCode", - "errorMsg" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMsgType { - - @XmlElement(name = "ErrorType", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger errorType; - @XmlElement(name = "ErrorCode") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger errorCode; - @XmlElement(name = "ErrorMsg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String errorMsg; - - /** - * Ruft den Wert der errorType-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getErrorType() { - return errorType; - } - - /** - * Legt den Wert der errorType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorType(BigInteger value) { - this.errorType = value; - } - - /** - * Ruft den Wert der errorCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getErrorCode() { - return errorCode; - } - - /** - * Legt den Wert der errorCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorCode(BigInteger value) { - this.errorCode = value; - } - - /** - * Ruft den Wert der errorMsg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErrorMsg() { - return errorMsg; - } - - /** - * Legt den Wert der errorMsg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorMsg(String value) { - this.errorMsg = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMultiEnumType.java deleted file mode 100644 index 79e8b399..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List _default; - @XmlElement(name = "MaxAnz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - return this._default; - } - - /** - * Ruft den Wert der maxAnz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getMaxAnz() { - return maxAnz; - } - - /** - * Legt den Wert der maxAnz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxAnz(Object value) { - this.maxAnz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributStringType.java deleted file mode 100644 index 69fe4fce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributStringType.java +++ /dev/null @@ -1,235 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributString_Type", propOrder = { - "value", - "_default", - "regex", - "maxLaenge", - "minLaenge", - "values" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AttributStringType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String _default; - @XmlElement(name = "Regex") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String regex; - @XmlElement(name = "MaxLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer maxLaenge; - @XmlElement(name = "MinLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer minLaenge; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List values; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(String value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Ruft den Wert der regex-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRegex() { - return regex; - } - - /** - * Legt den Wert der regex-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRegex(String value) { - this.regex = value; - } - - /** - * Ruft den Wert der maxLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMaxLaenge() { - return maxLaenge; - } - - /** - * Legt den Wert der maxLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxLaenge(Integer value) { - this.maxLaenge = value; - } - - /** - * Ruft den Wert der minLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMinLaenge() { - return minLaenge; - } - - /** - * Legt den Wert der minLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMinLaenge(Integer value) { - this.minLaenge = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributType.java deleted file mode 100644 index 72b69579..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AttributType.java +++ /dev/null @@ -1,168 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Attribut_Type", propOrder = { - "aenderbar", - "bezeichnung", - "beschreibungTxt", - "msg" -}) -@XmlSeeAlso({ - ASingleAttributType.class, - AListenAttributType.class, - RaucherType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AttributType { - - @XmlElement(name = "Aenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean aenderbar; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - @XmlElement(name = "Msg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributMsgType msg; - - /** - * Ruft den Wert der aenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isAenderbar() { - return aenderbar; - } - - /** - * Legt den Wert der aenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAenderbar(Boolean value) { - this.aenderbar = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der msg-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributMsgType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributMsgType getMsg() { - return msg; - } - - /** - * Legt den Wert der msg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributMsgType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMsg(AttributMsgType value) { - this.msg = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AuthorizationFilter.java deleted file mode 100644 index 34e483eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungType.java deleted file mode 100644 index 09d81cee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für Autorisierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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}string" minOccurs="0"/>
- *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentType.Autorisierungen.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AutorisierungType { - - @XmlElement(name = "AutorisierungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short lfnrPerson; - @XmlElement(name = "Rolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AutorisierungsartType autorisierungsart; - - /** - * Ruft den Wert der autorisierungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAutorisierungsId() { - return autorisierungsId; - } - - /** - * Legt den Wert der autorisierungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAutorisierungsId(String value) { - this.autorisierungsId = value; - } - - /** - * Ruft den Wert der lfnrPerson-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnrPerson(short value) { - this.lfnrPerson = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolle(String value) { - this.rolle = value; - } - - /** - * Ruft den Wert der autorisierungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AutorisierungsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AutorisierungsartType getAutorisierungsart() { - return autorisierungsart; - } - - /** - * Legt den Wert der autorisierungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AutorisierungsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAutorisierungsart(AutorisierungsartType value) { - this.autorisierungsart = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsAnforderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsAnforderungType.java deleted file mode 100644 index 3e9f1c13..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsAnforderungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für AutorisierungsAnforderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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}string" minOccurs="0"/>
- *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AutorisierungsAnforderungType { - - @XmlElement(name = "AutorisierungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short lfnrPerson; - @XmlElement(name = "Rolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List autorisierungsart; - - /** - * Ruft den Wert der autorisierungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAutorisierungsId() { - return autorisierungsId; - } - - /** - * Legt den Wert der autorisierungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAutorisierungsId(String value) { - this.autorisierungsId = value; - } - - /** - * Ruft den Wert der lfnrPerson-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnrPerson(short value) { - this.lfnrPerson = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolle(String value) { - this.rolle = value; - } - - /** - * Gets the value of the autorisierungsart property. - * - *

- * 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 set method for the autorisierungsart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungsart().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsartType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAutorisierungsart() { - if (autorisierungsart == null) { - autorisierungsart = new ArrayList(); - } - return this.autorisierungsart; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsartType.java deleted file mode 100644 index 7da18dad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/AutorisierungsartType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - * Der Typ für Autorisierungsarten - * - *

Java-Klasse für Autorisierungsart_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Autorisierungsart_Type">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierungsart_Type", propOrder = { - "value" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AutorisierungsartType { - - @XmlValue - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String value; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(String value) { - this.value = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BankverbindungType.java deleted file mode 100644 index 23017ad0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BankverbindungType.java +++ /dev/null @@ -1,166 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bankverbindung_Type", propOrder = { - "kontoinhaber", - "bank", - "bic", - "iban" -}) -@XmlSeeAlso({ - PersBankverbindungType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BankverbindungType { - - @XmlElement(name = "Kontoinhaber", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kontoinhaber; - @XmlElement(name = "Bank") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bank; - @XmlElement(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bic; - @XmlElement(name = "IBAN", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String iban; - - /** - * Ruft den Wert der kontoinhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKontoinhaber() { - return kontoinhaber; - } - - /** - * Legt den Wert der kontoinhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKontoinhaber(String value) { - this.kontoinhaber = value; - } - - /** - * Ruft den Wert der bank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBank() { - return bank; - } - - /** - * Legt den Wert der bank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBank(String value) { - this.bank = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der iban-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getIBAN() { - return iban; - } - - /** - * Legt den Wert der iban-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIBAN(String value) { - this.iban = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 8737aa87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,405 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="TarifId" type="{urn:omds3CommonServiceTypes-1-1-0}TarifId_Type" minOccurs="0"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Konvertierung" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *         <element name="Attribut" type="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisProduktbaustein_Type", propOrder = { - "id", - "tarifId", - "bezeichnung", - "bedingungen", - "meldungen", - "konvertierung", - "kombinationen", - "attribut" -}) -@XmlSeeAlso({ - ProduktbausteinType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class BasisProduktbausteinType { - - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(name = "TarifId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected TarifIdType tarifId; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bedingungen; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - @XmlElement(name = "Konvertierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BasisProduktbausteinType.Konvertierung konvertierung; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KombinationenType kombinationen; - @XmlElement(name = "Attribut") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attribut; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der tarifId-Eigenschaft ab. - * - * @return - * possible object is - * {@link TarifIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public TarifIdType getTarifId() { - return tarifId; - } - - /** - * Legt den Wert der tarifId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TarifIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTarifId(TarifIdType value) { - this.tarifId = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Gets the value of the bedingungen property. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Ruft den Wert der konvertierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BasisProduktbausteinType.Konvertierung } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BasisProduktbausteinType.Konvertierung getKonvertierung() { - return konvertierung; - } - - /** - * Legt den Wert der konvertierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BasisProduktbausteinType.Konvertierung } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKonvertierung(BasisProduktbausteinType.Konvertierung value) { - this.konvertierung = value; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - - /** - * Gets the value of the attribut property. - * - *

- * 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 set method for the attribut property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttribut().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttribut() { - if (attribut == null) { - attribut = new ArrayList(); - } - return this.attribut; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "ersetztId", - "konvertierungsaktion" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Konvertierung { - - @XmlElement(name = "ErsetztId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersetztId; - @XmlElement(name = "Konvertierungsaktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KonvertierungsaktionType konvertierungsaktion; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Ruft den Wert der konvertierungsaktion-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KonvertierungsaktionType getKonvertierungsaktion() { - return konvertierungsaktion; - } - - /** - * Legt den Wert der konvertierungsaktion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKonvertierungsaktion(KonvertierungsaktionType value) { - this.konvertierungsaktion = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Begriff.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Begriff.java deleted file mode 100644 index af20208f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Begriff.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Standardimplementierung von ZusaetzlicheDokumentendaten_Type als String - * - *

Java-Klasse für Begriff complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Begriff">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Begriff" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Begriff", propOrder = { - "begriff" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class Begriff - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Begriff", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String begriff; - - /** - * Ruft den Wert der begriff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBegriff() { - return begriff; - } - - /** - * Legt den Wert der begriff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBegriff(String value) { - this.begriff = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BerechnungsvarianteType.java deleted file mode 100644 index e18f71be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Berechnungsvariante_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 6853b197..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = { - "lfnr", - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BeteiligtePersonVertragType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - @XmlElement(name = "Person", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersonType person; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - 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 } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPerson(PersonType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungGesetzlicheErbenType.java deleted file mode 100644 index 0a03291b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungGesetzlicheErbenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung gesetzliche Erben - * - *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungGesetzlicheErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungIndividuell.java deleted file mode 100644 index 2cea5cdf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungIndividuell.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BezugsberechtigungIndividuell complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungIndividuell", propOrder = { - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungIndividuell - extends BezugsberechtigungType -{ - - @XmlElement(name = "Beschreibung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungNamentlich.java deleted file mode 100644 index 7b43dabd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungNamentlich.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BezugsberechtigungNamentlich complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungNamentlich", propOrder = { - "unwiderruflich", - "personen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungNamentlich - extends BezugsberechtigungType -{ - - @XmlElement(name = "Unwiderruflich") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean unwiderruflich; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List personen; - - /** - * Ruft den Wert der unwiderruflich-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isUnwiderruflich() { - return unwiderruflich; - } - - /** - * Legt den Wert der unwiderruflich-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUnwiderruflich(boolean value) { - this.unwiderruflich = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonNamentlichesBezugsrechtType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungTestamentarischeErbenType.java deleted file mode 100644 index 465af0d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungTestamentarischeErbenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung testamentarische Erben - * - *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungTestamentarischeErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungType.java deleted file mode 100644 index ac579020..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bezugsberechtigung_Type", propOrder = { - "art" -}) -@XmlSeeAlso({ - BezugsberechtigungGesetzlicheErbenType.class, - BezugsberechtigungTestamentarischeErbenType.class, - BezugsberechtigungUeberbringerType.class, - BezugsberechtigungNamentlich.class, - BezugsberechtigungVersicherungsnehmerType.class, - BezugsberechtigungVersichertePersonType.class, - BezugsberechtigungIndividuell.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class BezugsberechtigungType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short art; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(short value) { - this.art = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungUeberbringerType.java deleted file mode 100644 index 4fc8a224..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungUeberbringerType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Überbringer - * - *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungUeberbringer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungUeberbringer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungUeberbringerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersichertePersonType.java deleted file mode 100644 index 3de70dcd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersichertePersonType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung VersichertePerson - * - *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersichertePerson_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungVersichertePersonType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersicherungsnehmerType.java deleted file mode 100644 index 2fdd2ec9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsberechtigungVersicherungsnehmerType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Versicherungsnehmer - * - *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsberechtigungVersicherungsnehmerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsrechtType.java deleted file mode 100644 index d68046c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BezugsrechtType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bezugsrecht_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BezugsrechtType { - - @XmlElement(name = "PERSON", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PERSONType person; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PERSONType getPERSON() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPERSON(PERSONType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusSystemType.java deleted file mode 100644 index 15838498..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BonusMalusSystem_Type", propOrder = { - "bonusMalusVorversicherung", - "versicherungsgesellschaft", - "polizzennummer", - "offeneSchaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BonusMalusSystemType { - - @XmlElement(name = "BonusMalusVorversicherung", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BonusMalusVorversicherungType bonusMalusVorversicherung; - @XmlElement(name = "Versicherungsgesellschaft") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versicherungsgesellschaft; - @XmlElement(name = "Polizzennummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennummer; - @XmlElement(name = "OffeneSchaeden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffeneSchaedenType offeneSchaeden; - - /** - * Ruft den Wert der bonusMalusVorversicherung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusVorversicherungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BonusMalusVorversicherungType getBonusMalusVorversicherung() { - return bonusMalusVorversicherung; - } - - /** - * Legt den Wert der bonusMalusVorversicherung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusVorversicherungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBonusMalusVorversicherung(BonusMalusVorversicherungType value) { - this.bonusMalusVorversicherung = value; - } - - /** - * Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersicherungsgesellschaft() { - return versicherungsgesellschaft; - } - - /** - * Legt den Wert der versicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungsgesellschaft(String value) { - this.versicherungsgesellschaft = value; - } - - /** - * Ruft den Wert der polizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennummer() { - return polizzennummer; - } - - /** - * Legt den Wert der polizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennummer(String value) { - this.polizzennummer = value; - } - - /** - * Ruft den Wert der offeneSchaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffeneSchaedenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffeneSchaedenType getOffeneSchaeden() { - return offeneSchaeden; - } - - /** - * Legt den Wert der offeneSchaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffeneSchaedenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffeneSchaeden(OffeneSchaedenType value) { - this.offeneSchaeden = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index c517e6be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@XmlType(name = "BonusMalusVorversicherung_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessRequestType.java deleted file mode 100644 index bf3d50ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.common.BOAProcessRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonProcessRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessResponseType.java deleted file mode 100644 index f7035a40..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.common.BOAProcessResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonProcessResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonRequestType.java deleted file mode 100644 index c92be520..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonRequestType.java +++ /dev/null @@ -1,230 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on1basis.AcknowledgeDocumentsRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptRequest; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "technischeObjekte", - "korrelationsId" -}) -@XmlSeeAlso({ - CommonSearchRequestType.class, - GetApplicationDocumentRequestType.class, - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.class, - AddInformationToClaimRequest.class, - SubmitReceiptRequest.class, - CheckCoverageRequest.class, - CommonProcessRequestType.class, - CreateVBRequest.class, - ConversionProposalRequest.class, - ConversionScopeRequest.class, - AcknowledgeDocumentsRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "ClientId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List technischeParameter; - @XmlElement(name = "TechnischeObjekte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List technischeObjekte; - @XmlElement(name = "KorrelationsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String korrelationsId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der clientId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getClientId() { - return clientId; - } - - /** - * Legt den Wert der clientId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setClientId(String value) { - this.clientId = value; - } - - /** - * Gets the value of the technischeParameter property. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - return this.technischeObjekte; - } - - /** - * Ruft den Wert der korrelationsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKorrelationsId() { - return korrelationsId; - } - - /** - * Legt den Wert der korrelationsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKorrelationsId(String value) { - this.korrelationsId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonResponseType.java deleted file mode 100644 index 7f0a5c72..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonResponseType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on1basis.AcknowledgeDocumentsResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptResponse; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status", - "technischeObjekte", - "gestartet", - "beendet" -}) -@XmlSeeAlso({ - CommonSearchResponseType.class, - GetApplicationDocumentResponseType.class, - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class, - AddInformationToClaimResponse.class, - SubmitReceiptResponse.class, - CheckCoverageResponse.class, - CommonProcessResponseType.class, - CreateVBResponse.class, - ConversionProposalResponse.class, - ConversionScopeResponse.class, - AcknowledgeDocumentsResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ResponseStatusType status; - @XmlElement(name = "TechnischeObjekte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List technischeObjekte; - @XmlElement(name = "Gestartet") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gestartet; - @XmlElement(name = "Beendet") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar beendet; - - /** - * Ruft den Wert der status-Eigenschaft ab. - * - * @return - * possible object is - * {@link ResponseStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ResponseStatusType getStatus() { - return status; - } - - /** - * Legt den Wert der status-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ResponseStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatus(ResponseStatusType value) { - this.status = value; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - return this.technischeObjekte; - } - - /** - * Ruft den Wert der gestartet-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGestartet() { - return gestartet; - } - - /** - * Legt den Wert der gestartet-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGestartet(XMLGregorianCalendar value) { - this.gestartet = value; - } - - /** - * Ruft den Wert der beendet-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBeendet() { - return beendet; - } - - /** - * Legt den Wert der beendet-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeendet(XMLGregorianCalendar value) { - this.beendet = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchRequestType.java deleted file mode 100644 index 175a0d00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,225 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_15.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesRequestType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -@XmlSeeAlso({ - GetStateChangesRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonSearchRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String suchbegriff; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ELZeitraumType zeitraum; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String orderBy; - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der suchbegriff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSuchbegriff() { - return suchbegriff; - } - - /** - * Legt den Wert der suchbegriff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSuchbegriff(String value) { - this.suchbegriff = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ELZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ELZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxResults(long value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffset(long value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchResponseType.java deleted file mode 100644 index 501a5b93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,118 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_10_0.on1basis.GetStateChangesResponseType; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -@XmlSeeAlso({ - GetStateChangesResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CommonSearchResponseType - extends CommonResponseType -{ - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long totalResults; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DateianhangType.java deleted file mode 100644 index 0d57b843..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DateianhangType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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. - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Dateianhang_Type", propOrder = { - "mimetype", - "dateiType", - "dateiName", - "dateiData", - "dateiBeschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DateianhangType { - - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mimetype; - @XmlElement(name = "DateiType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer dateiType; - @XmlElement(name = "DateiName", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dateiName; - @XmlElement(name = "DateiData", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler dateiData; - @XmlElement(name = "DateiBeschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dateiBeschreibung; - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der dateiType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDateiType() { - return dateiType; - } - - /** - * Legt den Wert der dateiType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateiType(Integer value) { - this.dateiType = value; - } - - /** - * Ruft den Wert der dateiName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDateiName() { - return dateiName; - } - - /** - * Legt den Wert der dateiName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateiName(String value) { - this.dateiName = value; - } - - /** - * Ruft den Wert der dateiData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateiData(DataHandler value) { - this.dateiData = value; - } - - /** - * Ruft den Wert der dateiBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDateiBeschreibung() { - return dateiBeschreibung; - } - - /** - * Legt den Wert der dateiBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateiBeschreibung(String value) { - this.dateiBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DatenverwendungType.java deleted file mode 100644 index 9a011a14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DatenverwendungType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Datenverwendung_Type", propOrder = { - "zustimmungZurElektrUebermittlungVorvertraglDokumente", - "elektrUebermittlungVorvertraglDokumenteEmail", - "zustimmungZurVerwendungDerDatenZuWerbezwecken" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DatenverwendungType { - - @XmlElement(name = "ZustimmungZurElektrUebermittlungVorvertraglDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean zustimmungZurElektrUebermittlungVorvertraglDokumente; - @XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String elektrUebermittlungVorvertraglDokumenteEmail; - @XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken; - - /** - * Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isZustimmungZurElektrUebermittlungVorvertraglDokumente() { - return zustimmungZurElektrUebermittlungVorvertraglDokumente; - } - - /** - * Legt den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZustimmungZurElektrUebermittlungVorvertraglDokumente(Boolean value) { - this.zustimmungZurElektrUebermittlungVorvertraglDokumente = value; - } - - /** - * Ruft den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getElektrUebermittlungVorvertraglDokumenteEmail() { - return elektrUebermittlungVorvertraglDokumenteEmail; - } - - /** - * Legt den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setElektrUebermittlungVorvertraglDokumenteEmail(String value) { - this.elektrUebermittlungVorvertraglDokumenteEmail = value; - } - - /** - * Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() { - return zustimmungZurVerwendungDerDatenZuWerbezwecken; - } - - /** - * Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) { - this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DirectionCdType.java deleted file mode 100644 index d62145ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DirectionCdType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DirectionCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum DirectionCdType { - - - /** - * Input-Wert - * - */ - IN, - - /** - * Output-Wert - * - */ - OUT; - - public String value() { - return name(); - } - - public static DirectionCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentBinaryDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentBinaryDataType.java deleted file mode 100644 index fb5022b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentBinaryDataType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für DokumentBinaryData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentBinaryData_Type", propOrder = { - "dateiData", - "mimetype", - "groesse", - "datum", - "name" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DokumentBinaryDataType - extends DokumentDataType -{ - - @XmlElement(name = "DateiData", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler dateiData; - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long groesse; - @XmlElement(name = "Datum") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "Name") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - - /** - * Ruft den Wert der dateiData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateiData(DataHandler value) { - this.dateiData = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentDataType.java deleted file mode 100644 index 3fca57e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentDataType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für DokumentData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DokumentData_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentData_Type") -@XmlSeeAlso({ - DokumentBinaryDataType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class DokumentDataType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentInfoType.java deleted file mode 100644 index b3c656e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentInfoType.java +++ /dev/null @@ -1,338 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.activation.DataHandler; -import javax.annotation.Generated; -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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *               <enumeration value="4"/>
- *             </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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente", - "artAusfolgung", - "unterschrift" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DokumentInfoType { - - @XmlElement(name = "Content") - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler content; - @XmlElement(name = "Name") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int documentType; - @XmlElement(name = "Mimetype") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long groesse; - @XmlElement(name = "Datum") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "ReferenzWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List referenzWeitereDokumente; - @XmlElement(name = "ArtAusfolgung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short artAusfolgung; - @XmlElement(name = "Unterschrift") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short unterschrift; - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setContent(DataHandler value) { - this.content = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Gets the value of the referenzWeitereDokumente property. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArtAusfolgung(Short value) { - this.artAusfolgung = value; - } - - /** - * Ruft den Wert der unterschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getUnterschrift() { - return unterschrift; - } - - /** - * Legt den Wert der unterschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUnterschrift(Short value) { - this.unterschrift = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenDatenType.java deleted file mode 100644 index bb87587e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenDatenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; - - -/** - * Information und Binary zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DokumentenDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type">
- *       <sequence>
- *         <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentenDaten_Type", propOrder = { - "dateiData" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-10-16T15:46:31+02:00") -public class DokumentenDatenType - extends DokumentenReferenzType -{ - - @XmlElement(name = "DateiData", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-10-16T15:46:31+02:00") - protected DataHandler dateiData; - - /** - * Ruft den Wert der dateiData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-10-16T15:46:31+02:00") - public DataHandler getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-10-16T15:46:31+02:00") - public void setDateiData(DataHandler value) { - this.dateiData = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenReferenzType.java deleted file mode 100644 index bb058a63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,449 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="ZusaetzlicheAngabe" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Kontrollwert" minOccurs="0">
- *           <complexType>
- *             <simpleContent>
- *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *                 <attribute name="Typ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </extension>
- *             </simpleContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentenReferenz_Type", propOrder = { - "id", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "objektSpezifikation", - "referenzWeitereDokumente", - "zusaetzlicheAngabe", - "kontrollwert" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DokumentenReferenzType { - - @XmlElement(name = "Id", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ElementIdType id; - @XmlElement(name = "Name", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int documentType; - @XmlElement(name = "Mimetype") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long groesse; - @XmlElement(name = "Datum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "ObjektSpezifikation") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "ReferenzWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List referenzWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAngabe") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheAngabe; - @XmlElement(name = "Kontrollwert") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DokumentenReferenzType.Kontrollwert kontrollwert; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ElementIdType getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(ElementIdType value) { - this.id = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Gets the value of the referenzWeitereDokumente property. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAngabe property. - * - *

- * 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 set method for the zusaetzlicheAngabe property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAngabe().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDokumentendatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheAngabe() { - if (zusaetzlicheAngabe == null) { - zusaetzlicheAngabe = new ArrayList(); - } - return this.zusaetzlicheAngabe; - } - - /** - * Ruft den Wert der kontrollwert-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentenReferenzType.Kontrollwert } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DokumentenReferenzType.Kontrollwert getKontrollwert() { - return kontrollwert; - } - - /** - * Legt den Wert der kontrollwert-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentenReferenzType.Kontrollwert } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKontrollwert(DokumentenReferenzType.Kontrollwert value) { - this.kontrollwert = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <simpleContent>
-     *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
-     *       <attribute name="Typ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </extension>
-     *   </simpleContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "value" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Kontrollwert { - - @XmlValue - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String value; - @XmlAttribute(name = "Typ", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String typ; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(String value) { - this.value = value; - } - - /** - * Ruft den Wert der typ-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTyp() { - return typ; - } - - /** - * Legt den Wert der typ-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTyp(String value) { - this.typ = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EintragSchluessellisteType.java deleted file mode 100644 index e588fcd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EintragSchluesselliste_Type", propOrder = { - "text", - "schluessel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class EintragSchluessellisteType { - - @XmlElement(name = "Text", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String text; - @XmlElement(name = "Schluessel", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schluessel; - - /** - * Ruft den Wert der text-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getText() { - return text; - } - - /** - * Legt den Wert der text-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setText(String value) { - this.text = value; - } - - /** - * Ruft den Wert der schluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchluessel() { - return schluessel; - } - - /** - * Legt den Wert der schluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchluessel(String value) { - this.schluessel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwGesDatenVNType.java deleted file mode 100644 index 7da542a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwGesDatenVNType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Bekanntgabe Gesundheitsdaten an VN - * - *

Java-Klasse für EinwGesDatenVN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwGesDatenVN_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwGesDatenVN_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class EinwGesDatenVNType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwSprachaufzType.java deleted file mode 100644 index 3c417047..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwSprachaufzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Sprachaufzeichnung - * - *

Java-Klasse für EinwSprachaufz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwSprachaufz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwSprachaufz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class EinwSprachaufzType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwVerarbGesDatenType.java deleted file mode 100644 index e63e25e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwVerarbGesDatenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Verarbeitung Gesundheitsdaten - * - *

Java-Klasse für EinwVerarbGesDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwVerarbGesDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwVerarbGesDaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class EinwVerarbGesDatenType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungPersDatenType.java deleted file mode 100644 index aa6e4d2a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungPersDatenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für EinwilligungPersDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwilligungPersDaten_Type", propOrder = { - "personRefLfnr" -}) -@XmlSeeAlso({ - EinwVerarbGesDatenType.class, - EinwGesDatenVNType.class, - EinwSprachaufzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class EinwilligungPersDatenType - extends EinwilligungType -{ - - @XmlElement(name = "PersonRefLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonRefLfnr(int value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungType.java deleted file mode 100644 index e8a87315..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/EinwilligungType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Einwilligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Einwilligung_Type", propOrder = { - "zustimmung", - "text" -}) -@XmlSeeAlso({ - EinwilligungPersDatenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class EinwilligungType { - - @XmlElement(name = "Zustimmung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean zustimmung; - @XmlElement(name = "Text") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String text; - - /** - * Ruft den Wert der zustimmung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isZustimmung() { - return zustimmung; - } - - /** - * Legt den Wert der zustimmung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZustimmung(Boolean value) { - this.zustimmung = value; - } - - /** - * Ruft den Wert der text-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getText() { - return text; - } - - /** - * Legt den Wert der text-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setText(String value) { - this.text = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementFondsauswahlType.java deleted file mode 100644 index cd0c46a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementFondsauswahlType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ElementFondsauswahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementFondsauswahl_Type", propOrder = { - "isin", - "wkn", - "prozentanteil", - "zusaetzlicheFondsdaten", - "bezeichnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementFondsauswahlType { - - @XmlElement(name = "ISIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType isin; - @XmlElement(name = "WKN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType wkn; - @XmlElement(name = "Prozentanteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Float prozentanteil; - @XmlElement(name = "ZusaetzlicheFondsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheFondsdaten; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setISIN(AttributEnumType value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWKN(AttributEnumType value) { - this.wkn = value; - } - - /** - * Ruft den Wert der prozentanteil-Eigenschaft ab. - * - * @return - * possible object is - * {@link Float } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Float getProzentanteil() { - return prozentanteil; - } - - /** - * Legt den Wert der prozentanteil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Float } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentanteil(Float value) { - this.prozentanteil = value; - } - - /** - * Gets the value of the zusaetzlicheFondsdaten property. - * - *

- * 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 set method for the zusaetzlicheFondsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheFondsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheFondsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheFondsdaten() { - if (zusaetzlicheFondsdaten == null) { - zusaetzlicheFondsdaten = new ArrayList(); - } - return this.zusaetzlicheFondsdaten; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementIdType.java deleted file mode 100644 index 74f97041..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementIdType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementIdType", propOrder = { - "id", - "idValidUntil", - "idIsSingleUse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementIdType { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(required = true, nillable = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar idValidUntil; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean idIsSingleUse; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der idValidUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getIdValidUntil() { - return idValidUntil; - } - - /** - * Legt den Wert der idValidUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIdValidUntil(XMLGregorianCalendar value) { - this.idValidUntil = value; - } - - /** - * Ruft den Wert der idIsSingleUse-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isIdIsSingleUse() { - return idIsSingleUse; - } - - /** - * Legt den Wert der idIsSingleUse-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setIdIsSingleUse(boolean value) { - this.idIsSingleUse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index 1b975501..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,205 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.ElementarproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.TarifLebenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.LeistungsartUnfallType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ElementarproduktSachPrivatType.class, - LeistungsartUnfallType.class, - ElementarproduktKrankenType.class, - TarifLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - @XmlElement(name = "Versicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal versicherungssumme; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungssumme(BigDecimal value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktType.java deleted file mode 100644 index a102e9e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ElementarproduktType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "refSicherstellungLfnr", - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.class, - ElementarproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ElementarproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheElementarproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheElementarproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeMitAendGrundType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeMitAendGrundType.java deleted file mode 100644 index f1d06310..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeMitAendGrundType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErsatzpolizzeMitAendGrund_Type", propOrder = { - "aendGrundCd", - "aendGrundbez" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ErsatzpolizzeMitAendGrundType - extends ErsatzpolizzeType -{ - - @XmlElement(name = "AendGrundCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aendGrundCd; - @XmlElement(name = "AendGrundbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aendGrundbez; - - /** - * Ruft den Wert der aendGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAendGrundCd() { - return aendGrundCd; - } - - /** - * Legt den Wert der aendGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAendGrundCd(String value) { - this.aendGrundCd = value; - } - - /** - * Ruft den Wert der aendGrundbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAendGrundbez() { - return aendGrundbez; - } - - /** - * Legt den Wert der aendGrundbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAendGrundbez(String value) { - this.aendGrundbez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeType.java deleted file mode 100644 index 3de498c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzeType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Beschreibung einer durch Konvertierung zu ersetzenden Polizze - * - *

Java-Klasse für Ersatzpolizze_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizze_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizze_Type", propOrder = { - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - ErsatzpolizzeMitAendGrundType.class, - KonvertierungsumfangVertragType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ErsatzpolizzeType { - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzenType.java deleted file mode 100644 index 134bf044..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCANatPersonType.java deleted file mode 100644 index 16444a23..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_NatPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_NatPersonType", propOrder = { - "usIndizien", - "usSteuerpflicht" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FATCANatPersonType { - - @XmlElement(name = "US_Indizien") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean usIndizien; - @XmlElement(name = "US_Steuerpflicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean usSteuerpflicht; - - /** - * Ruft den Wert der usIndizien-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isUSIndizien() { - return usIndizien; - } - - /** - * Legt den Wert der usIndizien-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUSIndizien(boolean value) { - this.usIndizien = value; - } - - /** - * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isUSSteuerpflicht() { - return usSteuerpflicht; - } - - /** - * Legt den Wert der usSteuerpflicht-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUSSteuerpflicht(boolean value) { - this.usSteuerpflicht = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCASonstPersonType.java deleted file mode 100644 index b24355a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_SonstPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *         <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_SonstPersonType", propOrder = { - "landFirmensitz", - "giin", - "konzessionFinanzen", - "nichtFinanzielleDienstleistungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FATCASonstPersonType { - - @XmlElement(name = "LandFirmensitz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType landFirmensitz; - @XmlElement(name = "GIIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String giin; - @XmlElement(name = "KonzessionFinanzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean konzessionFinanzen; - @XmlElement(name = "NichtFinanzielleDienstleistungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean nichtFinanzielleDienstleistungen; - - /** - * Ruft den Wert der landFirmensitz-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getLandFirmensitz() { - return landFirmensitz; - } - - /** - * Legt den Wert der landFirmensitz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandFirmensitz(AttributEnumType value) { - this.landFirmensitz = value; - } - - /** - * Ruft den Wert der giin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGIIN() { - return giin; - } - - /** - * Legt den Wert der giin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGIIN(String value) { - this.giin = value; - } - - /** - * Ruft den Wert der konzessionFinanzen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isKonzessionFinanzen() { - return konzessionFinanzen; - } - - /** - * Legt den Wert der konzessionFinanzen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKonzessionFinanzen(boolean value) { - this.konzessionFinanzen = value; - } - - /** - * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isNichtFinanzielleDienstleistungen() { - return nichtFinanzielleDienstleistungen; - } - - /** - * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNichtFinanzielleDienstleistungen(boolean value) { - this.nichtFinanzielleDienstleistungen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCAType.java deleted file mode 100644 index 0e64c42e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FATCAType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- *         <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_Type", propOrder = { - "ustin", - "fatcaNatPerson", - "fatcaSonstPerson" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FATCAType { - - @XmlElement(name = "US_TIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ustin; - @XmlElement(name = "FATCA_NatPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected FATCANatPersonType fatcaNatPerson; - @XmlElement(name = "FATCA_SonstPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected FATCASonstPersonType fatcaSonstPerson; - - /** - * Ruft den Wert der ustin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getUSTIN() { - return ustin; - } - - /** - * Legt den Wert der ustin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUSTIN(String value) { - this.ustin = value; - } - - /** - * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCANatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public FATCANatPersonType getFATCANatPerson() { - return fatcaNatPerson; - } - - /** - * Legt den Wert der fatcaNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCANatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFATCANatPerson(FATCANatPersonType value) { - this.fatcaNatPerson = value; - } - - /** - * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCASonstPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public FATCASonstPersonType getFATCASonstPerson() { - return fatcaSonstPerson; - } - - /** - * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCASonstPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFATCASonstPerson(FATCASonstPersonType value) { - this.fatcaSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FahrzeugType.java deleted file mode 100644 index 72bd601a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/FahrzeugType.java +++ /dev/null @@ -1,1070 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_15.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
- *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
- *       <attribute name="Historisch" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer co2Ausstoss; - @XmlAttribute(name = "CO2_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer co2WLTPWMTC; - @XmlAttribute(name = "Kraftstoffverbr_NEFZ", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kraftstoffverbrNEFZ; - @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal kraftstoffverbrWLTPWMTC; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zulassdatHalter; - @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aufbauNatC; - @XmlAttribute(name = "Historisch", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean historisch; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getCO2WLTPWMTC() { - return co2WLTPWMTC; - } - - /** - * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setCO2WLTPWMTC(Integer value) { - this.co2WLTPWMTC = value; - } - - /** - * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKraftstoffverbrNEFZ() { - return kraftstoffverbrNEFZ; - } - - /** - * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKraftstoffverbrNEFZ(BigDecimal value) { - this.kraftstoffverbrNEFZ = value; - } - - /** - * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getKraftstoffverbrWLTPWMTC() { - return kraftstoffverbrWLTPWMTC; - } - - /** - * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { - this.kraftstoffverbrWLTPWMTC = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - - /** - * Ruft den Wert der aufbauNatC-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAufbauNatC() { - return aufbauNatC; - } - - /** - * Legt den Wert der aufbauNatC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAufbauNatC(String value) { - this.aufbauNatC = value; - } - - /** - * Ruft den Wert der historisch-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isHistorisch() { - return historisch; - } - - /** - * Legt den Wert der historisch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHistorisch(Boolean value) { - this.historisch = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GMSGType.java deleted file mode 100644 index 6ee2bb5d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GMSGType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GMSG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
-     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "land", - "steuernummer" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class SteuerlichAnsaessig { - - @XmlElement(name = "Land", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType land; - @XmlElement(name = "Steuernummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributStringType steuernummer; - - /** - * Ruft den Wert der land-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getLand() { - return land; - } - - /** - * Legt den Wert der land-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLand(AttributEnumType value) { - this.land = value; - } - - /** - * Ruft den Wert der steuernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributStringType getSteuernummer() { - return steuernummer; - } - - /** - * Legt den Wert der steuernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSteuernummer(AttributStringType value) { - this.steuernummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index cb8d9b7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index 040f4041..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GlaeubigerSicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { - "institut", - "plz", - "strasse", - "vertragsnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GlaeubigerSicherstellungType { - - @XmlElement(name = "Institut", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String institut; - @XmlElement(name = "PLZ", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlElement(name = "Strasse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String strasse; - @XmlElement(name = "Vertragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsnummer; - - /** - * Ruft den Wert der institut-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getInstitut() { - return institut; - } - - /** - * Legt den Wert der institut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setInstitut(String value) { - this.institut = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationType.java deleted file mode 100644 index 6b42f0e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 eine Kombination von Produktbaustein-Ids - * - *

Java-Klasse für Kombination_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombination_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TarifId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombination_Type", propOrder = { - "tarifids" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KombinationType { - - @XmlElement(name = "TarifId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List tarifids; - - /** - *

Die Liste der zulässigen Baustein-Ids.

- * Gets the value of the tarifids property. - * - *

- * 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 set method for the tarifids property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarifids().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTarifids() { - if (tarifids == null) { - tarifids = new ArrayList(); - } - return this.tarifids; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationenType.java deleted file mode 100644 index 2c9996c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KombinationenType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion. - * - *

Java-Klasse für Kombinationen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombinationen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="alle" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="zulaessige" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombinationen_Type", propOrder = { - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KombinationenType { - - @XmlElement(name = "Kombination") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List kombinationen; - @XmlAttribute(name = "alle", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean alle; - @XmlAttribute(name = "zulaessige", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean zulaessige; - - /** - *

Die Liste der zulässigen Kombinationen.

- * Gets the value of the kombinationen property. - * - *

- * 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 set method for the kombinationen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKombinationen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KombinationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKombinationen() { - if (kombinationen == null) { - kombinationen = new ArrayList(); - } - return this.kombinationen; - } - - /** - * Ruft den Wert der alle-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isAlle() { - return alle; - } - - /** - * Legt den Wert der alle-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAlle(boolean value) { - this.alle = value; - } - - /** - * Ruft den Wert der zulaessige-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isZulaessige() { - if (zulaessige == null) { - return true; - } else { - return zulaessige; - } - } - - /** - * Legt den Wert der zulaessige-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZulaessige(Boolean value) { - this.zulaessige = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KontierungType.java deleted file mode 100644 index 9cc7ea1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KontierungType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden, insbesondere - * wenn mehrere Vermittler an dem Vertrag beteiligt werden sollen. In der Regel wird die Aufteilung für Abschluss-, Folge- und Betreuungsprovision über alle Vermittler je Kategorie 100 Prozent ergeben. - * Es gibt aber auch Fälle, in denen die prozentuale Aufteilung nicht mit dem Antrag übermittelt wird, sondern an anderer Stelle festgelegt wird. Es sollen dann nur die beteiligten Vermittler übermittelt werden. - * Daher können die prozentualen Angaben ab Version 1.9 auch entfallen. - * - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "vermittlername", - "abschluss", - "folge", - "betreuung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermittlernummer; - @XmlElement(name = "Vermittlername") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermittlername; - @XmlElement(name = "Abschluss") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger abschluss; - @XmlElement(name = "Folge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger folge; - @XmlElement(name = "Betreuung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der vermittlername-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermittlername() { - return vermittlername; - } - - /** - * Legt den Wert der vermittlername-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermittlername(String value) { - this.vermittlername = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungBausteinType.java deleted file mode 100644 index 8227a8a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungBausteinType.java +++ /dev/null @@ -1,212 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Allgemeiner Typ um die Behandlung der Unterbausteine in der Konvertierung zu spezifizieren - * - *

Java-Klasse für KonvertierungBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungBaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Bezeichnung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungBaustein_Type", propOrder = { - "ersetztId", - "antragsId", - "bezeichnung", - "zulaessigeAktionen", - "gewaehlteAktion" -}) -@XmlSeeAlso({ - KonvertierungProduktBausteinType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungBausteinType { - - @XmlElement(name = "ErsetztId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersetztId; - @XmlElement(name = "AntragsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antragsId; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlElement(name = "ZulaessigeAktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zulaessigeAktionen; - @XmlElement(name = "GewaehlteAktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KonvertierungsaktionType gewaehlteAktion; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Ruft den Wert der antragsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntragsId() { - return antragsId; - } - - /** - * Legt den Wert der antragsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsId(String value) { - this.antragsId = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - *

Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - * Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - * Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

- * Gets the value of the zulaessigeAktionen property. - * - *

- * 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 set method for the zulaessigeAktionen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeAktionen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsaktionType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZulaessigeAktionen() { - if (zulaessigeAktionen == null) { - zulaessigeAktionen = new ArrayList(); - } - return this.zulaessigeAktionen; - } - - /** - * Ruft den Wert der gewaehlteAktion-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KonvertierungsaktionType getGewaehlteAktion() { - return gewaehlteAktion; - } - - /** - * Legt den Wert der gewaehlteAktion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGewaehlteAktion(KonvertierungsaktionType value) { - this.gewaehlteAktion = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungProduktBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungProduktBausteinType.java deleted file mode 100644 index 0ffddc6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungProduktBausteinType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ableitung für die Produktebene (Ebene 2) mit der zusätzlichen Möglichkeit die Sparte zu signalisieren - * - *

Java-Klasse für KonvertierungProduktBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungProduktBaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type">
- *       <sequence>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungProduktBaustein_Type", propOrder = { - "spartenCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungProduktBausteinType - extends KonvertierungBausteinType -{ - - @XmlElement(name = "SpartenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spartenCd; - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartenCd(String value) { - this.spartenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionBelassenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionBelassenType.java deleted file mode 100644 index 4da83deb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionBelassenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag) - * - *

Java-Klasse für KonvertierungsaktionBelassen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionBelassen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionBelassen_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungsaktionBelassenType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionStornoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionStornoType.java deleted file mode 100644 index 884b38f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionStornoType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen) - * - *

Java-Klasse für KonvertierungsaktionStorno_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionStorno_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionStorno_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungsaktionStornoType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionType.java deleted file mode 100644 index a287eb0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Aktion für einen Baustein - * - *

Java-Klasse für Konvertierungsaktion_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsaktion_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsaktion_Type", propOrder = { - "art" -}) -@XmlSeeAlso({ - KonvertierungsaktionBelassenType.class, - KonvertierungsaktionUebernehmenType.class, - KonvertierungsaktionStornoType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class KonvertierungsaktionType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String art; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(String value) { - this.art = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionUebernehmenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionUebernehmenType.java deleted file mode 100644 index 257d82ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsaktionUebernehmenType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen) - * - *

Java-Klasse für KonvertierungsaktionUebernehmen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionUebernehmen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *       <sequence>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionUebernehmen_Type", propOrder = { - "bausteine", - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungsaktionUebernehmenType - extends KonvertierungsaktionType -{ - - @XmlElement(name = "Baustein") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bausteine; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KombinationenType kombinationen; - - /** - *

Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungBausteinType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsumfangVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsumfangVertragType.java deleted file mode 100644 index 8c5c5baa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KonvertierungsumfangVertragType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag - * - *

Java-Klasse für KonvertierungsumfangVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsumfangVertrag_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
- *       <sequence>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungProduktBaustein_Type" maxOccurs="unbounded"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsumfangVertrag_Type", propOrder = { - "bezeichnung", - "bausteine", - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungsumfangVertragType - extends ErsatzpolizzeType -{ - - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bezeichnung; - @XmlElement(name = "Baustein", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bausteine; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KombinationenType kombinationen; - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - *

Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungProduktBausteinType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KostenFixOderProzentType.java deleted file mode 100644 index a2b09a44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KreditkarteType.java deleted file mode 100644 index 286c8916..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/KreditkarteType.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/LegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/LegitimationType.java deleted file mode 100644 index 12d42e24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/LegitimationType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELLegitimationType; - - -/** - * Daten zur Legitimation des Antragstellers bzw. Kunden - * - *

Java-Klasse für Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Legitimation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Legitimation_Type">
- *       <attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Legitimation_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class LegitimationType - extends ELLegitimationType -{ - - @XmlAttribute(name = "AusstellendesLand", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ausstellendesLand; - - /** - * Ruft den Wert der ausstellendesLand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAusstellendesLand() { - return ausstellendesLand; - } - - /** - * Legt den Wert der ausstellendesLand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusstellendesLand(String value) { - this.ausstellendesLand = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjectFactory.java deleted file mode 100644 index a403e704..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjectFactory.java +++ /dev/null @@ -1,1035 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GMSGType } - * - */ - public GMSGType createGMSGType() { - return new GMSGType(); - } - - /** - * Create an instance of {@link ZusatzdatenSchaden } - * - */ - public ZusatzdatenSchaden createZusatzdatenSchaden() { - return new ZusatzdatenSchaden(); - } - - /** - * Create an instance of {@link ZusatzdatenPolizze } - * - */ - public ZusatzdatenPolizze createZusatzdatenPolizze() { - return new ZusatzdatenPolizze(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ProzessDokumentType } - * - */ - public ProzessDokumentType createProzessDokumentType() { - return new ProzessDokumentType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link LegitimationType } - * - */ - public LegitimationType createLegitimationType() { - return new LegitimationType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link DokumentBinaryDataType } - * - */ - public DokumentBinaryDataType createDokumentBinaryDataType() { - return new DokumentBinaryDataType(); - } - - /** - * Create an instance of {@link AutorisierungType } - * - */ - public AutorisierungType createAutorisierungType() { - return new AutorisierungType(); - } - - /** - * Create an instance of {@link AutorisierungsAnforderungType } - * - */ - public AutorisierungsAnforderungType createAutorisierungsAnforderungType() { - return new AutorisierungsAnforderungType(); - } - - /** - * Create an instance of {@link AutorisierungsartType } - * - */ - public AutorisierungsartType createAutorisierungsartType() { - return new AutorisierungsartType(); - } - - /** - * Create an instance of {@link ProzessDokRequirementType } - * - */ - public ProzessDokRequirementType createProzessDokRequirementType() { - return new ProzessDokRequirementType(); - } - - /** - * Create an instance of {@link ProzessDokToReturnType } - * - */ - public ProzessDokToReturnType createProzessDokToReturnType() { - return new ProzessDokToReturnType(); - } - - /** - * Create an instance of {@link ProzessDokHandoutType } - * - */ - public ProzessDokHandoutType createProzessDokHandoutType() { - return new ProzessDokHandoutType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link KombinationenType } - * - */ - public KombinationenType createKombinationenType() { - return new KombinationenType(); - } - - /** - * Create an instance of {@link KombinationType } - * - */ - public KombinationType createKombinationType() { - return new KombinationType(); - } - - /** - * Create an instance of {@link ZusatzproduktGenerischType } - * - */ - public ZusatzproduktGenerischType createZusatzproduktGenerischType() { - return new ZusatzproduktGenerischType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType } - * - */ - public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() { - return new BezugsberechtigungGesetzlicheErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType } - * - */ - public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() { - return new BezugsberechtigungTestamentarischeErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungUeberbringerType } - * - */ - public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() { - return new BezugsberechtigungUeberbringerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungNamentlich } - * - */ - public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() { - return new BezugsberechtigungNamentlich(); - } - - /** - * Create an instance of {@link PersonNamentlichesBezugsrechtType } - * - */ - public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() { - return new PersonNamentlichesBezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType } - * - */ - public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() { - return new BezugsberechtigungVersicherungsnehmerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersichertePersonType } - * - */ - public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() { - return new BezugsberechtigungVersichertePersonType(); - } - - /** - * Create an instance of {@link BezugsberechtigungIndividuell } - * - */ - public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() { - return new BezugsberechtigungIndividuell(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link ErsatzpolizzeType } - * - */ - public ErsatzpolizzeType createErsatzpolizzeType() { - return new ErsatzpolizzeType(); - } - - /** - * Create an instance of {@link ErsatzpolizzeMitAendGrundType } - * - */ - public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() { - return new ErsatzpolizzeMitAendGrundType(); - } - - /** - * Create an instance of {@link KonvertierungsumfangVertragType } - * - */ - public KonvertierungsumfangVertragType createKonvertierungsumfangVertragType() { - return new KonvertierungsumfangVertragType(); - } - - /** - * Create an instance of {@link KonvertierungBausteinType } - * - */ - public KonvertierungBausteinType createKonvertierungBausteinType() { - return new KonvertierungBausteinType(); - } - - /** - * Create an instance of {@link KonvertierungProduktBausteinType } - * - */ - public KonvertierungProduktBausteinType createKonvertierungProduktBausteinType() { - return new KonvertierungProduktBausteinType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionBelassenType } - * - */ - public KonvertierungsaktionBelassenType createKonvertierungsaktionBelassenType() { - return new KonvertierungsaktionBelassenType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionUebernehmenType } - * - */ - public KonvertierungsaktionUebernehmenType createKonvertierungsaktionUebernehmenType() { - return new KonvertierungsaktionUebernehmenType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionStornoType } - * - */ - public KonvertierungsaktionStornoType createKonvertierungsaktionStornoType() { - return new KonvertierungsaktionStornoType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link Begriff } - * - */ - public Begriff createBegriff() { - return new Begriff(); - } - - /** - * Create an instance of {@link ZusatzdatenPerson } - * - */ - public ZusatzdatenPerson createZusatzdatenPerson() { - return new ZusatzdatenPerson(); - } - - /** - * Create an instance of {@link ZusatzdatenAntrag } - * - */ - public ZusatzdatenAntrag createZusatzdatenAntrag() { - return new ZusatzdatenAntrag(); - } - - /** - * Create an instance of {@link ZusatzdatenGeschaeftsfall } - * - */ - public ZusatzdatenGeschaeftsfall createZusatzdatenGeschaeftsfall() { - return new ZusatzdatenGeschaeftsfall(); - } - - /** - * Create an instance of {@link ZusatzdatenProvision } - * - */ - public ZusatzdatenProvision createZusatzdatenProvision() { - return new ZusatzdatenProvision(); - } - - /** - * Create an instance of {@link ZusatzdatenMahnverfahren } - * - */ - public ZusatzdatenMahnverfahren createZusatzdatenMahnverfahren() { - return new ZusatzdatenMahnverfahren(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link AbtretungType } - * - */ - public AbtretungType createAbtretungType() { - return new AbtretungType(); - } - - /** - * Create an instance of {@link VerpfaendungType } - * - */ - public VerpfaendungType createVerpfaendungType() { - return new VerpfaendungType(); - } - - /** - * Create an instance of {@link PfandglaeubigerType } - * - */ - public PfandglaeubigerType createPfandglaeubigerType() { - return new PfandglaeubigerType(); - } - - /** - * Create an instance of {@link VinkulierungPersonenType } - * - */ - public VinkulierungPersonenType createVinkulierungPersonenType() { - return new VinkulierungPersonenType(); - } - - /** - * Create an instance of {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() { - return new GlaeubigerSicherstellungType(); - } - - /** - * Create an instance of {@link EinwVerarbGesDatenType } - * - */ - public EinwVerarbGesDatenType createEinwVerarbGesDatenType() { - return new EinwVerarbGesDatenType(); - } - - /** - * Create an instance of {@link EinwGesDatenVNType } - * - */ - public EinwGesDatenVNType createEinwGesDatenVNType() { - return new EinwGesDatenVNType(); - } - - /** - * Create an instance of {@link EinwSprachaufzType } - * - */ - public EinwSprachaufzType createEinwSprachaufzType() { - return new EinwSprachaufzType(); - } - - /** - * Create an instance of {@link FATCAType } - * - */ - public FATCAType createFATCAType() { - return new FATCAType(); - } - - /** - * Create an instance of {@link FATCANatPersonType } - * - */ - public FATCANatPersonType createFATCANatPersonType() { - return new FATCANatPersonType(); - } - - /** - * Create an instance of {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType createFATCASonstPersonType() { - return new FATCASonstPersonType(); - } - - /** - * Create an instance of {@link PEPType } - * - */ - public PEPType createPEPType() { - return new PEPType(); - } - - /** - * Create an instance of {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType createTreuhaenderfrageType() { - return new TreuhaenderfrageType(); - } - - /** - * Create an instance of {@link ElementFondsauswahlType } - * - */ - public ElementFondsauswahlType createElementFondsauswahlType() { - return new ElementFondsauswahlType(); - } - - /** - * Create an instance of {@link at.vvo.omds.types.omds3Types.r1_10_0.common.BasisProduktbausteinType.Konvertierung } - * - */ - public at.vvo.omds.types.omds3Types.r1_10_0.common.BasisProduktbausteinType.Konvertierung createBasisProduktbausteinTypeKonvertierung() { - return new at.vvo.omds.types.omds3Types.r1_10_0.common.BasisProduktbausteinType.Konvertierung(); - } - - /** - * Create an instance of {@link GMSGType.SteuerlichAnsaessig } - * - */ - public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() { - return new GMSGType.SteuerlichAnsaessig(); - } - - /** - * Create an instance of {@link ZusatzdatenSchaden.Person } - * - */ - public ZusatzdatenSchaden.Person createZusatzdatenSchadenPerson() { - return new ZusatzdatenSchaden.Person(); - } - - /** - * Create an instance of {@link ZusatzdatenPolizze.Vertragsperson } - * - */ - public ZusatzdatenPolizze.Vertragsperson createZusatzdatenPolizzeVertragsperson() { - return new ZusatzdatenPolizze.Vertragsperson(); - } - - /** - * Create an instance of {@link DokumentenReferenzType.Kontrollwert } - * - */ - public DokumentenReferenzType.Kontrollwert createDokumentenReferenzTypeKontrollwert() { - return new DokumentenReferenzType.Kontrollwert(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link ProzessDokumentType.Autorisierungen } - * - */ - public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() { - return new ProzessDokumentType.Autorisierungen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * 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:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektIdType.java deleted file mode 100644 index 3baf0774..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektIdType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjektIdType { - - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ordnungsbegriffZuordFremd; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 1662213f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class, - SchadenmelderVermittlerType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffeneSchaedenType.java deleted file mode 100644 index 4a94c8b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffenerSchadenType.java deleted file mode 100644 index eab060d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PEPType.java deleted file mode 100644 index b3c36d91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PEPType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PEP_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PEP_Type", propOrder = { - "pep", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PEPType { - - @XmlElement(name = "PEP") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean pep; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPEP(boolean value) { - this.pep = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PartnerRoleType.java deleted file mode 100644 index f28b374f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PartnerRoleType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersBankverbindungType.java deleted file mode 100644 index 5571a8d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonNamentlichesBezugsrechtType.java deleted file mode 100644 index a5f93224..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonNamentlichesBezugsrechtType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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; - - -/** - *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersonNamentlichesBezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = { - "prozentsatz", - "zugunsten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PersonNamentlichesBezugsrechtType { - - @XmlElement(name = "Prozentsatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double prozentsatz; - @XmlElement(name = "Zugunsten") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int zugunsten; - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentsatz(Double value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der zugunsten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getZugunsten() { - return zugunsten; - } - - /** - * Legt den Wert der zugunsten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZugunsten(int value) { - this.zugunsten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonType.java deleted file mode 100644 index 83a86a19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PersonType.java +++ /dev/null @@ -1,452 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_15.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_15.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_15.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_15.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_15.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_15.ELTextType; -import at.vvo.omds.types.omds2Types.v2_15.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_15.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_15.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PersonType { - - @XmlElement(name = "ObjektId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PfandglaeubigerType.java deleted file mode 100644 index f9cdd797..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Pfandglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pfandglaeubiger_Type", propOrder = { - "anteil", - "glaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PfandglaeubigerType { - - @XmlElement(name = "Anteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected double anteil; - @XmlElement(name = "Glaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GlaeubigerSicherstellungType glaeubiger; - - /** - * Ruft den Wert der anteil-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public double getAnteil() { - return anteil; - } - - /** - * Legt den Wert der anteil-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAnteil(double value) { - this.anteil = value; - } - - /** - * Ruft den Wert der glaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GlaeubigerSicherstellungType getGlaeubiger() { - return glaeubiger; - } - - /** - * Legt den Wert der glaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGlaeubiger(GlaeubigerSicherstellungType value) { - this.glaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index ad2b50aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenversandType.java deleted file mode 100644 index 0b91c248..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PolizzenversandType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PraemieType.java deleted file mode 100644 index 539da9d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/PraemieType.java +++ /dev/null @@ -1,389 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Referenz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="JahrespraemieBto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag", - "referenz", - "jahrespraemieNto", - "jahrespraemieBto" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double abschlag; - @XmlElement(name = "Referenz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String referenz; - @XmlElement(name = "JahrespraemieNto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal jahrespraemieNto; - @XmlElement(name = "JahrespraemieBto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal jahrespraemieBto; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbschlag(Double value) { - this.abschlag = value; - } - - /** - * Ruft den Wert der referenz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getReferenz() { - return referenz; - } - - /** - * Legt den Wert der referenz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setReferenz(String value) { - this.referenz = value; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - - /** - * Ruft den Wert der jahrespraemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getJahrespraemieBto() { - return jahrespraemieBto; - } - - /** - * Legt den Wert der jahrespraemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setJahrespraemieBto(BigDecimal value) { - this.jahrespraemieBto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktGenerischType.java deleted file mode 100644 index e2211489..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktGenerischType.java +++ /dev/null @@ -1,168 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktSachPrivatType.class, - ProduktMitVpType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktMitVpType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktMitVpType.java deleted file mode 100644 index ba169da4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktMitVpType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.ProduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.ProduktLebenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.ProduktUnfallType; - - -/** - * Basistyp für ein Produkt vom Typ "Versicherte Person" für Personensparten - * - *

Java-Klasse für ProduktMitVp_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktMitVp_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktMitVp_Type", propOrder = { - "bezugsberechtigungen", - "versPersonenRefLfnr" -}) -@XmlSeeAlso({ - ProduktUnfallType.class, - ProduktKrankenType.class, - ProduktLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProduktMitVpType - extends ProduktGenerischType -{ - - @XmlElement(name = "Bezugsberechtigungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bezugsberechtigungen; - @XmlElement(name = "VersPersonenRefLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int versPersonenRefLfnr; - - /** - * Gets the value of the bezugsberechtigungen property. - * - *

- * 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 set method for the bezugsberechtigungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBezugsberechtigungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BezugsberechtigungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBezugsberechtigungen() { - if (bezugsberechtigungen == null) { - bezugsberechtigungen = new ArrayList(); - } - return this.bezugsberechtigungen; - } - - /** - * Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getVersPersonenRefLfnr() { - return versPersonenRefLfnr; - } - - /** - * Legt den Wert der versPersonenRefLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersPersonenRefLfnr(int value) { - this.versPersonenRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktType.java deleted file mode 100644 index 892514c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "refSicherstellungLfnr", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class, - ProduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheProduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheProduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index c677fb44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinType.java deleted file mode 100644 index 79234ecc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class, - ZusatzproduktType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokHandoutType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokHandoutType.java deleted file mode 100644 index 9cfda03b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokHandoutType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument für Kunde, nicht zu unterschreiben - * - *

Java-Klasse für ProzessDokHandout_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokHandout_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="ArtAusfolgung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokHandout_Type", propOrder = { - "dokData", - "artAusfolgung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProzessDokHandoutType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokData", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DokumentDataType dokData; - @XmlElement(name = "ArtAusfolgung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected short artAusfolgung; - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArtAusfolgung(short value) { - this.artAusfolgung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokRequirementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokRequirementType.java deleted file mode 100644 index 288aa882..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokRequirementType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Anforderung eines beizubringenden Dokuments - * - *

Java-Klasse für ProzessDokRequirement_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokRequirement_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" 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>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokRequirement_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "meldungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProzessDokRequirementType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zulaessigeMimetypes; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokToReturnType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokToReturnType.java deleted file mode 100644 index b91665dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokToReturnType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen - * - *

Java-Klasse für ProzessDokToReturn_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokToReturn_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokToReturn_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "dokData", - "meldungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProzessDokToReturnType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zulaessigeMimetypes; - @XmlElement(name = "DokData", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DokumentDataType dokData; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentBasisType.java deleted file mode 100644 index f910f6ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentBasisType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Basistyp für Bereitstellung und Anforderung von Dokumenten - * - *

Java-Klasse für ProzessDokumentBasis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokumentBasis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokumentBasis_Type", propOrder = { - "dokumenttyp", - "beschreibung" -}) -@XmlSeeAlso({ - ProzessDokRequirementType.class, - ProzessDokToReturnType.class, - ProzessDokHandoutType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ProzessDokumentBasisType { - - @XmlElement(name = "Dokumenttyp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentType.java deleted file mode 100644 index 139097fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ProzessDokumentType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. - * - *

Java-Klasse für ProzessDokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Autorisierungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokument_Type", propOrder = { - "dokAnforderungsId", - "dokumenttyp", - "beschreibung", - "autorisierungen", - "dokumentHinterlegt", - "dokData" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProzessDokumentType { - - @XmlElement(name = "DokAnforderungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Dokumenttyp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List autorisierungen; - @XmlElement(name = "DokumentHinterlegt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean dokumentHinterlegt; - @XmlElement(name = "DokData") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DokumentDataType dokData; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType.Autorisierungen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der dokumentHinterlegt-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isDokumentHinterlegt() { - return dokumentHinterlegt; - } - - /** - * Legt den Wert der dokumentHinterlegt-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentHinterlegt(boolean value) { - this.dokumentHinterlegt = value; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Autorisierungen - extends AutorisierungType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RaucherType.java deleted file mode 100644 index 069ded8d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RaucherType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Referenz.java deleted file mode 100644 index bf950725..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/Referenz.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class Referenz { - - @XmlElement(name = "Link", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object link; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ResponseStatusType.java deleted file mode 100644 index cdcccbde..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ResponseStatusType.java +++ /dev/null @@ -1,174 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - @XmlElement(name = "Referenzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List referenzen; - - /** - * Ruft den Wert der korrelationsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKorrelationsId() { - return korrelationsId; - } - - /** - * Legt den Wert der korrelationsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKorrelationsId(String value) { - this.korrelationsId = value; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RisikoNatPersonType.java deleted file mode 100644 index e5379583..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,548 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 82fa85d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SelbstbehaltType.java deleted file mode 100644 index 2c362f11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,196 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "art", - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SelbstbehaltType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String art; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ServiceFault.java deleted file mode 100644 index ed394f2d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ServiceFault.java +++ /dev/null @@ -1,169 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ServiceFault { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger errorType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger errorCode; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String errorMsg; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String elementReference; - - /** - * Ruft den Wert der errorType-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getErrorType() { - return errorType; - } - - /** - * Legt den Wert der errorType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorType(BigInteger value) { - this.errorType = value; - } - - /** - * Ruft den Wert der errorCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getErrorCode() { - return errorCode; - } - - /** - * Legt den Wert der errorCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorCode(BigInteger value) { - this.errorCode = value; - } - - /** - * Ruft den Wert der errorMsg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErrorMsg() { - return errorMsg; - } - - /** - * Legt den Wert der errorMsg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErrorMsg(String value) { - this.errorMsg = value; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SicherstellungType.java deleted file mode 100644 index 41aeec2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/SicherstellungType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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 fuer Sicherstellungen - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - @XmlElement(name = "Betrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/StatusType.java deleted file mode 100644 index 9d5551a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TarifIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TarifIdType.java deleted file mode 100644 index dcba1d48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TarifIdType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für eine TarifId. Dieser Typ muss von der VU überschrieben werden, - * die z.B. ein Enum für die zulässigen Tarifschlüssel anbietet. - * - *

Java-Klasse für TarifId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifId_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class TarifIdType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 2f925be4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String key; - @XmlElement(name = "Value", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKey(String value) { - this.key = value; - } - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValue(String value) { - this.value = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnischesObjektType.java deleted file mode 100644 index d45a9bac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TechnischesObjektType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TreuhaenderfrageType.java deleted file mode 100644 index 080cb71b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean treuhaender; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTreuhaender(boolean value) { - this.treuhaender = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/UploadDokumentType.java deleted file mode 100644 index e324c06c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/UploadDokumentType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler content; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int documentType; - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setContent(DataHandler value) { - this.content = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index 8f70de95..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,173 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.VerkaufsproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.VerkaufsproduktLebenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.VerkaufsproduktUnfallType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktSachPrivatType.class, - VerkaufsproduktUnfallType.class, - VerkaufsproduktKrankenType.class, - VerkaufsproduktLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktType.java deleted file mode 100644 index 4138b579..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.omds2Types.v2_15.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "refSicherstellungLfnr", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class, - VerkaufsproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerpfaendungType.java deleted file mode 100644 index acd8e3bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VerpfaendungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index d39d26d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int ueberdachteFlaecheInQm; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertePersonType.java deleted file mode 100644 index 7dab605f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertePersonType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index e8a0b5e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertePersonType.class, - VersicherteLiegenschaftType.class, - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseType.java deleted file mode 100644 index cff82609..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELBetragType; - - -/** - * Abstrakter Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Bewertung" type="{urn:omds20}EL-Betrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "ersetztId", - "zusaetzlicheRisikodaten", - "bewertung" -}) -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ErsetztId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersetztId; - @XmlElement(name = "ZusaetzlicheRisikodaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheRisikodaten; - @XmlElement(name = "Bewertung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bewertung; - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - - /** - * Gets the value of the bewertung property. - * - *

- * 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 set method for the bewertung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBewertung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBewertung() { - if (bewertung == null) { - bewertung = new ArrayList(); - } - return this.bewertung; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherungssteuerType.java deleted file mode 100644 index bac2dbcf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VertragspersonType.java deleted file mode 100644 index 1a1c5574..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VertragspersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkularglaeubigerType.java deleted file mode 100644 index fd70a9ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,190 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungPersonenType.java deleted file mode 100644 index ccce2f31..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungType.java deleted file mode 100644 index 516b3e48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VinkulierungType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VinkulierungType { - - @XmlElement(name = "PERSON", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PERSONType person; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PERSONType getPERSON() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPERSON(PERSONType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorlaeufigeDeckungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorlaeufigeDeckungType.java deleted file mode 100644 index 59bfa20e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorlaeufigeDeckungType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp fuer vorläufige Deckungen - * - *

Java-Klasse für VorlaeufigeDeckung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorlaeufigeDeckung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorlaeufigeDeckung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VorlaeufigeDeckungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungType.java deleted file mode 100644 index a923969a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungType.java +++ /dev/null @@ -1,139 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Angaben zu einer Vorversicherung in der Standardimplementierung, erweitert VorversicherungenDetail_Type - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenDetailType.java deleted file mode 100644 index f5c9e1ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type - * und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - VorversicherungType.class, - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = value; - } - - /** - * Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVersicherungsgesellschaft() { - return versicherungsgesellschaft; - } - - /** - * Legt den Wert der versicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungsgesellschaft(String value) { - this.versicherungsgesellschaft = value; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenImplType.java deleted file mode 100644 index d7cc00b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardimplementierung Vorversicherungen: Eine Liste von Vorversicherung_Type-Objekten - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenType.java deleted file mode 100644 index 17050f10..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/VorversicherungenType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen, wird verwendet in SpezAntrag_Type. - * Es gibt zwei Ableitungen im Standard: VorversicherungenKfz_Type und VorversicherungenImpl_Type (s.u.), jede VU kann aber auch eigene Implementierungen vornehmen. - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenImplType.class, - VorversicherungenKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlungsdatenType.java deleted file mode 100644 index 6aff8b69..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibt die Zahlungsdaten in Antragsservices - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kontonummer; - @XmlElement(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bic; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKontonummer(String value) { - this.kontonummer = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlwegType.java deleted file mode 100644 index 997262f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZahlwegType.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZeitraumType.java deleted file mode 100644 index ced858e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZeitraumType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZulassungsdatenType.java deleted file mode 100644 index e0cb2265..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheDokumentendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheDokumentendatenType.java deleted file mode 100644 index 9b1fb618..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheDokumentendatenType.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für Zusatzdaten zum Dokument - * - *

Java-Klasse für ZusaetzlicheDokumentendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheDokumentendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheDokumentendaten_Type") -@XmlSeeAlso({ - Begriff.class, - ZusatzdatenPerson.class, - ZusatzdatenPolizze.class, - ZusatzdatenSchaden.class, - ZusatzdatenAntrag.class, - ZusatzdatenGeschaeftsfall.class, - ZusatzdatenProvision.class, - ZusatzdatenMahnverfahren.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheDokumentendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index dbc7e26a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheFondsdatenType.java deleted file mode 100644 index 763dc0ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheFondsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheFondsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheFondsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheFondsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index b955a170..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index 9f53e596..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Risikodaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 32384ede..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index b4ecdea0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index d4260466..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenAntrag.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenAntrag.java deleted file mode 100644 index b0959447..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenAntrag.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten mit Antragsreferenzen - * - *

Java-Klasse für ZusatzdatenAntrag complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenAntrag">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Antragsnr" type="{urn:omds20}Polizzennr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenAntrag", propOrder = { - "antragsnr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenAntrag - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Antragsnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antragsnr; - - /** - * Ruft den Wert der antragsnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntragsnr() { - return antragsnr; - } - - /** - * Legt den Wert der antragsnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsnr(String value) { - this.antragsnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenGeschaeftsfall.java deleted file mode 100644 index dbd9d718..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenGeschaeftsfall.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten mit Geschaeftsfallreferenzen - * - *

Java-Klasse für ZusatzdatenGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenGeschaeftsfall", propOrder = { - "geschaeftsfallnummer", - "geschaeftsfallArt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenGeschaeftsfall - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Geschaeftsfallnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschaeftsfallArt; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenMahnverfahren.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenMahnverfahren.java deleted file mode 100644 index 6c50b5ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenMahnverfahren.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten mit Referenzen zur Mahnung - * - *

Java-Klasse für ZusatzdatenMahnverfahren complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenMahnverfahren">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Mahnverfahrennummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenMahnverfahren", propOrder = { - "mahnverfahrennummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenMahnverfahren - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Mahnverfahrennummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String mahnverfahrennummer; - - /** - * Ruft den Wert der mahnverfahrennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMahnverfahrennummer() { - return mahnverfahrennummer; - } - - /** - * Legt den Wert der mahnverfahrennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMahnverfahrennummer(String value) { - this.mahnverfahrennummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPerson.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPerson.java deleted file mode 100644 index 04863b68..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPerson.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten zu einem Dokument zu involvierten Personen - * - *

Java-Klasse für ZusatzdatenPerson complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenPerson">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="RolleText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenPerson", propOrder = { - "personId", - "rolleText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenPerson - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "PersonId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType personId; - @XmlElement(name = "RolleText") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rolleText; - - /** - * Ruft den Wert der personId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getPersonId() { - return personId; - } - - /** - * Legt den Wert der personId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonId(ObjektIdType value) { - this.personId = value; - } - - /** - * Ruft den Wert der rolleText-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRolleText() { - return rolleText; - } - - /** - * Legt den Wert der rolleText-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolleText(String value) { - this.rolleText = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPolizze.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPolizze.java deleted file mode 100644 index d87fa767..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenPolizze.java +++ /dev/null @@ -1,274 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.VtgRolleCdType; - - -/** - * Zusatzdaten mit Polizzenreferenzen - * - *

Java-Klasse für ZusatzdatenPolizze complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenPolizze">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Vertragsperson" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *                   <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenPolizze", propOrder = { - "polizzennr", - "vertragsID", - "aendGrundCd", - "vertragsperson" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenPolizze - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "AendGrundCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aendGrundCd; - @XmlElement(name = "Vertragsperson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertragsperson; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der aendGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAendGrundCd() { - return aendGrundCd; - } - - /** - * Legt den Wert der aendGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAendGrundCd(String value) { - this.aendGrundCd = value; - } - - /** - * Gets the value of the vertragsperson property. - * - *

- * 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 set method for the vertragsperson property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertragsperson().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzdatenPolizze.Vertragsperson } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVertragsperson() { - if (vertragsperson == null) { - vertragsperson = new ArrayList(); - } - return this.vertragsperson; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
-     *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "personId", - "rolle" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Vertragsperson { - - @XmlElement(name = "PersonId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType personId; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der personId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getPersonId() { - return personId; - } - - /** - * Legt den Wert der personId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonId(ObjektIdType value) { - this.personId = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenProvision.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenProvision.java deleted file mode 100644 index df4909df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenProvision.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten mit Provisionsreferenzen - * - *

Java-Klasse für ZusatzdatenProvision complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenProvision">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="ProvisionsID">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="26"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenProvision", propOrder = { - "provisionsID" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenProvision - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "ProvisionsID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String provisionsID; - - /** - * Ruft den Wert der provisionsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getProvisionsID() { - return provisionsID; - } - - /** - * Legt den Wert der provisionsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProvisionsID(String value) { - this.provisionsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenSchaden.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenSchaden.java deleted file mode 100644 index 173362b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzdatenSchaden.java +++ /dev/null @@ -1,240 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Zusatzdaten mit Schadensreferenzen - * - *

Java-Klasse für ZusatzdatenSchaden complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzdatenSchaden">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheDokumentendaten_Type">
- *       <sequence>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         <element name="BearbStand" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
- *         <element name="Person" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *                   <element name="Rolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzdatenSchaden", propOrder = { - "schadennr", - "bearbStand", - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzdatenSchaden - extends ZusaetzlicheDokumentendatenType -{ - - @XmlElement(name = "Schadennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - @XmlElement(name = "BearbStand") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStand; - @XmlElement(name = "Person") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List person; - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStand() { - return bearbStand; - } - - /** - * Legt den Wert der bearbStand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStand(String value) { - this.bearbStand = value; - } - - /** - * Gets the value of the person property. - * - *

- * 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 set method for the person property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPerson().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzdatenSchaden.Person } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPerson() { - if (person == null) { - person = new ArrayList(); - } - return this.person; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
-     *         <element name="Rolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "personId", - "rolle" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Person { - - @XmlElement(name = "PersonId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType personId; - @XmlElement(name = "Rolle", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String rolle; - - /** - * Ruft den Wert der personId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getPersonId() { - return personId; - } - - /** - * Legt den Wert der personId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonId(ObjektIdType value) { - this.personId = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRolle(String value) { - this.rolle = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktGenerischType.java deleted file mode 100644 index 181d816c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktGenerischType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.on2antrag.leben.ZusatzversicherungLebenType; - - -/** - * Basistyp für ein Zusatzprodukt, 2. Generation - * - *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ZusatzversicherungLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzproduktGenerischType - extends ZusatzproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibungTxt; - @XmlElement(name = "Versicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal versicherungssumme; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungssumme(BigDecimal value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktType.java deleted file mode 100644 index 5d91aa8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/ZusatzproduktType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Basistyp für ein Zusatzprodukt - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/package-info.java deleted file mode 100644 index 8b51fbc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStateChangeEventType.java deleted file mode 100644 index b88df228..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStateChangeEventType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Event einer Statusänderung - * - *

Java-Klasse für AbstractStateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStateChangeEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStateChangeEvent_Type") -@XmlSeeAlso({ - GeschaeftsfallEreignisType.class, - StateChangeEventType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AbstractStateChangeEventType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStatusGeschaeftsfallType.java deleted file mode 100644 index cfb7cb74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AbstractStatusGeschaeftsfallType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Deprecated: Abstrakter Status eines Geschaeftsfalls - * - *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStatusGeschaeftsfall_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStatusGeschaeftsfall_Type") -@XmlSeeAlso({ - StatusAntragsGeschaeftsfall.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class AbstractStatusGeschaeftsfallType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsRequest.java deleted file mode 100644 index 62d14afe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsRequest.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <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="ErhaltBestaetigt" type="{urn:omds20}Datum"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "authFilter", - "erhaltBestaetigt" -}) -@XmlRootElement(name = "AcknowledgeDocumentsRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AcknowledgeDocumentsRequest - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ErhaltBestaetigt", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar erhaltBestaetigt; - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der erhaltBestaetigt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getErhaltBestaetigt() { - return erhaltBestaetigt; - } - - /** - * Legt den Wert der erhaltBestaetigt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErhaltBestaetigt(XMLGregorianCalendar value) { - this.erhaltBestaetigt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsResponse.java deleted file mode 100644 index beb461dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AcknowledgeDocumentsResponse.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "AcknowledgeDocumentsResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AcknowledgeDocumentsResponse - extends CommonResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index db7e6a35..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected UploadDokumentType dokument; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 3e0623dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,83 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 2a780f0b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DocumentInfosResponseResultType { - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long totalResults; - @XmlElement(name = "DokumentInfos") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZeitraumType zeitraum; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisAntragType.java deleted file mode 100644 index 1e6af0f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisAntragType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ereignis in einem Geschäftsprozess vom Typ Antrag - * - *

Java-Klasse für GeschaeftsfallEreignisAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaeftsfallEreignisAntrag_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallEreignis_Type">
- *       <sequence>
- *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BisherigerAntragsstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaeftsfallEreignisAntrag_Type", propOrder = { - "antragsId", - "bisherigerAntragsstatus", - "antragsstatus" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaeftsfallEreignisAntragType - extends GeschaeftsfallEreignisType -{ - - @XmlElement(name = "AntragsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antragsId; - @XmlElement(name = "BisherigerAntragsstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer bisherigerAntragsstatus; - @XmlElement(name = "Antragsstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int antragsstatus; - - /** - * Ruft den Wert der antragsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntragsId() { - return antragsId; - } - - /** - * Legt den Wert der antragsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsId(String value) { - this.antragsId = value; - } - - /** - * Ruft den Wert der bisherigerAntragsstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getBisherigerAntragsstatus() { - return bisherigerAntragsstatus; - } - - /** - * Legt den Wert der bisherigerAntragsstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBisherigerAntragsstatus(Integer value) { - this.bisherigerAntragsstatus = value; - } - - /** - * Ruft den Wert der antragsstatus-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getAntragsstatus() { - return antragsstatus; - } - - /** - * Legt den Wert der antragsstatus-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsstatus(int value) { - this.antragsstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisSchadenType.java deleted file mode 100644 index e0987eb1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisSchadenType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ereignis in einem Geschäftsprozess vom Typ Schaden - * - *

Java-Klasse für GeschaeftsfallEreignisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaeftsfallEreignisSchaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallEreignis_Type">
- *       <sequence>
- *         <element name="BisherigerBearbStandCd" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:omds20}BearbStandCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaeftsfallEreignisSchaden_Type", propOrder = { - "bisherigerBearbStandCd", - "bearbStandCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaeftsfallEreignisSchadenType - extends GeschaeftsfallEreignisType -{ - - @XmlElement(name = "BisherigerBearbStandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bisherigerBearbStandCd; - @XmlElement(name = "BearbStandCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStandCd; - - /** - * Ruft den Wert der bisherigerBearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBisherigerBearbStandCd() { - return bisherigerBearbStandCd; - } - - /** - * Legt den Wert der bisherigerBearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBisherigerBearbStandCd(String value) { - this.bisherigerBearbStandCd = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisType.java deleted file mode 100644 index 60cba479..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallEreignisType.java +++ /dev/null @@ -1,844 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.ArtAenderungType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; - - -/** - * Ereignis in einem Geschäftsprozess, z.B. der Abschluss eines Arbeitsschritts im Prozess - * - *

Java-Klasse für GeschaeftsfallEreignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaeftsfallEreignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *         <element name="Geschaeftsfallnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type"/>
- *         <element name="Zeitpunkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Txt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallStatus_Type" minOccurs="0"/>
- *         <element name="Status" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallStatus_Type"/>
- *         <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Objekt" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *                   <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *                   <element name="ArtAenderung" type="{urn:omds3CommonServiceTypes-1-1-0}ArtAenderung_Type"/>
- *                   <element name="GueltigAb" type="{urn:omds20}Datum"/>
- *                   <element name="BisherigerStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *                   <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
- *                     <complexType>
- *                       <complexContent>
- *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                           <sequence>
- *                             <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                             <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *                           </sequence>
- *                         </restriction>
- *                       </complexContent>
- *                     </complexType>
- *                   </element>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaeftsfallEreignis_Type", propOrder = { - "id", - "vermnr", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "zeitpunkt", - "txt", - "bisherigerStatus", - "status", - "dokument", - "objekt" -}) -@XmlSeeAlso({ - GeschaeftsfallEreignisAntragType.class, - GeschaeftsfallEreignisSchadenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaeftsfallEreignisType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschaeftsfallArt; - @XmlElement(name = "Zeitpunkt", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar zeitpunkt; - @XmlElement(name = "Txt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String txt; - @XmlElement(name = "BisherigerStatus") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeschaeftsfallStatusType bisherigerStatus; - @XmlElement(name = "Status", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeschaeftsfallStatusType status; - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokument; - @XmlElement(name = "Objekt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List objekt; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(String value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der zeitpunkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getZeitpunkt() { - return zeitpunkt; - } - - /** - * Legt den Wert der zeitpunkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitpunkt(XMLGregorianCalendar value) { - this.zeitpunkt = value; - } - - /** - * Ruft den Wert der txt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTxt() { - return txt; - } - - /** - * Legt den Wert der txt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTxt(String value) { - this.txt = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsfallStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeschaeftsfallStatusType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsfallStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBisherigerStatus(GeschaeftsfallStatusType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der status-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsfallStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeschaeftsfallStatusType getStatus() { - return status; - } - - /** - * Legt den Wert der status-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsfallStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatus(GeschaeftsfallStatusType value) { - this.status = value; - } - - /** - * Gets the value of the dokument property. - * - *

- * 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 set method for the dokument property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokument().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaeftsfallEreignisType.Dokument } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokument() { - if (dokument == null) { - dokument = new ArrayList(); - } - return this.dokument; - } - - /** - * Gets the value of the objekt property. - * - *

- * 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 set method for the objekt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getObjekt().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaeftsfallEreignisType.Objekt } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getObjekt() { - if (objekt == null) { - objekt = new ArrayList(); - } - return this.objekt; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "dokumentId", - "typ" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Dokument { - - @XmlElement(name = "DokumentId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dokumentId; - @XmlElement(name = "Typ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int typ; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentId(String value) { - this.dokumentId = value; - } - - /** - * Ruft den Wert der typ-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getTyp() { - return typ; - } - - /** - * Legt den Wert der typ-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTyp(int value) { - this.typ = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
-     *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
-     *         <element name="ArtAenderung" type="{urn:omds3CommonServiceTypes-1-1-0}ArtAenderung_Type"/>
-     *         <element name="GueltigAb" type="{urn:omds20}Datum"/>
-     *         <element name="BisherigerStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
-     *         <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
-     *           <complexType>
-     *             <complexContent>
-     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *                 <sequence>
-     *                   <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *                   <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
-     *                 </sequence>
-     *               </restriction>
-     *             </complexContent>
-     *           </complexType>
-     *         </element>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "objektart", - "objektId", - "artAenderung", - "gueltigAb", - "bisherigerStatus", - "status", - "dokument" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Objekt { - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlElement(name = "ArtAenderung", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ArtAenderungType artAenderung; - @XmlElement(name = "GueltigAb", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "BisherigerStatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bisherigerStatus; - @XmlElement(name = "Status", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String status; - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokument; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der artAenderung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtAenderungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ArtAenderungType getArtAenderung() { - return artAenderung; - } - - /** - * Legt den Wert der artAenderung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtAenderungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArtAenderung(ArtAenderungType value) { - this.artAenderung = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBisherigerStatus(String value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der status-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getStatus() { - return status; - } - - /** - * Legt den Wert der status-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the dokument property. - * - *

- * 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 set method for the dokument property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getDokument().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaeftsfallEreignisType.Objekt.Dokument } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokument() { - if (dokument == null) { - dokument = new ArrayList(); - } - return this.dokument; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-         * <complexType>
-         *   <complexContent>
-         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-         *       <sequence>
-         *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-         *         <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
-         *       </sequence>
-         *     </restriction>
-         *   </complexContent>
-         * </complexType>
-         * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "dokumentId", - "typ" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Dokument { - - @XmlElement(name = "DokumentId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dokumentId; - @XmlElement(name = "Typ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int typ; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentId(String value) { - this.dokumentId = value; - } - - /** - * Ruft den Wert der typ-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getTyp() { - return typ; - } - - /** - * Legt den Wert der typ-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTyp(int value) { - this.typ = value; - } - - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 5fb19f3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,298 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index c95ec67a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index e86bf719..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,298 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 266ac69e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 5bf135bc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,196 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer dokumentType; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 7515070d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesRequestType.java deleted file mode 100644 index 8c04753f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesRequestType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.CommonSearchRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.GeschaeftsobjektArtType; - - -/** - * Typ des Requestobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
- *       <sequence>
- *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesRequest_Type", propOrder = { - "geschaeftsobjektArt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetStateChangesRequestType - extends CommonSearchRequestType -{ - - @XmlElement(name = "GeschaeftsobjektArt") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeschaeftsobjektArtType geschaeftsobjektArt; - - /** - * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeschaeftsobjektArtType getGeschaeftsobjektArt() { - return geschaeftsobjektArt; - } - - /** - * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { - this.geschaeftsobjektArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesResponseType.java deleted file mode 100644 index 5b84a7df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GetStateChangesResponseType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonSearchResponseType; - - -/** - * Typ des Responseobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
- *       <sequence>
- *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesResponse_Type", propOrder = { - "event" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetStateChangesResponseType - extends CommonSearchResponseType -{ - - @XmlElement(name = "Event") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List event; - - /** - * Gets the value of the event property. - * - *

- * 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 set method for the event property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getEvent() { - if (event == null) { - event = new ArrayList(); - } - return this.event; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/ObjectFactory.java deleted file mode 100644 index 4fed1134..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,345 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest"); - private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisType } - * - */ - public GeschaeftsfallEreignisType createGeschaeftsfallEreignisType() { - return new GeschaeftsfallEreignisType(); - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisType.Objekt } - * - */ - public GeschaeftsfallEreignisType.Objekt createGeschaeftsfallEreignisTypeObjekt() { - return new GeschaeftsfallEreignisType.Objekt(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link AcknowledgeDocumentsRequest } - * - */ - public AcknowledgeDocumentsRequest createAcknowledgeDocumentsRequest() { - return new AcknowledgeDocumentsRequest(); - } - - /** - * Create an instance of {@link AcknowledgeDocumentsResponse } - * - */ - public AcknowledgeDocumentsResponse createAcknowledgeDocumentsResponse() { - return new AcknowledgeDocumentsResponse(); - } - - /** - * Create an instance of {@link GetStateChangesRequestType } - * - */ - public GetStateChangesRequestType createGetStateChangesRequestType() { - return new GetStateChangesRequestType(); - } - - /** - * Create an instance of {@link GetStateChangesResponseType } - * - */ - public GetStateChangesResponseType createGetStateChangesResponseType() { - return new GetStateChangesResponseType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisAntragType } - * - */ - public GeschaeftsfallEreignisAntragType createGeschaeftsfallEreignisAntragType() { - return new GeschaeftsfallEreignisAntragType(); - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisSchadenType } - * - */ - public GeschaeftsfallEreignisSchadenType createGeschaeftsfallEreignisSchadenType() { - return new GeschaeftsfallEreignisSchadenType(); - } - - /** - * Create an instance of {@link StateChangeEventType } - * - */ - public StateChangeEventType createStateChangeEventType() { - return new StateChangeEventType(); - } - - /** - * Create an instance of {@link StatusAntragsGeschaeftsfall } - * - */ - public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { - return new StatusAntragsGeschaeftsfall(); - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisType.Dokument } - * - */ - public GeschaeftsfallEreignisType.Dokument createGeschaeftsfallEreignisTypeDokument() { - return new GeschaeftsfallEreignisType.Dokument(); - } - - /** - * Create an instance of {@link GeschaeftsfallEreignisType.Objekt.Dokument } - * - */ - public GeschaeftsfallEreignisType.Objekt.Dokument createGeschaeftsfallEreignisTypeObjektDokument() { - return new GeschaeftsfallEreignisType.Objekt.Dokument(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest") - public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { - return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse") - public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { - return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StateChangeEventType.java deleted file mode 100644 index fe52178d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StateChangeEventType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; - - -/** - * Deprecated: Verwende statt dessen GeschaeftsfallEreignis_Type - * - *

Java-Klasse für StateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StateChangeEvent_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
- *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StateChangeEvent_Type", propOrder = { - "objektart", - "objektId", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "aenderungsdatum", - "statusGueltigAbDatum", - "bisherigerStatus", - "neuerStatus" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class StateChangeEventType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschaeftsfallArt; - @XmlElement(name = "Aenderungsdatum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar aenderungsdatum; - @XmlElement(name = "StatusGueltigAbDatum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar statusGueltigAbDatum; - @XmlElement(name = "BisherigerStatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AbstractStatusGeschaeftsfallType bisherigerStatus; - @XmlElement(name = "NeuerStatus", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AbstractStatusGeschaeftsfallType neuerStatus; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der aenderungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getAenderungsdatum() { - return aenderungsdatum; - } - - /** - * Legt den Wert der aenderungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAenderungsdatum(XMLGregorianCalendar value) { - this.aenderungsdatum = value; - } - - /** - * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getStatusGueltigAbDatum() { - return statusGueltigAbDatum; - } - - /** - * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { - this.statusGueltigAbDatum = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AbstractStatusGeschaeftsfallType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der neuerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AbstractStatusGeschaeftsfallType getNeuerStatus() { - return neuerStatus; - } - - /** - * Legt den Wert der neuerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { - this.neuerStatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StatusAntragsGeschaeftsfall.java deleted file mode 100644 index b2d13f11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/StatusAntragsGeschaeftsfall.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Deprecated: Status eines Antrags - * - *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StatusAntragsGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { - "antragstatus" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class StatusAntragsGeschaeftsfall - extends AbstractStatusGeschaeftsfallType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int antragstatus; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragstatus(int value) { - this.antragstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/package-info.java deleted file mode 100644 index 8f53ba07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessRequestType.java deleted file mode 100644 index b2501b96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Request-Types - * - *

Java-Klasse für BOAProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessRequest_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationRequestType.class, - CreateApplicationRequestType.class, - CreateOfferRequestType.class, - CalculateRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BOAProcessRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Aenderungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessResponseType.java deleted file mode 100644 index 3bfbe0f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/BOAProcessResponseType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Response-Types - * - *

Java-Klasse für BOAProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessResponse_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationResponseType.class, - CreateApplicationResponseType.class, - CreateOfferResponseType.class, - CalculateResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BOAProcessResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Aenderungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index d37b699c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.CalculateKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateSachPrivatRequestType.class, - CalculateUnfallRequestType.class, - CalculateLebenRequestType.class, - CalculateKrankenRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 5a931f14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class, - CalculateRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CalculateRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index fd1a01d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateSachPrivatResponseType.class, - CalculateUnfallResponseType.class, - CalculateLebenResponseType.class, - CalculateKrankenResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index bdc46986..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class, - CalculateResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CalculateResponseType - extends BOAProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalRequest.java deleted file mode 100644 index 5007cd09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Konvertierungsplan" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsplan" -}) -@XmlRootElement(name = "ConversionProposalRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ConversionProposalRequest - extends CommonRequestType -{ - - @XmlElement(name = "Konvertierungsplan", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KonvertierungsumfangType konvertierungsplan; - - /** - * Ruft den Wert der konvertierungsplan-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KonvertierungsumfangType getKonvertierungsplan() { - return konvertierungsplan; - } - - /** - * Legt den Wert der konvertierungsplan-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKonvertierungsplan(KonvertierungsumfangType value) { - this.konvertierungsplan = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalResponse.java deleted file mode 100644 index 56558ada..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionProposalResponse.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ErsatzpolizzeType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokHandoutType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Vorschlag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ersatzpolizze" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vorschlag", - "dokument", - "ersatzpolizze" -}) -@XmlRootElement(name = "ConversionProposalResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ConversionProposalResponse - extends CommonResponseType -{ - - @XmlElement(name = "Vorschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragType vorschlag; - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokument; - @XmlElement(name = "Ersatzpolizze") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List ersatzpolizze; - - /** - * Ruft den Wert der vorschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragType getVorschlag() { - return vorschlag; - } - - /** - * Legt den Wert der vorschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorschlag(SpezAntragType value) { - this.vorschlag = value; - } - - /** - * Gets the value of the dokument property. - * - *

- * 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 set method for the dokument property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokument().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokHandoutType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokument() { - if (dokument == null) { - dokument = new ArrayList(); - } - return this.dokument; - } - - /** - * Gets the value of the ersatzpolizze property. - * - *

- * 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 set method for the ersatzpolizze property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizze().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getErsatzpolizze() { - if (ersatzpolizze == null) { - ersatzpolizze = new ArrayList(); - } - return this.ersatzpolizze; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeRequest.java deleted file mode 100644 index 659da013..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeRequest.java +++ /dev/null @@ -1,80 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ErsatzpolizzeType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vertraege" -}) -@XmlRootElement(name = "ConversionScopeRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ConversionScopeRequest - extends CommonRequestType -{ - - @XmlElement(name = "Vertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeResponse.java deleted file mode 100644 index 6b79b5e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ConversionScopeResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Konvertierungsmoeglichkeit" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsmoeglichkeit" -}) -@XmlRootElement(name = "ConversionScopeResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ConversionScopeResponse - extends CommonResponseType -{ - - @XmlElement(name = "Konvertierungsmoeglichkeit", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KonvertierungsumfangType konvertierungsmoeglichkeit; - - /** - * Ruft den Wert der konvertierungsmoeglichkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KonvertierungsumfangType getKonvertierungsmoeglichkeit() { - return konvertierungsmoeglichkeit; - } - - /** - * Legt den Wert der konvertierungsmoeglichkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKonvertierungsmoeglichkeit(KonvertierungsumfangType value) { - this.konvertierungsmoeglichkeit = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index 218a674c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.CreateApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationSachPrivatRequestType.class, - CreateApplicationUnfallRequestType.class, - CreateApplicationLebenRequestType.class, - CreateApplicationKrankenRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index f92af092..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class, - CreateApplicationRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index 094b01bc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationSachPrivatResponseType.class, - CreateApplicationUnfallResponseType.class, - CreateApplicationLebenResponseType.class, - CreateApplicationKrankenResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 71400261..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class, - CreateApplicationResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index a59b33d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.CreateOfferKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferSachPrivatRequestType.class, - CreateOfferUnfallRequestType.class, - CreateOfferLebenRequestType.class, - CreateOfferKrankenRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index dbf18595..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class, - CreateOfferRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateOfferRequestType - extends BOAProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index d5ba53fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferSachPrivatResponseType.class, - CreateOfferUnfallResponseType.class, - CreateOfferLebenResponseType.class, - CreateOfferKrankenResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index cb849866..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class, - CreateOfferResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class CreateOfferResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumenteAnforderungen; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index d1c269e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index afcf63c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/KonvertierungsumfangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/KonvertierungsumfangType.java deleted file mode 100644 index 71a358df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/KonvertierungsumfangType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.KonvertierungsumfangVertragType; - - -/** - * Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag - * - *

Java-Klasse für Konvertierungsumfang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsumfang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsumfang_Type", propOrder = { - "vertraege" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class KonvertierungsumfangType { - - @XmlElement(name = "Vertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsumfangVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index dcde37a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,145 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link ConversionScopeRequest } - * - */ - public ConversionScopeRequest createConversionScopeRequest() { - return new ConversionScopeRequest(); - } - - /** - * Create an instance of {@link ConversionScopeResponse } - * - */ - public ConversionScopeResponse createConversionScopeResponse() { - return new ConversionScopeResponse(); - } - - /** - * Create an instance of {@link KonvertierungsumfangType } - * - */ - public KonvertierungsumfangType createKonvertierungsumfangType() { - return new KonvertierungsumfangType(); - } - - /** - * Create an instance of {@link ConversionProposalRequest } - * - */ - public ConversionProposalRequest createConversionProposalRequest() { - return new ConversionProposalRequest(); - } - - /** - * Create an instance of {@link ConversionProposalResponse } - * - */ - public ConversionProposalResponse createConversionProposalResponse() { - return new ConversionProposalResponse(); - } - - /** - * Create an instance of {@link SpezBOASchrittType } - * - */ - public SpezBOASchrittType createSpezBOASchrittType() { - return new SpezBOASchrittType(); - } - - /** - * Create an instance of {@link BOAProcessRequestType } - * - */ - public BOAProcessRequestType createBOAProcessRequestType() { - return new BOAProcessRequestType(); - } - - /** - * Create an instance of {@link BOAProcessResponseType } - * - */ - public BOAProcessResponseType createBOAProcessResponseType() { - return new BOAProcessResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragPersonenType.java deleted file mode 100644 index 0015f1f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragPersonenType.java +++ /dev/null @@ -1,173 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.common.FATCAType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.GMSGType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PEPType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.TreuhaenderfrageType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SpezAntragLebenType; - - -/** - * Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntragPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
- *         <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
- *         <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type"/>
- *         <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragPersonen_Type", propOrder = { - "fatca", - "gsgm", - "pep", - "treuhaenderfrage" -}) -@XmlSeeAlso({ - SpezAntragLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SpezAntragPersonenType - extends SpezAntragType -{ - - @XmlElement(name = "FATCA") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected FATCAType fatca; - @XmlElement(name = "GSGM") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GMSGType gsgm; - @XmlElement(name = "PEP", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PEPType pep; - @XmlElement(name = "Treuhaenderfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected TreuhaenderfrageType treuhaenderfrage; - - /** - * Ruft den Wert der fatca-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCAType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public FATCAType getFATCA() { - return fatca; - } - - /** - * Legt den Wert der fatca-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCAType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFATCA(FATCAType value) { - this.fatca = value; - } - - /** - * Ruft den Wert der gsgm-Eigenschaft ab. - * - * @return - * possible object is - * {@link GMSGType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GMSGType getGSGM() { - return gsgm; - } - - /** - * Legt den Wert der gsgm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GMSGType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGSGM(GMSGType value) { - this.gsgm = value; - } - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - * @return - * possible object is - * {@link PEPType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PEPType getPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PEPType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPEP(PEPType value) { - this.pep = value; - } - - /** - * Ruft den Wert der treuhaenderfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link TreuhaenderfrageType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public TreuhaenderfrageType getTreuhaenderfrage() { - return treuhaenderfrage; - } - - /** - * Legt den Wert der treuhaenderfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TreuhaenderfrageType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTreuhaenderfrage(TreuhaenderfrageType value) { - this.treuhaenderfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 9c6aad9a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,717 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.EinwilligungType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SicherstellungType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SpezAntragKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.AntragSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SpezAntragUnfallType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten", - "sicherstellungen", - "einwilligungen", - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - SpezAntragKfzType.class, - AntragSachPrivatType.class, - SpezAntragUnfallType.class, - SpezAntragKrankenType.class, - SpezAntragPersonenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SpezAntragType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheAntragsdaten; - @XmlElement(name = "Sicherstellungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List sicherstellungen; - @XmlElement(name = "Einwilligungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List einwilligungen; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - - /** - * Gets the value of the sicherstellungen property. - * - *

- * 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 set method for the sicherstellungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSicherstellungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SicherstellungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSicherstellungen() { - if (sicherstellungen == null) { - sicherstellungen = new ArrayList(); - } - return this.sicherstellungen; - } - - /** - * Gets the value of the einwilligungen property. - * - *

- * 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 set method for the einwilligungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEinwilligungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EinwilligungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getEinwilligungen() { - if (einwilligungen == null) { - einwilligungen = new ArrayList(); - } - return this.einwilligungen; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBOASchrittType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBOASchrittType.java deleted file mode 100644 index 9cafa024..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBOASchrittType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrackter Basistyp für das Datenmodell aller BOA-Prozessschritte - * - *

Java-Klasse für SpezBOASchritt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBOASchritt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBOASchritt_Type") -@XmlSeeAlso({ - SpezBerechnungType.class, - SpezOffertType.class, - SpezAntragType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezBOASchrittType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index b78a8a5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SpezBerechnungKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SpezBerechnungLebenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.BerechnungSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SpezBerechnungUnfallType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - SpezBerechnungKfzType.class, - BerechnungSachPrivatType.class, - SpezBerechnungUnfallType.class, - SpezBerechnungKrankenType.class, - SpezBerechnungLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SpezBerechnungType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Personen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index 7cce06fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SpezOffertKrankenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SpezOffertLebenType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.OffertSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SpezOffertUnfallType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertKfzType.class, - OffertSachPrivatType.class, - SpezOffertUnfallType.class, - SpezOffertKrankenType.class, - SpezOffertLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SpezOffertType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Offertnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index 6e274cf7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -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_10_0.on2antrag.kranken.SubmitApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationSachPrivatRequestType.class, - SubmitApplicationUnfallRequestType.class, - SubmitApplicationLebenRequestType.class, - SubmitApplicationKrankenRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index 93d186d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class, - SubmitApplicationRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SubmitApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - @XmlElement(name = "Antragsnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index 82d9452f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationSachPrivatResponseType.class, - SubmitApplicationUnfallResponseType.class, - SubmitApplicationLebenResponseType.class, - SubmitApplicationKrankenResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index 9b31f2c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,175 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class, - SubmitApplicationResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SubmitApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 5600a1c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/package-info.java deleted file mode 100644 index c62485d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 7d312c07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index cdc645c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index b7c3420d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index fe9e2a29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index 464a072d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index 3e623211..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index d0c5c80a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 4593ce1f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBRequest.java deleted file mode 100644 index 9dc43357..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBRequest.java +++ /dev/null @@ -1,491 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VorlaeufigeDeckungType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr"/>
- *         <element name="Art">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="NEU"/>
- *               <enumeration value="WIEDER"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Kennzeichen" type="{urn:omds20}Pol_Kennz_Type" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Fahrzeug" maxOccurs="3" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
- *                   <element name="MarkeType">
- *                     <simpleType>
- *                       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                         <maxLength value="20"/>
- *                       </restriction>
- *                     </simpleType>
- *                   </element>
- *                   <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
- *         <element name="GueltigAb" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VorlaeufigeDeckung" type="{urn:omds3CommonServiceTypes-1-1-0}VorlaeufigeDeckung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheVBDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheVBDaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vermittlernr", - "art", - "kennzeichen", - "polizzennr", - "fahrzeug", - "versicherungsnehmer", - "gueltigAb", - "vorlaeufigeDeckung", - "zusaetzlicheVBDaten" -}) -@XmlRootElement(name = "CreateVBRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateVBRequest - extends CommonRequestType -{ - - @XmlElement(name = "Vermittlernr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermittlernr; - @XmlElement(name = "Art", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String art; - @XmlElement(name = "Kennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennzeichen; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "Fahrzeug") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List fahrzeug; - @XmlElement(name = "Versicherungsnehmer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersonType versicherungsnehmer; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "VorlaeufigeDeckung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vorlaeufigeDeckung; - @XmlElement(name = "ZusaetzlicheVBDaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheVBDaten; - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Gets the value of the fahrzeug property. - * - *

- * 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 set method for the fahrzeug property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFahrzeug().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreateVBRequest.Fahrzeug } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getFahrzeug() { - if (fahrzeug == null) { - fahrzeug = new ArrayList(); - } - return this.fahrzeug; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersonType getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersicherungsnehmer(PersonType value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Gets the value of the vorlaeufigeDeckung property. - * - *

- * 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 set method for the vorlaeufigeDeckung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorlaeufigeDeckung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorlaeufigeDeckungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVorlaeufigeDeckung() { - if (vorlaeufigeDeckung == null) { - vorlaeufigeDeckung = new ArrayList(); - } - return this.vorlaeufigeDeckung; - } - - /** - * Gets the value of the zusaetzlicheVBDaten property. - * - *

- * 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 set method for the zusaetzlicheVBDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVBDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVBDatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheVBDaten() { - if (zusaetzlicheVBDaten == null) { - zusaetzlicheVBDaten = new ArrayList(); - } - return this.zusaetzlicheVBDaten; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
-     *         <element name="MarkeType">
-     *           <simpleType>
-     *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *               <maxLength value="20"/>
-     *             </restriction>
-     *           </simpleType>
-     *         </element>
-     *         <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "fzgArt", - "markeType", - "fahrgestnr" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Fahrzeug { - - @XmlElement(name = "FzgArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fzgArt; - @XmlElement(name = "MarkeType", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String markeType; - @XmlElement(name = "Fahrgestnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestnr; - - /** - * Ruft den Wert der fzgArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFzgArt() { - return fzgArt; - } - - /** - * Legt den Wert der fzgArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFzgArt(String value) { - this.fzgArt = value; - } - - /** - * Ruft den Wert der markeType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMarkeType() { - return markeType; - } - - /** - * Legt den Wert der markeType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMarkeType(String value) { - this.markeType = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBResponse.java deleted file mode 100644 index ea3c5246..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/CreateVBResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProzessDokHandoutType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="VBNr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VBDokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vbNr", - "vbDokument" -}) -@XmlRootElement(name = "CreateVBResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateVBResponse - extends CommonResponseType -{ - - @XmlElement(name = "VBNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vbNr; - @XmlElement(name = "VBDokument", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ProzessDokHandoutType vbDokument; - - /** - * Ruft den Wert der vbNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVBNr() { - return vbNr; - } - - /** - * Legt den Wert der vbNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVBNr(String value) { - this.vbNr = value; - } - - /** - * Ruft den Wert der vbDokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ProzessDokHandoutType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ProzessDokHandoutType getVBDokument() { - return vbDokument; - } - - /** - * Legt den Wert der vbDokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ProzessDokHandoutType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVBDokument(ProzessDokHandoutType value) { - this.vbDokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 514e00c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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_10_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index fb9cf46d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,324 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.math.BigInteger; -import javax.annotation.Generated; -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; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 9f0c6ad7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_15.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index a0f3a757..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 56d2bb42..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index 8f24c603..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,321 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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_10_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt", - "neuwertklausel" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean eingeschraenkt; - @XmlElement(name = "Neuwertklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean neuwertklausel; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 5cc9bbe9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index d107063f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,411 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CreateVBRequest } - * - */ - public CreateVBRequest createCreateVBRequest() { - return new CreateVBRequest(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link CreateVBRequest.Fahrzeug } - * - */ - public CreateVBRequest.Fahrzeug createCreateVBRequestFahrzeug() { - return new CreateVBRequest.Fahrzeug(); - } - - /** - * Create an instance of {@link CreateVBResponse } - * - */ - public CreateVBResponse createCreateVBResponse() { - return new CreateVBResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 39461851..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 0fab2d21..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,251 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type" minOccurs="0"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Kasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "kasko", - "insassenunfall", - "assistance" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vollkasko; - @XmlElement(name = "Kasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List kasko; - @XmlElement(name = "Insassenunfall") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List insassenunfall; - @XmlElement(name = "Assistance") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Gets the value of the kasko property. - * - *

- * 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 set method for the kasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKasko() { - if (kasko == null) { - kasko = new ArrayList(); - } - return this.kasko; - } - - /** - * Gets the value of the insassenunfall property. - * - *

- * 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 set method for the insassenunfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getInsassenunfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsassenUnfallKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getInsassenunfall() { - if (insassenunfall == null) { - insassenunfall = new ArrayList(); - } - return this.insassenunfall; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 935df9da..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 260bcaad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index b6ab8063..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,167 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index fe06a1cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 5fe7d968..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 1928fa79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index b74998f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index b6552794..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index a82b677c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index 101437cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 66c505a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,254 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds2Types.v2_15.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index 1b696a1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index d4d8407b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "leasingklausel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Leasingklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index 1e350f43..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VorversicherungenType; - - -/** - * Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index bbcb068c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index c4b72006..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index d2890605..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,296 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java deleted file mode 100644 index cf55fb6c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterungsmöglichkeit für Versicherungsbestaetigung - * - *

Java-Klasse für ZusaetzlicheVBDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVBDaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVBDaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheVBDatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 8740202f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/package-info.java deleted file mode 100644 index e310a86d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenRequest.java deleted file mode 100644 index 3db50c17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Kranken - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateKrankenRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungKrankenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungKrankenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsanfrage(SpezBerechnungKrankenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenResponse.java deleted file mode 100644 index 4aea59a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CalculateKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Kranken-Berechnung - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateKrankenResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungKrankenType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungKrankenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsantwort(SpezBerechnungKrankenType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenRequest.java deleted file mode 100644 index 68b570d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationKrankenRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenResponse.java deleted file mode 100644 index 17cbec05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateApplicationKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationKrankenResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenRequest.java deleted file mode 100644 index 4cf5503e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferKrankenRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertKrankenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertKrankenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertanfrage(SpezOffertKrankenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenResponse.java deleted file mode 100644 index 39ea9eaa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/CreateOfferKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferKrankenResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertKrankenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertKrankenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertantwort(SpezOffertKrankenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ElementarproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ElementarproduktKrankenType.java deleted file mode 100644 index 2c81448d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ElementarproduktKrankenType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für ElementarproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKranken_Type", propOrder = { - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementarproduktKrankenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ObjectFactory.java deleted file mode 100644 index 1953389f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ObjectFactory.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateKrankenRequest } - * - */ - public CalculateKrankenRequest createCalculateKrankenRequest() { - return new CalculateKrankenRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungKrankenType } - * - */ - public SpezBerechnungKrankenType createSpezBerechnungKrankenType() { - return new SpezBerechnungKrankenType(); - } - - /** - * Create an instance of {@link CalculateKrankenResponse } - * - */ - public CalculateKrankenResponse createCalculateKrankenResponse() { - return new CalculateKrankenResponse(); - } - - /** - * Create an instance of {@link CreateOfferKrankenRequest } - * - */ - public CreateOfferKrankenRequest createCreateOfferKrankenRequest() { - return new CreateOfferKrankenRequest(); - } - - /** - * Create an instance of {@link SpezOffertKrankenType } - * - */ - public SpezOffertKrankenType createSpezOffertKrankenType() { - return new SpezOffertKrankenType(); - } - - /** - * Create an instance of {@link CreateOfferKrankenResponse } - * - */ - public CreateOfferKrankenResponse createCreateOfferKrankenResponse() { - return new CreateOfferKrankenResponse(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenRequest } - * - */ - public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() { - return new CreateApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType createSpezAntragKrankenType() { - return new SpezAntragKrankenType(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenResponse } - * - */ - public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() { - return new CreateApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenRequest } - * - */ - public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() { - return new SubmitApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenResponse } - * - */ - public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() { - return new SubmitApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() { - return new VerkaufsproduktKrankenType(); - } - - /** - * Create an instance of {@link ProduktKrankenType } - * - */ - public ProduktKrankenType createProduktKrankenType() { - return new ProduktKrankenType(); - } - - /** - * Create an instance of {@link ElementarproduktKrankenType } - * - */ - public ElementarproduktKrankenType createElementarproduktKrankenType() { - return new ElementarproduktKrankenType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ProduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ProduktKrankenType.java deleted file mode 100644 index 36197dd5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/ProduktKrankenType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKranken_Type", propOrder = { - "elementarprodukte", - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktKrankenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Elementarprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elementarprodukte; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the elementarprodukte property. - * - *

- * 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 set method for the elementarprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktKrankenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getElementarprodukte() { - if (elementarprodukte == null) { - elementarprodukte = new ArrayList(); - } - return this.elementarprodukte; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezAntragKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezAntragKrankenType.java deleted file mode 100644 index 393abe62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezAntragKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezAntragKrankenType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezBerechnungKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezBerechnungKrankenType.java deleted file mode 100644 index c8f77888..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezBerechnungKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezBerechnungKrankenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezOffertKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezOffertKrankenType.java deleted file mode 100644 index 4f778985..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SpezOffertKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezOffertKrankenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java deleted file mode 100644 index b65f72cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationKrankenRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java deleted file mode 100644 index 0da91dda..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationKrankenResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/VerkaufsproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/VerkaufsproduktKrankenType.java deleted file mode 100644 index 66d71681..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/VerkaufsproduktKrankenType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung - * - *

Java-Klasse für VerkaufsproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Krankenprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *         <element name="Gruppe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = { - "krankenprodukte", - "zusatzprodukte", - "versichertePersonen", - "gruppe" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkaufsproduktKrankenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Krankenprodukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List krankenprodukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versichertePersonen; - @XmlElement(name = "Gruppe") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gruppe; - - /** - * Gets the value of the krankenprodukte property. - * - *

- * 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 set method for the krankenprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKrankenprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKrankenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKrankenprodukte() { - if (krankenprodukte == null) { - krankenprodukte = new ArrayList(); - } - return this.krankenprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - - /** - * Ruft den Wert der gruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGruppe() { - return gruppe; - } - - /** - * Legt den Wert der gruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGruppe(String value) { - this.gruppe = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/package-info.java deleted file mode 100644 index 17994c48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/kranken/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenRequestType.java deleted file mode 100644 index a316667e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Leben - * - *

Java-Klasse für CalculateLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateLebenRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungLebenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungLebenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsanfrage(SpezBerechnungLebenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenResponseType.java deleted file mode 100644 index 9e3234e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CalculateLebenResponseType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Leben-Berechnung - * - *

Java-Klasse für CalculateLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateLebenResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungLebenType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungLebenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsantwort(SpezBerechnungLebenType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenRequestType.java deleted file mode 100644 index 7a15744a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationLebenRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenResponseType.java deleted file mode 100644 index d9a9cf46..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateApplicationLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationLebenResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenRequestType.java deleted file mode 100644 index 9df8ba26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferLebenRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertLebenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertLebenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertanfrage(SpezOffertLebenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenResponseType.java deleted file mode 100644 index 8a839772..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/CreateOfferLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferLebenResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertLebenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertLebenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertantwort(SpezOffertLebenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ObjectFactory.java deleted file mode 100644 index efe2e45d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ObjectFactory.java +++ /dev/null @@ -1,360 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest"); - private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse"); - private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest"); - private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse"); - private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest"); - private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse"); - private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest"); - private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse"); - private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateLebenRequestType } - * - */ - public CalculateLebenRequestType createCalculateLebenRequestType() { - return new CalculateLebenRequestType(); - } - - /** - * Create an instance of {@link CalculateLebenResponseType } - * - */ - public CalculateLebenResponseType createCalculateLebenResponseType() { - return new CalculateLebenResponseType(); - } - - /** - * Create an instance of {@link CreateOfferLebenRequestType } - * - */ - public CreateOfferLebenRequestType createCreateOfferLebenRequestType() { - return new CreateOfferLebenRequestType(); - } - - /** - * Create an instance of {@link CreateOfferLebenResponseType } - * - */ - public CreateOfferLebenResponseType createCreateOfferLebenResponseType() { - return new CreateOfferLebenResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenRequestType } - * - */ - public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() { - return new CreateApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenResponseType } - * - */ - public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() { - return new CreateApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenRequestType } - * - */ - public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() { - return new SubmitApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenResponseType } - * - */ - public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() { - return new SubmitApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType createVerkaufsproduktLebenType() { - return new VerkaufsproduktLebenType(); - } - - /** - * Create an instance of {@link ProduktLebenType } - * - */ - public ProduktLebenType createProduktLebenType() { - return new ProduktLebenType(); - } - - /** - * Create an instance of {@link TarifLebenType } - * - */ - public TarifLebenType createTarifLebenType() { - return new TarifLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungLebenType } - * - */ - public ZusatzversicherungLebenType createZusatzversicherungLebenType() { - return new ZusatzversicherungLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType } - * - */ - public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() { - return new ZusatzversicherungBerufsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType } - * - */ - public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() { - return new ZusatzversicherungErwerbsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType } - * - */ - public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() { - return new ZusatzversicherungPraemienuebernahmeAblebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfalltodType } - * - */ - public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() { - return new ZusatzversicherungUnfalltodType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType } - * - */ - public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() { - return new ZusatzversicherungUnfallinvaliditaetType(); - } - - /** - * Create an instance of {@link ZusatzproduktLebenType } - * - */ - public ZusatzproduktLebenType createZusatzproduktLebenType() { - return new ZusatzproduktLebenType(); - } - - /** - * Create an instance of {@link RentenoptionType } - * - */ - public RentenoptionType createRentenoptionType() { - return new RentenoptionType(); - } - - /** - * Create an instance of {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() { - return new VersicherungssummeZusatzbausteinType(); - } - - /** - * Create an instance of {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType createSpezBerechnungLebenType() { - return new SpezBerechnungLebenType(); - } - - /** - * Create an instance of {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType createSpezOffertLebenType() { - return new SpezOffertLebenType(); - } - - /** - * Create an instance of {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType createSpezAntragLebenType() { - return new SpezAntragLebenType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest") - public JAXBElement createCalculateLebenRequest(CalculateLebenRequestType value) { - return new JAXBElement(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse") - public JAXBElement createCalculateLebenResponse(CalculateLebenResponseType value) { - return new JAXBElement(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest") - public JAXBElement createCreateOfferLebenRequest(CreateOfferLebenRequestType value) { - return new JAXBElement(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse") - public JAXBElement createCreateOfferLebenResponse(CreateOfferLebenResponseType value) { - return new JAXBElement(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest") - public JAXBElement createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) { - return new JAXBElement(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse") - public JAXBElement createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) { - return new JAXBElement(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest") - public JAXBElement createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) { - return new JAXBElement(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse") - public JAXBElement createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) { - return new JAXBElement(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class) - public JAXBElement createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class) - public JAXBElement createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ProduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ProduktLebenType.java deleted file mode 100644 index b80dfe8f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ProduktLebenType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktMitVpType; - - -/** - * Typ für ein Produkt in der Sparte Leben. - * - *

Java-Klasse für ProduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktLeben_Type", propOrder = { - "tarife" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktLebenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Tarife") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List tarife; - - /** - * Gets the value of the tarife property. - * - *

- * 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 set method for the tarife property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarife().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TarifLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getTarife() { - if (tarife == null) { - tarife = new ArrayList(); - } - return this.tarife; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/RentenoptionType.java deleted file mode 100644 index 5a2526a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/RentenoptionType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Rentenoption - * - *

Java-Klasse für Rentenoption_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Rentenoption_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rentenoption_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RentenoptionType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezAntragLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezAntragLebenType.java deleted file mode 100644 index b2e5996f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezAntragLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragPersonenType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezAntragLebenType - extends SpezAntragPersonenType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezBerechnungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezBerechnungLebenType.java deleted file mode 100644 index a1091c9b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezBerechnungLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezBerechnungLebenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezOffertLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezOffertLebenType.java deleted file mode 100644 index 89c3e232..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SpezOffertLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezOffertLebenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenRequestType.java deleted file mode 100644 index 0a6fdf3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationLebenRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenResponseType.java deleted file mode 100644 index 73274a88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/SubmitApplicationLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationLebenResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/TarifLebenType.java deleted file mode 100644 index 675d6d73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/TarifLebenType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementFondsauswahlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Leben. - * - *

Java-Klasse für TarifLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
- *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
- *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifLeben_Type", propOrder = { - "garantierteAblebenssumme", - "rentenoption", - "fondsauswahl", - "zusatzbausteine" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class TarifLebenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "GarantierteAblebenssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; - @XmlElement(name = "Rentenoption") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RentenoptionType rentenoption; - @XmlElement(name = "Fondsauswahl") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List fondsauswahl; - @XmlElement(name = "Zusatzbausteine") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusatzbausteine; - - /** - * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { - return garantierteAblebenssumme; - } - - /** - * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { - this.garantierteAblebenssumme = value; - } - - /** - * Ruft den Wert der rentenoption-Eigenschaft ab. - * - * @return - * possible object is - * {@link RentenoptionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RentenoptionType getRentenoption() { - return rentenoption; - } - - /** - * Legt den Wert der rentenoption-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RentenoptionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRentenoption(RentenoptionType value) { - this.rentenoption = value; - } - - /** - * Gets the value of the fondsauswahl property. - * - *

- * 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 set method for the fondsauswahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFondsauswahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementFondsauswahlType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getFondsauswahl() { - if (fondsauswahl == null) { - fondsauswahl = new ArrayList(); - } - return this.fondsauswahl; - } - - /** - * Gets the value of the zusatzbausteine property. - * - *

- * 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 set method for the zusatzbausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzbausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzversicherungLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusatzbausteine() { - if (zusatzbausteine == null) { - zusatzbausteine = new ArrayList(); - } - return this.zusatzbausteine; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VerkaufsproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VerkaufsproduktLebenType.java deleted file mode 100644 index c249c13a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VerkaufsproduktLebenType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Leben - * - *

Java-Klasse für VerkaufsproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = { - "lebenProdukte", - "zusatzprodukte", - "versichertePersonen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkaufsproduktLebenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "LebenProdukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List lebenProdukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versichertePersonen; - - /** - * Gets the value of the lebenProdukte property. - * - *

- * 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 set method for the lebenProdukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLebenProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getLebenProdukte() { - if (lebenProdukte == null) { - lebenProdukte = new ArrayList(); - } - return this.lebenProdukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java deleted file mode 100644 index 8b138c8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AttributDezimalType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AttributDoubleType; - - -/** - * Definition einer Versicherungssumme in einem Zusatzbaustein - * - *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherungssummeZusatzbaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { - "prozentVersicherungssumme", - "betrag" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VersicherungssummeZusatzbausteinType { - - @XmlElement(name = "ProzentVersicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributDoubleType prozentVersicherungssumme; - @XmlElement(name = "Betrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AttributDezimalType betrag; - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDoubleType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributDoubleType getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDoubleType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentVersicherungssumme(AttributDoubleType value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDezimalType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AttributDezimalType getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDezimalType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetrag(AttributDezimalType value) { - this.betrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/WartefristType.java deleted file mode 100644 index c73b3512..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/WartefristType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element zur Abbildung einer Wartefrist - * - *

Java-Klasse für Wartefrist_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wartefrist_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wartefrist_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class WartefristType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzproduktLebenType.java deleted file mode 100644 index 0e287205..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzproduktLebenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren - * - *

Java-Klasse für ZusatzproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktLeben_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktLeben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzproduktLebenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java deleted file mode 100644 index 653dbe6b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungBerufsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java deleted file mode 100644 index f06cbfd3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungErwerbsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungLebenType.java deleted file mode 100644 index 61354336..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungLebenType.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZusatzproduktGenerischType; - - -/** - * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) - * - *

Java-Klasse für ZusatzversicherungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungLeben_Type") -@XmlSeeAlso({ - ZusatzversicherungBerufsunfaehigkeitType.class, - ZusatzversicherungErwerbsunfaehigkeitType.class, - ZusatzversicherungPraemienuebernahmeAblebenType.class, - ZusatzversicherungUnfalltodType.class, - ZusatzversicherungUnfallinvaliditaetType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungLebenType - extends ZusatzproduktGenerischType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java deleted file mode 100644 index 03808b29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall - * - *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungPraemienuebernahmeAblebenType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java deleted file mode 100644 index cd585be7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet - * - *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { - "rest" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungUnfallinvaliditaetType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1617 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java deleted file mode 100644 index f5705e37..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod - * - *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfalltod_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { - "rest" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusatzversicherungUnfalltodType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1617 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/package-info.java deleted file mode 100644 index d32e9cd9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/leben/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzRequest.java deleted file mode 100644 index 6da4f7de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CalculateRechtsschutzRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezBerechnungRechtsschutzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezBerechnungRechtsschutzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setBerechnungsanfrage(SpezBerechnungRechtsschutzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzResponse.java deleted file mode 100644 index db6f301a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CalculateRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CalculateRechtsschutzResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezBerechnungRechtsschutzType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezBerechnungRechtsschutzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setBerechnungsantwort(SpezBerechnungRechtsschutzType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java deleted file mode 100644 index 59f43f80..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CreateApplicationRechtsschutzRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java deleted file mode 100644 index 1a107583..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CreateApplicationRechtsschutzResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java deleted file mode 100644 index 474b6d20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CreateOfferRechtsschutzRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezOffertRechtsschutzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezOffertRechtsschutzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setOffertanfrage(SpezOffertRechtsschutzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java deleted file mode 100644 index 7d88d073..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class CreateOfferRechtsschutzResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezOffertRechtsschutzType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezOffertRechtsschutzType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setOffertantwort(SpezOffertRechtsschutzType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ElementarproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ElementarproduktRechtsschutzType.java deleted file mode 100644 index 217201b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ElementarproduktRechtsschutzType.java +++ /dev/null @@ -1,80 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten. - * - *

Java-Klasse für ElementarproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = { - "versInteressenRefLfNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class ElementarproduktRechtsschutzType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ObjectFactory.java deleted file mode 100644 index 0a4e4eb2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ObjectFactory.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateRechtsschutzRequest } - * - */ - public CalculateRechtsschutzRequest createCalculateRechtsschutzRequest() { - return new CalculateRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungRechtsschutzType } - * - */ - public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() { - return new SpezBerechnungRechtsschutzType(); - } - - /** - * Create an instance of {@link CalculateRechtsschutzResponse } - * - */ - public CalculateRechtsschutzResponse createCalculateRechtsschutzResponse() { - return new CalculateRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzRequest } - * - */ - public CreateOfferRechtsschutzRequest createCreateOfferRechtsschutzRequest() { - return new CreateOfferRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezOffertRechtsschutzType } - * - */ - public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() { - return new SpezOffertRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzResponse } - * - */ - public CreateOfferRechtsschutzResponse createCreateOfferRechtsschutzResponse() { - return new CreateOfferRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzRequest } - * - */ - public CreateApplicationRechtsschutzRequest createCreateApplicationRechtsschutzRequest() { - return new CreateApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() { - return new SpezAntragRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzResponse } - * - */ - public CreateApplicationRechtsschutzResponse createCreateApplicationRechtsschutzResponse() { - return new CreateApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzRequest } - * - */ - public SubmitApplicationRechtsschutzRequest createSubmitApplicationRechtsschutzRequest() { - return new SubmitApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzResponse } - * - */ - public SubmitApplicationRechtsschutzResponse createSubmitApplicationRechtsschutzResponse() { - return new SubmitApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() { - return new VerkaufsproduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ProduktRechtsschutzType } - * - */ - public ProduktRechtsschutzType createProduktRechtsschutzType() { - return new ProduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ElementarproduktRechtsschutzType } - * - */ - public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() { - return new ElementarproduktRechtsschutzType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ProduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ProduktRechtsschutzType.java deleted file mode 100644 index 275ac80d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/ProduktRechtsschutzType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; - - -/** - * Typ für ein Produkt in der Sparte Rechtsschutz. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktRechtsschutz_Type", propOrder = { - "elementarprodukteRechtsschutz", - "versInteressenRefLfNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class ProduktRechtsschutzType - extends ProduktGenerischType -{ - - @XmlElement(name = "ElementarprodukteRechtsschutz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List elementarprodukteRechtsschutz; - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the elementarprodukteRechtsschutz property. - * - *

- * 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 set method for the elementarprodukteRechtsschutz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukteRechtsschutz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktRechtsschutzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getElementarprodukteRechtsschutz() { - if (elementarprodukteRechtsschutz == null) { - elementarprodukteRechtsschutz = new ArrayList(); - } - return this.elementarprodukteRechtsschutz; - } - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezAntragRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezAntragRechtsschutzType.java deleted file mode 100644 index bc62af09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezAntragRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class SpezAntragRechtsschutzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java deleted file mode 100644 index 72047edc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class SpezBerechnungRechtsschutzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezOffertRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezOffertRechtsschutzType.java deleted file mode 100644 index c7e8ed65..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SpezOffertRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class SpezOffertRechtsschutzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java deleted file mode 100644 index fe77262a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class SubmitApplicationRechtsschutzRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java deleted file mode 100644 index 75bfb199..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class SubmitApplicationRechtsschutzResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java deleted file mode 100644 index 9210c981..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Rechtsschutz - * - *

Java-Klasse für VerkaufsproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ProduktRechtsschutz_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteInteressen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") -public class VerkaufsproduktRechtsschutzType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteInteressen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - protected List versicherteInteressen; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktRechtsschutzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteInteressen property. - * - *

- * 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 set method for the versicherteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-12T17:37:24+01:00") - public List getVersicherteInteressen() { - if (versicherteInteressen == null) { - versicherteInteressen = new ArrayList(); - } - return this.versicherteInteressen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/package-info.java deleted file mode 100644 index 2f4f613a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/rs/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.rs; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 3e42ebd6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index 223e32e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index e03fc459..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index 546eada4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 92273890..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index a08955cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index d0baf21c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index f0d0888f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 055c5445..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index d882cc6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index d0ca811e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,306 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index fa4ec29c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index b7dabc09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index f7629f0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index acbb9bf5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,409 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index 02e5c6fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index 9865f85a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index b624c225..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index 7329d0cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "selbstbehalt" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versObjekteRefLfnr; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List selbstbehalt; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Gets the value of the selbstbehalt property. - * - *

- * 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 set method for the selbstbehalt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSelbstbehalt().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SelbstbehaltType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSelbstbehalt() { - if (selbstbehalt == null) { - selbstbehalt = new ArrayList(); - } - return this.selbstbehalt; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index ca97d863..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 2f677e6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,465 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_15.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bauartCd; - @XmlElement(name = "DachungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index f809ac79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index bba98e1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index bc459651..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index 6445b831..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 6a492542..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index 86246c10..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteObjekte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteObjekte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index c0673155..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RisikoHaushaltType risikoHaushalt; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index b4296d2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index 87889822..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index 43f752af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index d6a801cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index 1a802d22..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 719a96fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 352fa3d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallRequestType.java deleted file mode 100644 index a28bda75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Unfall - * - *

Java-Klasse für CalculateUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateUnfallRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungUnfallType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungUnfallType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsanfrage(SpezBerechnungUnfallType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallResponseType.java deleted file mode 100644 index 96f86d24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CalculateUnfallResponseType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Unfall-Berechnung - * - *

Java-Klasse für CalculateUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CalculateUnfallResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezBerechnungUnfallType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezBerechnungUnfallType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBerechnungsantwort(SpezBerechnungUnfallType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java deleted file mode 100644 index 20a38775..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationUnfallRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java deleted file mode 100644 index 4655c323..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateApplicationUnfallResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallRequestType.java deleted file mode 100644 index a9e76348..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferUnfallRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertUnfallType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertUnfallType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertanfrage(SpezOffertUnfallType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallResponseType.java deleted file mode 100644 index 335c6709..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/CreateOfferUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CreateOfferUnfallResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezOffertUnfallType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezOffertUnfallType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffertantwort(SpezOffertUnfallType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/LeistungsartUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/LeistungsartUnfallType.java deleted file mode 100644 index cf7c15f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/LeistungsartUnfallType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für LeistungsartUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LeistungsartUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LeistungsartUnfall_Type", propOrder = { - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class LeistungsartUnfallType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ObjectFactory.java deleted file mode 100644 index 609c7dd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ObjectFactory.java +++ /dev/null @@ -1,261 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest"); - private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse"); - private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest"); - private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse"); - private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest"); - private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse"); - private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest"); - private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateUnfallRequestType } - * - */ - public CalculateUnfallRequestType createCalculateUnfallRequestType() { - return new CalculateUnfallRequestType(); - } - - /** - * Create an instance of {@link CalculateUnfallResponseType } - * - */ - public CalculateUnfallResponseType createCalculateUnfallResponseType() { - return new CalculateUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallRequestType } - * - */ - public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() { - return new CreateOfferUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallResponseType } - * - */ - public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() { - return new CreateOfferUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallRequestType } - * - */ - public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() { - return new CreateApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallResponseType } - * - */ - public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() { - return new CreateApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallRequestType } - * - */ - public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() { - return new SubmitApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallResponseType } - * - */ - public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() { - return new SubmitApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() { - return new VerkaufsproduktUnfallType(); - } - - /** - * Create an instance of {@link ProduktUnfallType } - * - */ - public ProduktUnfallType createProduktUnfallType() { - return new ProduktUnfallType(); - } - - /** - * Create an instance of {@link LeistungsartUnfallType } - * - */ - public LeistungsartUnfallType createLeistungsartUnfallType() { - return new LeistungsartUnfallType(); - } - - /** - * Create an instance of {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType createSpezBerechnungUnfallType() { - return new SpezBerechnungUnfallType(); - } - - /** - * Create an instance of {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType createSpezOffertUnfallType() { - return new SpezOffertUnfallType(); - } - - /** - * Create an instance of {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType createSpezAntragUnfallType() { - return new SpezAntragUnfallType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest") - public JAXBElement createCalculateUnfallRequest(CalculateUnfallRequestType value) { - return new JAXBElement(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse") - public JAXBElement createCalculateUnfallResponse(CalculateUnfallResponseType value) { - return new JAXBElement(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest") - public JAXBElement createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) { - return new JAXBElement(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse") - public JAXBElement createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) { - return new JAXBElement(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest") - public JAXBElement createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) { - return new JAXBElement(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse") - public JAXBElement createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) { - return new JAXBElement(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest") - public JAXBElement createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) { - return new JAXBElement(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse") - public JAXBElement createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) { - return new JAXBElement(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ProduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ProduktUnfallType.java deleted file mode 100644 index 5922d9ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/ProduktUnfallType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktUnfall_Type", propOrder = { - "leistungsarten", - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ProduktUnfallType - extends ProduktMitVpType -{ - - @XmlElement(name = "Leistungsarten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List leistungsarten; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the leistungsarten property. - * - *

- * 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 set method for the leistungsarten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLeistungsarten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LeistungsartUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getLeistungsarten() { - if (leistungsarten == null) { - leistungsarten = new ArrayList(); - } - return this.leistungsarten; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezAntragUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezAntragUnfallType.java deleted file mode 100644 index 1cc5c462..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezAntragUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezAntragUnfallType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezBerechnungUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezBerechnungUnfallType.java deleted file mode 100644 index d43e5263..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezBerechnungUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezBerechnungUnfallType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezOffertUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezOffertUnfallType.java deleted file mode 100644 index 4297710f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SpezOffertUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpezOffertUnfallType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java deleted file mode 100644 index 1c6b4043..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationUnfallRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java deleted file mode 100644 index bd174dd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitApplicationUnfallResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/VerkaufsproduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/VerkaufsproduktUnfallType.java deleted file mode 100644 index 10a6e072..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/VerkaufsproduktUnfallType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Unfall - * - *

Java-Klasse für VerkaufsproduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ProduktUnfall_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { - "unfallprodukte", - "zusatzprodukte", - "versichertePersonen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class VerkaufsproduktUnfallType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Unfallprodukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List unfallprodukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versichertePersonen; - - /** - * Gets the value of the unfallprodukte property. - * - *

- * 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 set method for the unfallprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUnfallprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getUnfallprodukte() { - if (unfallprodukte == null) { - unfallprodukte = new ArrayList(); - } - return this.unfallprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/package-info.java deleted file mode 100644 index 5a6c7348..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on2antrag/unfall/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimRequest.java deleted file mode 100644 index 1b57acd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AddInformationToClaimRequest - extends CommonRequestType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimResponse.java deleted file mode 100644 index 91615104..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/AddInformationToClaimResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class AddInformationToClaimResponse - extends CommonResponseType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 5fc80243..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,431 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index d54acc8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_10_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List meldungen; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index c9d97945..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPerson(PersonType value) { - this.person = value; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index cb257de7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index ef7c4529..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageRequest.java deleted file mode 100644 index a78fd23f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageRequest.java +++ /dev/null @@ -1,243 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "eigenschaftCd", - "zusaetzlicheDeckungsauskunftsdaten" -}) -@XmlRootElement(name = "CheckCoverageRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CheckCoverageRequest - extends CommonRequestType -{ - - @XmlElement(name = "Versicherungsnehmer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "EigenschaftCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List eigenschaftCd; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheDeckungsauskunftsdaten; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the eigenschaftCd property. - * - *

- * 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 set method for the eigenschaftCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEigenschaftCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getEigenschaftCd() { - if (eigenschaftCd == null) { - eigenschaftCd = new ArrayList(); - } - return this.eigenschaftCd; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageResponse.java deleted file mode 100644 index f9ecdcd7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/CheckCoverageResponse.java +++ /dev/null @@ -1,344 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Auskuenfte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "zusaetzlicheDeckungsauskunftsdaten", - "auskuenfte" -}) -@XmlRootElement(name = "CheckCoverageResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class CheckCoverageResponse - extends CommonResponseType -{ - - @XmlElement(name = "Versicherungsnehmer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheDeckungsauskunftsdaten; - @XmlElement(name = "Auskuenfte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List auskuenfte; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - - /** - * Gets the value of the auskuenfte property. - * - *

- * 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 set method for the auskuenfte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuskuenfte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CheckCoverageResponse.Auskuenfte } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getAuskuenfte() { - if (auskuenfte == null) { - auskuenfte = new ArrayList(); - } - return this.auskuenfte; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "eigenschaftCd", - "antwort" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Auskuenfte { - - @XmlElement(name = "EigenschaftCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String eigenschaftCd; - @XmlElement(name = "Antwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String antwort; - - /** - * Ruft den Wert der eigenschaftCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getEigenschaftCd() { - return eigenschaftCd; - } - - /** - * Legt den Wert der eigenschaftCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setEigenschaftCd(String value) { - this.eigenschaftCd = value; - } - - /** - * Ruft den Wert der antwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAntwort() { - return antwort; - } - - /** - * Legt den Wert der antwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAntwort(String value) { - this.antwort = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenType.java deleted file mode 100644 index e4e3c1bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenType.java +++ /dev/null @@ -1,293 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentDataType; - - -/** - * Objekt Nachmeldung Schaden - * - *

Java-Klasse für ErgaenzungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betreff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchaden_Type", propOrder = { - "schadennr", - "id", - "polizzennr", - "vertragsID", - "betreff", - "schadenTxt", - "belege", - "zusaetzlicheSchadensdaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ErgaenzungSchadenType { - - @XmlElement(name = "Schadennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "Betreff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String betreff; - @XmlElement(name = "SchadenTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadenTxt; - @XmlElement(name = "Belege") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List belege; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betreff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBetreff() { - return betreff; - } - - /** - * Legt den Wert der betreff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetreff(String value) { - this.betreff = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenereignisType.java deleted file mode 100644 index c326993f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ErgaenzungSchadenereignisType.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; - - -/** - * Objekt Nachmeldung zu Schadenereignis - * - *

Java-Klasse für ErgaenzungSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AnforderungsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="ErgaenzungSchaden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchadenereignis_Type", propOrder = { - "anforderungsId", - "id", - "geschaeftsfallSchadenereignis", - "zusaetzlicheSchadensereignisdaten", - "ergaenzungSchaden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ErgaenzungSchadenereignisType { - - @XmlElement(name = "AnforderungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String anforderungsId; - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String id; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "ErgaenzungSchaden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List ergaenzungSchaden; - - /** - * Ruft den Wert der anforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getAnforderungsId() { - return anforderungsId; - } - - /** - * Legt den Wert der anforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAnforderungsId(String value) { - this.anforderungsId = value; - } - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setId(String value) { - this.id = value; - } - - /** - * GeschäftsfallId der Anlage des ursprünglichen Schadenereignis-Objektes - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the ergaenzungSchaden property. - * - *

- * 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 set method for the ergaenzungSchaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgaenzungSchaden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgaenzungSchadenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getErgaenzungSchaden() { - if (ergaenzungSchaden == null) { - ergaenzungSchaden = new ArrayList(); - } - return this.ergaenzungSchaden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index eb1b5928..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index afdd09b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadenBeschreibung; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 4fde8efb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,139 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 6dba7534..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,383 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String marke; - @XmlElement(name = "Handelsbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index f40e058e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,169 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadennr; - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index 3a1c65fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/NatPersonType.java deleted file mode 100644 index 0561efdf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ObjectFactory.java deleted file mode 100644 index 8f86af2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,504 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CheckCoverageResponse } - * - */ - public CheckCoverageResponse createCheckCoverageResponse() { - return new CheckCoverageResponse(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link CheckCoverageRequest } - * - */ - public CheckCoverageRequest createCheckCoverageRequest() { - return new CheckCoverageRequest(); - } - - /** - * Create an instance of {@link CheckCoverageResponse.Auskuenfte } - * - */ - public CheckCoverageResponse.Auskuenfte createCheckCoverageResponseAuskuenfte() { - return new CheckCoverageResponse.Auskuenfte(); - } - - /** - * Create an instance of {@link SubmitReceiptRequest } - * - */ - public SubmitReceiptRequest createSubmitReceiptRequest() { - return new SubmitReceiptRequest(); - } - - /** - * Create an instance of {@link SubmitReceiptResponse } - * - */ - public SubmitReceiptResponse createSubmitReceiptResponse() { - return new SubmitReceiptResponse(); - } - - /** - * Create an instance of {@link AddInformationToClaimRequest } - * - */ - public AddInformationToClaimRequest createAddInformationToClaimRequest() { - return new AddInformationToClaimRequest(); - } - - /** - * Create an instance of {@link ErgaenzungSchadenereignisType } - * - */ - public ErgaenzungSchadenereignisType createErgaenzungSchadenereignisType() { - return new ErgaenzungSchadenereignisType(); - } - - /** - * Create an instance of {@link AddInformationToClaimResponse } - * - */ - public AddInformationToClaimResponse createAddInformationToClaimResponse() { - return new AddInformationToClaimResponse(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link ErgaenzungSchadenType } - * - */ - public ErgaenzungSchadenType createErgaenzungSchadenType() { - return new ErgaenzungSchadenType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/OrtType.java deleted file mode 100644 index 4283e863..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/OrtType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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_15.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OrtType { - - @XmlElement(name = "Adresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index a470de26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index d37c1ec0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_15.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenLightType.java deleted file mode 100644 index dbe11168..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenType.java deleted file mode 100644 index 4f6cedef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,449 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_15.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 30bb5de8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index 6b9933f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index bafb2821..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index 8bfe51b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index 0b55dae1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index a4c5991a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,343 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "Personennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String personennr; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String bearbStandCd; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der suchbegriff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getSuchbegriff() { - return suchbegriff; - } - - /** - * Legt den Wert der suchbegriff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSuchbegriff(String value) { - this.suchbegriff = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaxResults(long value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOffset(long value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 0a602651..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SearchClaimResponseResultType { - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected long totalResults; - @XmlElement(name = "Schadenereignisse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List schadenereignisse; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index eb4121e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index a90fe28d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index cb026363..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,213 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String behandlerName; - @XmlElement(name = "Behandlungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index 24289435..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index 9b86dd63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Koerperhaelfte" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}byte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Koerperteil" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="BehoerdlicheAufnahme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName", - "koerperhaelfte", - "koerperteil", - "behoerdlicheAufnahme" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String diagnose; - @XmlElement(name = "BehandlerName") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String behandlerName; - @XmlElement(name = "Koerperhaelfte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Byte koerperhaelfte; - @XmlElement(name = "Koerperteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List koerperteil; - @XmlElement(name = "BehoerdlicheAufnahme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String behoerdlicheAufnahme; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Ruft den Wert der koerperhaelfte-Eigenschaft ab. - * - * @return - * possible object is - * {@link Byte } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Byte getKoerperhaelfte() { - return koerperhaelfte; - } - - /** - * Legt den Wert der koerperhaelfte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Byte } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setKoerperhaelfte(Byte value) { - this.koerperhaelfte = value; - } - - /** - * Gets the value of the koerperteil property. - * - *

- * 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 set method for the koerperteil property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKoerperteil().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getKoerperteil() { - if (koerperteil == null) { - koerperteil = new ArrayList(); - } - return this.koerperteil; - } - - /** - * Ruft den Wert der behoerdlicheAufnahme-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getBehoerdlicheAufnahme() { - return behoerdlicheAufnahme; - } - - /** - * Legt den Wert der behoerdlicheAufnahme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBehoerdlicheAufnahme(String value) { - this.behoerdlicheAufnahme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index ace3dc33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 6ee47332..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptRequest.java deleted file mode 100644 index 673b22c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptRequest.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.DokumentDataType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ZahlwegType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds20}decimal"/>
- *         <element name="Grund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded"/>
- *         <element name="ZusaetzlicheBelegeinreichungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheBelegeinreichungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "polizzennr", - "vertragsID", - "betrag", - "grund", - "zahlweg", - "belege", - "zusaetzlicheBelegeinreichungsdaten" -}) -@XmlRootElement(name = "SubmitReceiptRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitReceiptRequest - extends CommonRequestType -{ - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vertragsID; - @XmlElement(name = "Betrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected BigDecimal betrag; - @XmlElement(name = "Grund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String grund; - @XmlElement(name = "Zahlweg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ZahlwegType zahlweg; - @XmlElement(name = "Belege", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List belege; - @XmlElement(name = "ZusaetzlicheBelegeinreichungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List zusaetzlicheBelegeinreichungsdaten; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der grund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getGrund() { - return grund; - } - - /** - * Legt den Wert der grund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setGrund(String value) { - this.grund = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ZahlwegType getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setZahlweg(ZahlwegType value) { - this.zahlweg = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Gets the value of the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * 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 set method for the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheBelegeinreichungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheBelegeinreichungsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getZusaetzlicheBelegeinreichungsdaten() { - if (zusaetzlicheBelegeinreichungsdaten == null) { - zusaetzlicheBelegeinreichungsdaten = new ArrayList(); - } - return this.zusaetzlicheBelegeinreichungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptResponse.java deleted file mode 100644 index aaa9b32f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/SubmitReceiptResponse.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SubmitReceiptResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class SubmitReceiptResponse - extends CommonResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java deleted file mode 100644 index 029ef9ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Service zur Belegeinreichung mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheBelegeinreichungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheBelegeinreichungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheBelegeinreichungsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheBelegeinreichungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java deleted file mode 100644 index a64186ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Anfragen zu Deckungsauskünften mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheDeckungsauskunftsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheDeckungsauskunftsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheDeckungsauskunftsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheDeckungsauskunftsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index 6a823e9a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index 5242e050..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index 3ac08cc3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/package-info.java deleted file mode 100644 index 7322d54b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsService.java deleted file mode 100644 index 51a7f766..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsService.java +++ /dev/null @@ -1,100 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_10_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.annotation.Generated; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.5.7 - * 2023-12-20T17:38:50.765+01:00 - * Generated source version: 3.5.7 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00", comments = "Apache CXF 3.5.7") -public class OmdsService extends Service { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public final static URL WSDL_LOCATION; - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.765+01:00") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 9e0a414d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,820 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_10_0.service; - -import java.util.logging.Logger; -import javax.annotation.Generated; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.7 - * 2023-12-20T17:38:50.719+01:00 - * Generated source version: 3.5.7 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_10_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType") - -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00", comments = "Apache CXF 3.5.7") -public class OmdsServicePortImpl implements OmdsServicePortType { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitReceipt(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptResponse submitReceipt(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitReceipt"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPartnerRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPolicyRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getStateChanges(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesResponseType getStateChanges(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getStateChanges"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkClaimRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkClaimRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#checkCoverage(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageResponse checkCoverage(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation checkCoverage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkOfferRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createVB(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBResponse createVB(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createVB"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#conversionProposal(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalResponse conversionProposal(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation conversionProposal"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createOfferKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#conversionScope(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeResponse conversionScope(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation conversionScope"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#addInformationToClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimResponse addInformationToClaim(at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation addInformationToClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#acknowledgeDocuments(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsResponse acknowledgeDocuments(at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation acknowledgeDocuments"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.LoginRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.LoginRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_10_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.719+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType.java deleted file mode 100644 index 9f04f047..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,436 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_10_0.service; - -import javax.annotation.Generated; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.7 - * 2023-12-20T17:38:50.751+01:00 - * Generated source version: 3.5.7 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_15.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00", comments = "Apache CXF 3.5.7") -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - - @WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateLeben") - @WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenResponseType calculateLeben( - - @WebParam(partName = "param", name = "CalculateLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - - @WebParam(partName = "param", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKranken") - @WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken( - - @WebParam(partName = "param", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - - @WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - - @WebParam(partName = "param", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitReceipt") - @WebResult(name = "SubmitReceiptResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptResponse submitReceipt( - - @WebParam(partName = "param", name = "SubmitReceiptRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - - @WebParam(partName = "param", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - - @WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPartnerRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationLeben") - @WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben( - - @WebParam(partName = "param", name = "SubmitApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - - @WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPolicyRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimResponseType searchClaim( - - @WebParam(partName = "param", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getStateChanges") - @WebResult(name = "GetStateChangesResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesResponseType getStateChanges( - - @WebParam(partName = "param", name = "GetStateChangesRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataResponse getUserData( - - @WebParam(partName = "param", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - - @WebParam(partName = "param", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkClaimRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkCoverage") - @WebResult(name = "CheckCoverageResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageResponse checkCoverage( - - @WebParam(partName = "param", name = "CheckCoverageRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimResponseType submitClaim( - - @WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKranken") - @WebResult(name = "SubmitApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken( - - @WebParam(partName = "param", name = "SubmitApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - - @WebParam(partName = "param", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageResponse getOMDSPackage( - - @WebParam(partName = "param", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - - @WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkOfferRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateUnfall") - @WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall( - - @WebParam(partName = "param", name = "CalculateUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createVB") - @WebResult(name = "CreateVBResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBResponse createVB( - - @WebParam(partName = "param", name = "CreateVBRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationUnfall") - @WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall( - - @WebParam(partName = "param", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - - @WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:conversionProposal") - @WebResult(name = "ConversionProposalResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalResponse conversionProposal( - - @WebParam(partName = "param", name = "ConversionProposalRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - - @WebParam(partName = "param", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - - @WebParam(partName = "param", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKranken") - @WebResult(name = "CreateOfferKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken( - - @WebParam(partName = "param", name = "CreateOfferKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationUnfall") - @WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall( - - @WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKranken") - @WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken( - - @WebParam(partName = "param", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - - @WebParam(partName = "param", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimResponseType checkClaim( - - @WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - - @WebParam(partName = "param", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:conversionScope") - @WebResult(name = "ConversionScopeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeResponse conversionScope( - - @WebParam(partName = "param", name = "ConversionScopeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimResponseType getClaim( - - @WebParam(partName = "param", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageResponse getArcImage( - - @WebParam(partName = "param", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationLeben") - @WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben( - - @WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addInformationToClaim") - @WebResult(name = "AddInformationToClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimResponse addInformationToClaim( - - @WebParam(partName = "param", name = "AddInformationToClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:acknowledgeDocuments") - @WebResult(name = "AcknowledgeDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsResponse acknowledgeDocuments( - - @WebParam(partName = "param", name = "AcknowledgeDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferUnfall") - @WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall( - - @WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferLeben") - @WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben( - - @WebParam(partName = "param", name = "CreateOfferLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse login( - - @WebParam(partName = "param", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.LoginRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - - @WebParam(partName = "param", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - - @WebParam(partName = "param", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.751+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - - @WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosRequest param - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index fe216f38..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,658 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.annotation.Generated; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.7 - * 2023-12-20T17:38:50.624+01:00 - * Generated source version: 3.5.7 - * - */ -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.624+01:00", comments = "Apache CXF 3.5.7") -public final class OmdsServicePortType_OmdsServicePort_Client { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.624+01:00") - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.624+01:00") - private OmdsServicePortType_OmdsServicePort_Client() { - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.624+01:00") - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_param); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateLeben..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenRequestType _calculateLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CalculateLebenResponseType _calculateLeben__return = port.calculateLeben(_calculateLeben_param); - System.out.println("calculateLeben.result=" + _calculateLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_param); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKranken..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenRequest _createApplicationKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_param); - System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_param); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_param); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitReceipt..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptRequest _submitReceipt_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitReceiptResponse _submitReceipt__return = port.submitReceipt(_submitReceipt_param); - System.out.println("submitReceipt.result=" + _submitReceipt__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_param); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_param); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenRequestType _submitApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.SubmitApplicationLebenResponseType _submitApplicationLeben__return = port.submitApplicationLeben(_submitApplicationLeben_param); - System.out.println("submitApplicationLeben.result=" + _submitApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_param); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimRequestType _searchClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_param); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getStateChanges..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesRequestType _getStateChanges_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_param); - System.out.println("getStateChanges.result=" + _getStateChanges__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataRequest _getUserData_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_param); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_param); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkCoverage..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageRequest _checkCoverage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckCoverageResponse _checkCoverage__return = port.checkCoverage(_checkCoverage_param); - System.out.println("checkCoverage.result=" + _checkCoverage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimRequestType _submitClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_param); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKranken..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenRequest _submitApplicationKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.SubmitApplicationKrankenResponse _submitApplicationKranken__return = port.submitApplicationKranken(_submitApplicationKranken_param); - System.out.println("submitApplicationKranken.result=" + _submitApplicationKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_param); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageRequest _getOMDSPackage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_param); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_param); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateUnfall..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallRequestType _calculateUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CalculateUnfallResponseType _calculateUnfall__return = port.calculateUnfall(_calculateUnfall_param); - System.out.println("calculateUnfall.result=" + _calculateUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createVB..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBRequest _createVB_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CreateVBResponse _createVB__return = port.createVB(_createVB_param); - System.out.println("createVB.result=" + _createVB__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallRequestType _submitApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_param); - System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_param); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking conversionProposal..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalRequest _conversionProposal_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionProposalResponse _conversionProposal__return = port.conversionProposal(_conversionProposal_param); - System.out.println("conversionProposal.result=" + _conversionProposal__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_param); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_param); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKranken..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenRequest _createOfferKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CreateOfferKrankenResponse _createOfferKranken__return = port.createOfferKranken(_createOfferKranken_param); - System.out.println("createOfferKranken.result=" + _createOfferKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_param); - System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKranken..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenRequest _calculateKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kranken.CalculateKrankenResponse _calculateKranken__return = port.calculateKranken(_calculateKranken_param); - System.out.println("calculateKranken.result=" + _calculateKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_param); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimRequestType _checkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_param); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking conversionScope..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeRequest _conversionScope_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.common.ConversionScopeResponse _conversionScope__return = port.conversionScope(_conversionScope_param); - System.out.println("conversionScope.result=" + _conversionScope__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimRequestType _getClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_param); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageRequest _getArcImage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_param); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_param); - System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addInformationToClaim..."); - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimRequest _addInformationToClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on7schaden.AddInformationToClaimResponse _addInformationToClaim__return = port.addInformationToClaim(_addInformationToClaim_param); - System.out.println("addInformationToClaim.result=" + _addInformationToClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking acknowledgeDocuments..."); - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsRequest _acknowledgeDocuments_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on1basis.AcknowledgeDocumentsResponse _acknowledgeDocuments__return = port.acknowledgeDocuments(_acknowledgeDocuments_param); - System.out.println("acknowledgeDocuments.result=" + _acknowledgeDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferUnfall..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_param); - System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferLeben..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenRequestType _createOfferLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.leben.CreateOfferLebenResponseType _createOfferLeben__return = port.createOfferLeben(_createOfferLeben_param); - System.out.println("createOfferLeben.result=" + _createOfferLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.LoginRequestType _login_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_param); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_param); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_param); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_param = null; - try { - at.vvo.omds.types.omds3Types.r1_10_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_param); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/ServiceFaultMsg.java deleted file mode 100644 index fb9ad036..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.service; - -import javax.annotation.Generated; -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.5.7 - * 2023-12-20T17:38:50.713+01:00 - * Generated source version: 3.5.7 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00", comments = "Apache CXF 3.5.7") -public class ServiceFaultMsg extends Exception { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - private at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault faultInfo; - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public ServiceFaultMsg() { - super(); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public ServiceFaultMsg(String message) { - super(message); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public ServiceFaultMsg(String message, java.lang.Throwable cause) { - super(message, cause); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault serviceFault) { - super(message); - this.faultInfo = serviceFault; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault serviceFault, java.lang.Throwable cause) { - super(message, cause); - this.faultInfo = serviceFault; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-12-20T17:38:50.713+01:00") - public at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault getFaultInfo() { - return this.faultInfo; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcContent.java deleted file mode 100644 index a6b9c662..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" minOccurs="0"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcContent { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index aa79d14c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,253 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcImageInfo { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String name; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int documentType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String arcContentType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar date; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index e8547d41..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,297 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String policyNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String policyType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List documentType; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar dateUntil; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 3cac9023..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcImageInfosResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 7af55c8a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String arcImageId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 4182ef6c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 29003608..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DeepLinkBusinessObjectResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index c24609fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String claimNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 7e2c1631..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String offerNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 8890ae68..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String partnerNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index beb3ccc8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String policyNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/Geschaeftsvorfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/Geschaeftsvorfall.java deleted file mode 100644 index 1ff0de7d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/Geschaeftsvorfall.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Geschaeftsvorfall. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Geschaeftsvorfall">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Neuantrag"/>
- *     <enumeration value="Aenderungsantrag"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Geschaeftsvorfall") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public enum Geschaeftsvorfall { - - @XmlEnumValue("Neuantrag") - NEUANTRAG("Neuantrag"), - @XmlEnumValue("Aenderungsantrag") - AENDERUNGSANTRAG("Aenderungsantrag"); - private final String value; - - Geschaeftsvorfall(String v) { - value = v; - } - - public String value() { - return value; - } - - public static Geschaeftsvorfall fromValue(String v) { - for (Geschaeftsvorfall c: Geschaeftsvorfall.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 6f198be0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class HttpActionLinkType { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String url; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int type; - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/LoginRequestType.java deleted file mode 100644 index bcd211e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class LoginRequestType { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AuthorizationFilter authFilter; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 6d7d295d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,260 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds2Types.v2_15.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_15.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String maklerID; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar timeStamp; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List packageContentCode; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index df0f6e22..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected XMLGregorianCalendar dateUntil; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index c59e95d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDSPackageListResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index 63928da3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected AgentFilterType agentFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List omdsPackageId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 434efc4d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class OMDSPackageResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 3b3f32a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,551 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_10_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_10_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 0956e053..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_10_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class PolicyPartnerRole { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String partnerNumber; - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 01304458..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,248 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_10_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class RequestedOMDSPackage { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String requestedOmdsPackageId; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class OmdsPackage { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setContent(DataHandler value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataRequest.java deleted file mode 100644 index fa5f413d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class UserDataRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String vuNr; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setVUNr(String value) { - this.vuNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 07c4a215..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,214 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") -public class UserDataResponse { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected String userid; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = value; - } - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public PERSONType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public void setPerson(PERSONType value) { - this.person = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public static class AvailableServices { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/package-info.java deleted file mode 100644 index 168b2634..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_10_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AFzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AFzZustandBesichtigungType.java new file mode 100644 index 00000000..eb63c748 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AFzZustandBesichtigungType.java @@ -0,0 +1,37 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.FzZustandBesichtigungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ergebnisse einer Besichtigung + * + *

Java-Klasse für AFzZustandBesichtigung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AFzZustandBesichtigung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AFzZustandBesichtigung_Type") +@XmlSeeAlso({ + FzZustandBesichtigungType.class +}) +public abstract class AFzZustandBesichtigungType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AListenAttributType.java new file mode 100644 index 00000000..3af77704 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AListenAttributType.java @@ -0,0 +1,108 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten + * + *

Java-Klasse für AListenAttribut_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 values; + @XmlElement(name = "MinAnz") + @XmlSchemaType(name = "unsignedShort") + protected Integer minAnz; + + /** + * Gets the value of the values property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EintragSchluessellisteType } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ASingleAttributType.java new file mode 100644 index 00000000..6bfb2047 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ASingleAttributType.java @@ -0,0 +1,74 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für Attribute mit einem Wert + * + *

Java-Klasse für ASingleAttribut_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AWechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AWechselkennzeichenType.java new file mode 100644 index 00000000..0ed20222 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AWechselkennzeichenType.java @@ -0,0 +1,37 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.WechselkennzeichenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Behandlung des Fahrzeugs im Wechselkennzeichen + * + *

Java-Klasse für AWechselkennzeichen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AWechselkennzeichen_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AWechselkennzeichen_Type") +@XmlSeeAlso({ + WechselkennzeichenType.class +}) +public abstract class AWechselkennzeichenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbgelehnteRisikenType.java new file mode 100644 index 00000000..87bc9e8b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbgelehnteRisikenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ zur Beschreibung abgelehnter Risiken + * + *

Java-Klasse für AbgelehnteRisiken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AbgelehnteRisiken_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AbgelehnteRisiken_Type") +public abstract class AbgelehnteRisikenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbtretungType.java new file mode 100644 index 00000000..12e9c1c2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AbtretungType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Sicherstellung vom Typ Abtretung / Zession. Abtretung ist die umfassenste Form der + * Sicherstellung der Zessionär (Abtretungsempfänger) kann den Vertrag an Stelle des VN (Zedent) nach + * seinen Wünschen umgestalten. + * + *

Java-Klasse für Abtretung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseArtCdType.java new file mode 100644 index 00000000..00f5af1b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseArtCdType.java @@ -0,0 +1,40 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für AdresseArtCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="AdresseArtCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="HA"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "AdresseArtCd_Type") +@XmlEnum +public enum AdresseArtCdType { + + + /** + * Hauptadresse + * + */ + HA; + + public String value() { + return name(); + } + + public static AdresseArtCdType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseType.java new file mode 100644 index 00000000..8d9f9cdf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AdresseType.java @@ -0,0 +1,302 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für eine Adresse mit ObjektId + * + *

Java-Klasse für Adresse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AgentFilterType.java new file mode 100644 index 00000000..ba277a95 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AgentFilterType.java @@ -0,0 +1,101 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.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 + * + *

Java-Klasse für AgentFilter_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vermnr property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVermnr().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getVermnr() { + if (vermnr == null) { + vermnr = new ArrayList(); + } + return this.vermnr; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsZuordnungType.java new file mode 100644 index 00000000..49176f0e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsZuordnungType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zu Antrag + * + *

Java-Klasse für AntragsZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AntragsZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Antragsnr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AntragsZuordnung_Type", propOrder = { + "antragsnr", + "vermnr" +}) +public class AntragsZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Antragsnr", required = true) + protected String antragsnr; + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + + /** + * Ruft den Wert der antragsnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntragsnr() { + return antragsnr; + } + + /** + * Legt den Wert der antragsnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntragsnr(String value) { + this.antragsnr = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsartType.java new file mode 100644 index 00000000..6d0a2cae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AntragsartType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Antragsart_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <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>
+ * 
+ * + */ +@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); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ArtAenderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ArtAenderungType.java new file mode 100644 index 00000000..5d4130b7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ArtAenderungType.java @@ -0,0 +1,41 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für ArtAenderung_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="ArtAenderung_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="NEW"/>
+ *     <enumeration value="UPDATE"/>
+ *     <enumeration value="DELETE"/>
+ *     <enumeration value="UNCHANGED"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "ArtAenderung_Type") +@XmlEnum +public enum ArtAenderungType { + + NEW, + UPDATE, + DELETE, + UNCHANGED; + + public String value() { + return name(); + } + + public static ArtAenderungType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDatumType.java new file mode 100644 index 00000000..27324add --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDatumType.java @@ -0,0 +1,192 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Auf xsd:date basierendes Attribut mit Metadaten + * + *

Java-Klasse für AttributDatum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link XMLGregorianCalendar } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDezimalType.java new file mode 100644 index 00000000..de23776a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDezimalType.java @@ -0,0 +1,186 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Auf omds:decimal basierendes Attribut mit Metadaten + * + *

Java-Klasse für AttributDezimal_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BigDecimal } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDoubleType.java new file mode 100644 index 00000000..eec4a1b7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributDoubleType.java @@ -0,0 +1,185 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Auf xsd:double basierendes Attribut mit Metadaten + * + *

Java-Klasse für AttributDouble_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Double } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributEnumType.java new file mode 100644 index 00000000..b7481aa2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributEnumType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Attribut mit Metadaten für Schlüssellisten + * + *

Java-Klasse für AttributEnum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributIntType.java new file mode 100644 index 00000000..3567c73e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributIntType.java @@ -0,0 +1,185 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Auf xsd:int basierendes Attribut mit Metadaten + * + *

Java-Klasse für AttributInt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDatumType.java new file mode 100644 index 00000000..d3f4a35b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDatumType.java @@ -0,0 +1,163 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Metadaten für xsd:date-Attribute + * + *

Java-Klasse für AttributMetadatenDatum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link XMLGregorianCalendar } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDezimalType.java new file mode 100644 index 00000000..bbb80dff --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenDezimalType.java @@ -0,0 +1,158 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Metadaten für omds:decimal-Attribute + * + *

Java-Klasse für AttributMetadatenDezimal_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BigDecimal } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenEnumType.java new file mode 100644 index 00000000..76321759 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenEnumType.java @@ -0,0 +1,101 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Metadaten für Schlüssellisten + * + *

Java-Klasse für AttributMetadatenEnum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EintragSchluessellisteType } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + return this.values; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenIntType.java new file mode 100644 index 00000000..98c3da63 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenIntType.java @@ -0,0 +1,157 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Metadaten für xsd:int-Attribute + * + *

Java-Klasse für AttributMetadatenInt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenStringType.java new file mode 100644 index 00000000..dbcce726 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenStringType.java @@ -0,0 +1,188 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Metadaten für xsd:string-Attribute + * + *

Java-Klasse für AttributMetadatenString_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenType.java new file mode 100644 index 00000000..0a15dffd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMetadatenType.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für Metadaten von Attributen + * + *

Java-Klasse für AttributMetadaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMsgType.java new file mode 100644 index 00000000..ff587c67 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMsgType.java @@ -0,0 +1,129 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigInteger; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Message an einem Attribut + * + *

Java-Klasse für AttributMsg_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMultiEnumType.java new file mode 100644 index 00000000..9b106a81 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributMultiEnumType.java @@ -0,0 +1,134 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind. + * + *

Java-Klasse für AttributMultiEnum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AttributMultiEnum_Type", propOrder = { + "value", + "_default", + "maxAnz" +}) +public class AttributMultiEnumType + extends AListenAttributType +{ + + @XmlElement(name = "Value") + protected List value; + @XmlElement(name = "Default") + protected List _default; + @XmlElement(name = "MaxAnz") + protected Object maxAnz; + + /** + * Gets the value of the value property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the value property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValue().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getValue() { + if (value == null) { + value = new ArrayList(); + } + return this.value; + } + + /** + * Gets the value of the default property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the default property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDefault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getDefault() { + if (_default == null) { + _default = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributStringType.java new file mode 100644 index 00000000..d7004b8b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributStringType.java @@ -0,0 +1,216 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Auf xsd:string basierendes Attribut mit Metadaten + * + *

Java-Klasse für AttributString_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the values property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getValues().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getValues() { + if (values == null) { + values = new ArrayList(); + } + return this.values; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributType.java new file mode 100644 index 00000000..e7f0eb10 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AttributType.java @@ -0,0 +1,154 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type) + * + *

Java-Klasse für Attribut_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AuthorizationFilter.java new file mode 100644 index 00000000..adadc563 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AuthorizationFilter.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern + * + *

Java-Klasse für AuthorizationFilter complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AuthorizationFilter">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AuthorizationFilter") +@XmlSeeAlso({ + AgentFilterType.class +}) +public abstract class AuthorizationFilter { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungType.java new file mode 100644 index 00000000..6239d1a4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungType.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) + * + *

Java-Klasse für Autorisierung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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}string" minOccurs="0"/>
+ *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
+ *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Autorisierung_Type", propOrder = { + "autorisierungsId", + "lfnrPerson", + "rolle", + "autorisierungsart" +}) +@XmlSeeAlso({ + at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentType.Autorisierungen.class +}) +public class AutorisierungType { + + @XmlElement(name = "AutorisierungsId") + protected String autorisierungsId; + @XmlElement(name = "LfnrPerson") + @XmlSchemaType(name = "unsignedByte") + protected short lfnrPerson; + @XmlElement(name = "Rolle") + protected String rolle; + @XmlElement(name = "Autorisierungsart", required = true) + protected AutorisierungsartType autorisierungsart; + + /** + * Ruft den Wert der autorisierungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAutorisierungsId() { + return autorisierungsId; + } + + /** + * Legt den Wert der autorisierungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAutorisierungsId(String value) { + this.autorisierungsId = value; + } + + /** + * Ruft den Wert der lfnrPerson-Eigenschaft ab. + * + */ + public short getLfnrPerson() { + return lfnrPerson; + } + + /** + * Legt den Wert der lfnrPerson-Eigenschaft fest. + * + */ + public void setLfnrPerson(short value) { + this.lfnrPerson = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsAnforderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsAnforderungType.java new file mode 100644 index 00000000..8eb8ce71 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsAnforderungType.java @@ -0,0 +1,149 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) + * + *

Java-Klasse für AutorisierungsAnforderung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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}string" minOccurs="0"/>
+ *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
+ *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = { + "autorisierungsId", + "lfnrPerson", + "rolle", + "autorisierungsart" +}) +public class AutorisierungsAnforderungType { + + @XmlElement(name = "AutorisierungsId") + protected String autorisierungsId; + @XmlElement(name = "LfnrPerson") + @XmlSchemaType(name = "unsignedByte") + protected short lfnrPerson; + @XmlElement(name = "Rolle") + protected String rolle; + @XmlElement(name = "Autorisierungsart", required = true) + protected List autorisierungsart; + + /** + * Ruft den Wert der autorisierungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAutorisierungsId() { + return autorisierungsId; + } + + /** + * Legt den Wert der autorisierungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAutorisierungsId(String value) { + this.autorisierungsId = value; + } + + /** + * Ruft den Wert der lfnrPerson-Eigenschaft ab. + * + */ + public short getLfnrPerson() { + return lfnrPerson; + } + + /** + * Legt den Wert der lfnrPerson-Eigenschaft fest. + * + */ + public void setLfnrPerson(short value) { + this.lfnrPerson = 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the autorisierungsart property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAutorisierungsart().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AutorisierungsartType } + * + * + */ + public List getAutorisierungsart() { + if (autorisierungsart == null) { + autorisierungsart = new ArrayList(); + } + return this.autorisierungsart; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsartType.java new file mode 100644 index 00000000..1b945900 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/AutorisierungsartType.java @@ -0,0 +1,61 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlValue; + + +/** + * Der Typ für Autorisierungsarten + * + *

Java-Klasse für Autorisierungsart_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Autorisierungsart_Type">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Autorisierungsart_Type", propOrder = { + "value" +}) +public class AutorisierungsartType { + + @XmlValue + protected String value; + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BankverbindungType.java new file mode 100644 index 00000000..9ed1a277 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BankverbindungType.java @@ -0,0 +1,152 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * beschreibt eine Bankverbindug + * + *

Java-Klasse für Bankverbindung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BasisProduktbausteinType.java new file mode 100644 index 00000000..82db1ac0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BasisProduktbausteinType.java @@ -0,0 +1,375 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen + * + *

Java-Klasse für BasisProduktbaustein_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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="TarifId" type="{urn:omds3CommonServiceTypes-1-1-0}TarifId_Type" minOccurs="0"/>
+ *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Konvertierung" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
+ *         <element name="Attribut" type="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BasisProduktbaustein_Type", propOrder = { + "id", + "tarifId", + "bezeichnung", + "bedingungen", + "meldungen", + "konvertierung", + "kombinationen", + "attribut" +}) +@XmlSeeAlso({ + ProduktbausteinType.class +}) +public abstract class BasisProduktbausteinType { + + @XmlElement(name = "Id") + protected String id; + @XmlElement(name = "TarifId") + protected TarifIdType tarifId; + @XmlElement(name = "Bezeichnung") + protected String bezeichnung; + @XmlElement(name = "Bedingungen") + protected List bedingungen; + @XmlElement(name = "Meldungen") + protected List meldungen; + @XmlElement(name = "Konvertierung") + protected BasisProduktbausteinType.Konvertierung konvertierung; + @XmlElement(name = "Kombinationen") + protected KombinationenType kombinationen; + @XmlElement(name = "Attribut") + protected List attribut; + + /** + * 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 tarifId-Eigenschaft ab. + * + * @return + * possible object is + * {@link TarifIdType } + * + */ + public TarifIdType getTarifId() { + return tarifId; + } + + /** + * Legt den Wert der tarifId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link TarifIdType } + * + */ + public void setTarifId(TarifIdType value) { + this.tarifId = 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bedingungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBedingungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getBedingungen() { + if (bedingungen == null) { + bedingungen = new ArrayList(); + } + return this.bedingungen; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + + /** + * Ruft den Wert der konvertierung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BasisProduktbausteinType.Konvertierung } + * + */ + public BasisProduktbausteinType.Konvertierung getKonvertierung() { + return konvertierung; + } + + /** + * Legt den Wert der konvertierung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BasisProduktbausteinType.Konvertierung } + * + */ + public void setKonvertierung(BasisProduktbausteinType.Konvertierung value) { + this.konvertierung = value; + } + + /** + * Ruft den Wert der kombinationen-Eigenschaft ab. + * + * @return + * possible object is + * {@link KombinationenType } + * + */ + public KombinationenType getKombinationen() { + return kombinationen; + } + + /** + * Legt den Wert der kombinationen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KombinationenType } + * + */ + public void setKombinationen(KombinationenType value) { + this.kombinationen = value; + } + + /** + * Gets the value of the attribut property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attribut property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttribut().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributType } + * + * + */ + public List getAttribut() { + if (attribut == null) { + attribut = new ArrayList(); + } + return this.attribut; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "ersetztId", + "konvertierungsaktion" + }) + public static class Konvertierung { + + @XmlElement(name = "ErsetztId", required = true) + protected String ersetztId; + @XmlElement(name = "Konvertierungsaktion") + protected KonvertierungsaktionType konvertierungsaktion; + + /** + * Ruft den Wert der ersetztId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsetztId() { + return ersetztId; + } + + /** + * Legt den Wert der ersetztId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsetztId(String value) { + this.ersetztId = value; + } + + /** + * Ruft den Wert der konvertierungsaktion-Eigenschaft ab. + * + * @return + * possible object is + * {@link KonvertierungsaktionType } + * + */ + public KonvertierungsaktionType getKonvertierungsaktion() { + return konvertierungsaktion; + } + + /** + * Legt den Wert der konvertierungsaktion-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KonvertierungsaktionType } + * + */ + public void setKonvertierungsaktion(KonvertierungsaktionType value) { + this.konvertierungsaktion = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BerechnungsvarianteType.java new file mode 100644 index 00000000..1bed1609 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BerechnungsvarianteType.java @@ -0,0 +1,53 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Berechnungsvariante_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="Berechnungsvariante_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="basic"/>
+ *     <enumeration value="medium"/>
+ *     <enumeration value="top"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@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); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BeteiligtePersonVertragType.java new file mode 100644 index 00000000..5e643d63 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BeteiligtePersonVertragType.java @@ -0,0 +1,86 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind + * + *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BetreuerZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BetreuerZuordnungType.java new file mode 100644 index 00000000..832f5ec5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BetreuerZuordnungType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zum Betreuer + * + *

Java-Klasse für BetreuerZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BetreuerZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BetreuerZuordnung_Type", propOrder = { + "vermnr" +}) +public class BetreuerZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungGesetzlicheErbenType.java new file mode 100644 index 00000000..8b8ec5d7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungGesetzlicheErbenType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung gesetzliche Erben + * + *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") +public class BezugsberechtigungGesetzlicheErbenType + extends BezugsberechtigungType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungIndividuell.java new file mode 100644 index 00000000..47edef27 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungIndividuell.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung Individuell + * + *

Java-Klasse für BezugsberechtigungIndividuell complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungNamentlich.java new file mode 100644 index 00000000..c3c309b3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungNamentlich.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung namentlich + * + *

Java-Klasse für BezugsberechtigungNamentlich complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the personen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersonNamentlichesBezugsrechtType } + * + * + */ + public List getPersonen() { + if (personen == null) { + personen = new ArrayList(); + } + return this.personen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungTestamentarischeErbenType.java new file mode 100644 index 00000000..d4637561 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungTestamentarischeErbenType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung testamentarische Erben + * + *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") +public class BezugsberechtigungTestamentarischeErbenType + extends BezugsberechtigungType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungType.java new file mode 100644 index 00000000..802320f0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell + * + *

Java-Klasse für Bezugsberechtigung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungUeberbringerType.java new file mode 100644 index 00000000..9212caf4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungUeberbringerType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung Überbringer + * + *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BezugsberechtigungUeberbringer_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BezugsberechtigungUeberbringer_Type") +public class BezugsberechtigungUeberbringerType + extends BezugsberechtigungType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersichertePersonType.java new file mode 100644 index 00000000..d87348c7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersichertePersonType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung VersichertePerson + * + *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BezugsberechtigungVersichertePerson_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BezugsberechtigungVersichertePerson_Type") +public class BezugsberechtigungVersichertePersonType + extends BezugsberechtigungType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersicherungsnehmerType.java new file mode 100644 index 00000000..7dbc6783 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsberechtigungVersicherungsnehmerType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bezugsberechtigung Versicherungsnehmer + * + *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") +public class BezugsberechtigungVersicherungsnehmerType + extends BezugsberechtigungType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsrechtType.java new file mode 100644 index 00000000..fbd1c673 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BezugsrechtType.java @@ -0,0 +1,65 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.PERSONType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. + * + *

Java-Klasse für Bezugsrecht_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Bezugsrecht_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds20}PERSON"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusSystemType.java new file mode 100644 index 00000000..830da965 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusSystemType.java @@ -0,0 +1,157 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type Bonus Malus System + * + *

Java-Klasse für BonusMalusSystem_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusVorversicherungType.java new file mode 100644 index 00000000..e92fc205 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/BonusMalusVorversicherungType.java @@ -0,0 +1,56 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für BonusMalusVorversicherung_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <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>
+ * 
+ * + */ +@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); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessRequestType.java new file mode 100644 index 00000000..4576ba05 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessRequestType.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.BOAProcessRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind + * + *

Java-Klasse für CommonProcessRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CommonProcessRequest_Type", propOrder = { + "geschaeftsfallnummer" +}) +@XmlSeeAlso({ + BOAProcessRequestType.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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessResponseType.java new file mode 100644 index 00000000..034eaf4f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonProcessResponseType.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.BOAProcessResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind + * + *

Java-Klasse für CommonProcessResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CommonProcessResponse_Type", propOrder = { + "geschaeftsfallnummer" +}) +@XmlSeeAlso({ + BOAProcessResponseType.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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonRequestType.java new file mode 100644 index 00000000..daf925b9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonRequestType.java @@ -0,0 +1,215 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.GetApplicationDocumentRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptRequest; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes RequestObjekt + * + *

Java-Klasse für CommonRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CommonRequest_Type", propOrder = { + "vuNr", + "clientId", + "technischeParameter", + "technischeObjekte", + "korrelationsId" +}) +@XmlSeeAlso({ + CommonSearchRequestType.class, + GetApplicationDocumentRequestType.class, + CheckClaimRequestType.class, + SubmitClaimRequestType.class, + GetClaimRequestType.class, + AddInformationToClaimRequest.class, + SubmitReceiptRequest.class, + CheckCoverageRequest.class, + CommonProcessRequestType.class, + CreateVBRequest.class, + ConversionProposalRequest.class, + ConversionScopeRequest.class, + AcknowledgeDocumentsRequest.class +}) +public abstract class CommonRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "ClientId") + protected String clientId; + @XmlElement(name = "TechnischeParameter") + protected List technischeParameter; + @XmlElement(name = "TechnischeObjekte") + protected List 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the technischeParameter property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTechnischeParameter().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TechnicalKeyValueType } + * + * + */ + public List getTechnischeParameter() { + if (technischeParameter == null) { + technischeParameter = new ArrayList(); + } + return this.technischeParameter; + } + + /** + * Gets the value of the technischeObjekte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the technischeObjekte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTechnischeObjekte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TechnischesObjektType } + * + * + */ + public List getTechnischeObjekte() { + if (technischeObjekte == null) { + technischeObjekte = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonResponseType.java new file mode 100644 index 00000000..38d964f2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonResponseType.java @@ -0,0 +1,186 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.GetApplicationDocumentResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes ResponseObjekt + * + *

Java-Klasse für CommonResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CommonResponse_Type", propOrder = { + "status", + "technischeObjekte", + "gestartet", + "beendet" +}) +@XmlSeeAlso({ + CommonSearchResponseType.class, + GetApplicationDocumentResponseType.class, + CheckClaimResponseType.class, + SubmitClaimResponseType.class, + GetClaimResponseType.class, + AddInformationToClaimResponse.class, + SubmitReceiptResponse.class, + CheckCoverageResponse.class, + CommonProcessResponseType.class, + CreateVBResponse.class, + ConversionProposalResponse.class, + ConversionScopeResponse.class, + AcknowledgeDocumentsResponse.class +}) +public abstract class CommonResponseType { + + @XmlElement(name = "Status", required = true) + protected ResponseStatusType status; + @XmlElement(name = "TechnischeObjekte") + protected List 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the technischeObjekte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTechnischeObjekte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TechnischesObjektType } + * + * + */ + public List getTechnischeObjekte() { + if (technischeObjekte == null) { + technischeObjekte = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchRequestType.java new file mode 100644 index 00000000..1802897f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchRequestType.java @@ -0,0 +1,205 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.ELZeitraumType; +import at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstakter Typ fuer Suchanfragen + * + *

Java-Klasse für CommonSearchRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchResponseType.java new file mode 100644 index 00000000..e51ffd57 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/CommonSearchResponseType.java @@ -0,0 +1,107 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für Ergebnisse von Suchen + * + *

Java-Klasse für CommonSearchResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DateianhangType.java new file mode 100644 index 00000000..33bf780e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DateianhangType.java @@ -0,0 +1,191 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Deprecated, verwende ProzessDokument_Type. + * + *

Java-Klasse für Dateianhang_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DatenverwendungType.java new file mode 100644 index 00000000..f5abb4f4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DatenverwendungType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type Datenverwendung + * + *

Java-Klasse für Datenverwendung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() { + return zustimmungZurVerwendungDerDatenZuWerbezwecken; + } + + /** + * Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(Boolean value) { + this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DirectionCdType.java new file mode 100644 index 00000000..c259cfad --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DirectionCdType.java @@ -0,0 +1,47 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DirectionCd_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="DirectionCd_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="IN"/>
+ *     <enumeration value="OUT"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@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); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentBinaryDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentBinaryDataType.java new file mode 100644 index 00000000..59dacac9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentBinaryDataType.java @@ -0,0 +1,184 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur Übermittlung von Dokumenten als Binary plus Metadaten + * + *

Java-Klasse für DokumentBinaryData_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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"/>
+ *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DokumentBinaryData_Type", propOrder = { + "dateiData", + "mimetype", + "groesse", + "datum", + "name" +}) +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; + @XmlElement(name = "Name") + protected String name; + + /** + * 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; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentDataType.java new file mode 100644 index 00000000..405fe9bd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentDataType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ zur Übermittlung von Dokumentendaten + * + *

Java-Klasse für DokumentData_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DokumentData_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DokumentData_Type") +@XmlSeeAlso({ + DokumentBinaryDataType.class +}) +public abstract class DokumentDataType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentInfoType.java new file mode 100644 index 00000000..86b2d565 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentInfoType.java @@ -0,0 +1,310 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten) + * + *

Java-Klasse für DokumentInfo_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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"/>
+ *               <enumeration value="4"/>
+ *             </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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the referenzWeitereDokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReferenzWeitereDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentInfoType } + * + * + */ + public List getReferenzWeitereDokumente() { + if (referenzWeitereDokumente == null) { + referenzWeitereDokumente = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzPostserviceType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzPostserviceType.java new file mode 100644 index 00000000..677f6c09 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzPostserviceType.java @@ -0,0 +1,159 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlValue; + + +/** + * Dokumentenrefernz im Postservice + * + *

Java-Klasse für DokumentenReferenzPostservice_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DokumentenReferenzPostservice_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type">
+ *       <sequence>
+ *         <element name="Kontrollwert">
+ *           <complexType>
+ *             <simpleContent>
+ *               <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary">
+ *               </extension>
+ *             </simpleContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Zuordnung" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DokumentenReferenzPostservice_Type", propOrder = { + "kontrollwert", + "zuordnung" +}) +public class DokumentenReferenzPostserviceType + extends DokumentenReferenzType +{ + + @XmlElement(name = "Kontrollwert", required = true) + protected DokumentenReferenzPostserviceType.Kontrollwert kontrollwert; + @XmlElement(name = "Zuordnung") + protected List zuordnung; + + /** + * Ruft den Wert der kontrollwert-Eigenschaft ab. + * + * @return + * possible object is + * {@link DokumentenReferenzPostserviceType.Kontrollwert } + * + */ + public DokumentenReferenzPostserviceType.Kontrollwert getKontrollwert() { + return kontrollwert; + } + + /** + * Legt den Wert der kontrollwert-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DokumentenReferenzPostserviceType.Kontrollwert } + * + */ + public void setKontrollwert(DokumentenReferenzPostserviceType.Kontrollwert value) { + this.kontrollwert = value; + } + + /** + * Gets the value of the zuordnung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zuordnung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZuordnung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentenZuordnungType } + * + * + */ + public List getZuordnung() { + if (zuordnung == null) { + zuordnung = new ArrayList(); + } + return this.zuordnung; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <simpleContent>
+     *     <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary">
+     *     </extension>
+     *   </simpleContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "value" + }) + public static class Kontrollwert { + + @XmlValue + protected byte[] value; + + /** + * Ruft den Wert der value-Eigenschaft ab. + * + * @return + * possible object is + * byte[] + */ + public byte[] getValue() { + return value; + } + + /** + * Legt den Wert der value-Eigenschaft fest. + * + * @param value + * allowed object is + * byte[] + */ + public void setValue(byte[] value) { + this.value = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzType.java new file mode 100644 index 00000000..bcbbef9c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenReferenzType.java @@ -0,0 +1,266 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Information zu einem einzelnen Dokument + * + *

Java-Klasse für DokumentenReferenz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DokumentenReferenz_Type", propOrder = { + "id", + "name", + "documentType", + "mimetype", + "groesse", + "datum", + "objektSpezifikation", + "referenzWeitereDokumente" +}) +@XmlSeeAlso({ + DokumentenReferenzPostserviceType.class +}) +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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the referenzWeitereDokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReferenzWeitereDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentenReferenzType } + * + * + */ + public List getReferenzWeitereDokumente() { + if (referenzWeitereDokumente == null) { + referenzWeitereDokumente = new ArrayList(); + } + return this.referenzWeitereDokumente; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenZuordnungType.java new file mode 100644 index 00000000..86ec62c5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/DokumentenZuordnungType.java @@ -0,0 +1,44 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für Zusatzdaten zum Dokument + * + *

Java-Klasse für DokumentenZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DokumentenZuordnung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DokumentenZuordnung_Type") +@XmlSeeAlso({ + EinfacheZuordnungType.class, + PersonenZuordnungType.class, + BetreuerZuordnungType.class, + VertragsZuordnungType.class, + SchadenZuordnungType.class, + AntragsZuordnungType.class, + GeschaeftsfallZuordnungType.class, + ProvisionZuordnungType.class, + MahnverfahrenZuordnungType.class +}) +public abstract class DokumentenZuordnungType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinfacheZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinfacheZuordnungType.java new file mode 100644 index 00000000..eb51d171 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinfacheZuordnungType.java @@ -0,0 +1,62 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Einfache Standardimplementierung für Ordnungsbegriffe als String + * + *

Java-Klasse für EinfacheZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EinfacheZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <attribute name="text" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EinfacheZuordnung_Type") +public class EinfacheZuordnungType + extends DokumentenZuordnungType +{ + + @XmlAttribute(name = "text", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String text; + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EintragSchluessellisteType.java new file mode 100644 index 00000000..7f84e1d1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EintragSchluessellisteType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für einen einzelnen Eintrag einer Schlüsselliste + * + *

Java-Klasse für EintragSchluesselliste_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwGesDatenVNType.java new file mode 100644 index 00000000..ea145d37 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwGesDatenVNType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Einwilligung Bekanntgabe Gesundheitsdaten an VN + * + *

Java-Klasse für EinwGesDatenVN_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EinwGesDatenVN_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EinwGesDatenVN_Type") +public class EinwGesDatenVNType + extends EinwilligungPersDatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwSprachaufzType.java new file mode 100644 index 00000000..7f224ce0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwSprachaufzType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Einwilligung Sprachaufzeichnung + * + *

Java-Klasse für EinwSprachaufz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EinwSprachaufz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EinwSprachaufz_Type") +public class EinwSprachaufzType + extends EinwilligungPersDatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwVerarbGesDatenType.java new file mode 100644 index 00000000..1088626f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwVerarbGesDatenType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Einwilligung Verarbeitung Gesundheitsdaten + * + *

Java-Klasse für EinwVerarbGesDaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="EinwVerarbGesDaten_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EinwVerarbGesDaten_Type") +public class EinwVerarbGesDatenType + extends EinwilligungPersDatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungPersDatenType.java new file mode 100644 index 00000000..97a60be7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungPersDatenType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für Einwilligung personenbezogene Daten + * + *

Java-Klasse für EinwilligungPersDaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungType.java new file mode 100644 index 00000000..b3180959 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/EinwilligungType.java @@ -0,0 +1,96 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für Einwilligung + * + *

Java-Klasse für Einwilligung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementFondsauswahlType.java new file mode 100644 index 00000000..0ea747c0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementFondsauswahlType.java @@ -0,0 +1,192 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ein einzelnes Element einer Fondsauswahl + * + *

Java-Klasse für ElementFondsauswahl_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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"/>
+ *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementFondsauswahl_Type", propOrder = { + "isin", + "wkn", + "prozentanteil", + "zusaetzlicheFondsdaten", + "bezeichnung" +}) +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 zusaetzlicheFondsdaten; + @XmlElement(name = "Bezeichnung") + protected String bezeichnung; + + /** + * 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheFondsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheFondsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheFondsdatenType } + * + * + */ + public List getZusaetzlicheFondsdaten() { + if (zusaetzlicheFondsdaten == null) { + zusaetzlicheFondsdaten = new ArrayList(); + } + return this.zusaetzlicheFondsdaten; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementIdType.java new file mode 100644 index 00000000..361e82aa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementIdType.java @@ -0,0 +1,114 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * 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 + * + *

Java-Klasse für ElementIdType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktGenerischType.java new file mode 100644 index 00000000..85883f7e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktGenerischType.java @@ -0,0 +1,189 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.ElementarproduktKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.TarifLebenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.LeistungsartUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Elementarprodukt, 2. Generation + * + *

Java-Klasse für ElementarproduktGenerisch_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { + "eingeschlossen", + "einschlussAenderbar", + "attributMetadaten", + "beschreibungTxt", + "versicherungssumme" +}) +@XmlSeeAlso({ + ElementarproduktSachPrivatType.class, + LeistungsartUnfallType.class, + ElementarproduktKrankenType.class, + TarifLebenType.class +}) +public abstract class ElementarproduktGenerischType + extends ElementarproduktType +{ + + @XmlElement(name = "Eingeschlossen") + protected boolean eingeschlossen; + @XmlElement(name = "EinschlussAenderbar") + protected Boolean einschlussAenderbar; + @XmlElement(name = "AttributMetadaten") + protected List 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktType.java new file mode 100644 index 00000000..6e75d134 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ElementarproduktType.java @@ -0,0 +1,141 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.ElementarproduktKfzType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Elementarprodukt + * + *

Java-Klasse für Elementarprodukt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheElementarproduktdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheElementarproduktdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheElementarproduktdatenType } + * + * + */ + public List getZusaetzlicheElementarproduktdaten() { + if (zusaetzlicheElementarproduktdaten == null) { + zusaetzlicheElementarproduktdaten = new ArrayList(); + } + return this.zusaetzlicheElementarproduktdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeMitAendGrundType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeMitAendGrundType.java new file mode 100644 index 00000000..10e20ea4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeMitAendGrundType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Einfache Implementierung einer zu ersetzenden Polizze mit Angabe eines Änderungsgrunds + * + *

Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <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>
+ * 
+ * + * + */ +@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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeType.java new file mode 100644 index 00000000..aa4a3533 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzeType.java @@ -0,0 +1,97 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Beschreibung einer durch Konvertierung zu ersetzenden Polizze + * + *

Java-Klasse für Ersatzpolizze_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Ersatzpolizze_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Ersatzpolizze_Type", propOrder = { + "polizzennr", + "vertragsID" +}) +@XmlSeeAlso({ + ErsatzpolizzeMitAendGrundType.class, + KonvertierungsumfangVertragType.class +}) +public class ErsatzpolizzeType { + + @XmlElement(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzenType.java new file mode 100644 index 00000000..44993429 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ErsatzpolizzenType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für Ersatzpolizzen + * + *

Java-Klasse für Ersatzpolizzen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Ersatzpolizzen_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
+ *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Ersatzpolizzen_Type", propOrder = { + "ersatzpolizzennummer1", + "ersatzpolizzennummer2", + "ersatzpolizzennummer3" +}) +public class ErsatzpolizzenType { + + @XmlElement(name = "Ersatzpolizzennummer1", required = true) + protected String ersatzpolizzennummer1; + @XmlElement(name = "Ersatzpolizzennummer2") + protected String ersatzpolizzennummer2; + @XmlElement(name = "Ersatzpolizzennummer3") + protected String ersatzpolizzennummer3; + + /** + * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsatzpolizzennummer1() { + return ersatzpolizzennummer1; + } + + /** + * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsatzpolizzennummer1(String value) { + this.ersatzpolizzennummer1 = value; + } + + /** + * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsatzpolizzennummer2() { + return ersatzpolizzennummer2; + } + + /** + * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsatzpolizzennummer2(String value) { + this.ersatzpolizzennummer2 = value; + } + + /** + * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsatzpolizzennummer3() { + return ersatzpolizzennummer3; + } + + /** + * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsatzpolizzennummer3(String value) { + this.ersatzpolizzennummer3 = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCANatPersonType.java new file mode 100644 index 00000000..4ab7dc73 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCANatPersonType.java @@ -0,0 +1,76 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Fragen FATCA bei natürlichen Personen + * + *

Java-Klasse für FATCA_NatPersonType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="FATCA_NatPersonType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FATCA_NatPersonType", propOrder = { + "usIndizien", + "usSteuerpflicht" +}) +public class FATCANatPersonType { + + @XmlElement(name = "US_Indizien") + protected boolean usIndizien; + @XmlElement(name = "US_Steuerpflicht") + protected boolean usSteuerpflicht; + + /** + * Ruft den Wert der usIndizien-Eigenschaft ab. + * + */ + public boolean isUSIndizien() { + return usIndizien; + } + + /** + * Legt den Wert der usIndizien-Eigenschaft fest. + * + */ + public void setUSIndizien(boolean value) { + this.usIndizien = value; + } + + /** + * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. + * + */ + public boolean isUSSteuerpflicht() { + return usSteuerpflicht; + } + + /** + * Legt den Wert der usSteuerpflicht-Eigenschaft fest. + * + */ + public void setUSSteuerpflicht(boolean value) { + this.usSteuerpflicht = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCASonstPersonType.java new file mode 100644 index 00000000..be74ad40 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCASonstPersonType.java @@ -0,0 +1,132 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Fragen FATCA bei sonstigen Personen + * + *

Java-Klasse für FATCA_SonstPersonType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="FATCA_SonstPersonType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
+ *         <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FATCA_SonstPersonType", propOrder = { + "landFirmensitz", + "giin", + "konzessionFinanzen", + "nichtFinanzielleDienstleistungen" +}) +public class FATCASonstPersonType { + + @XmlElement(name = "LandFirmensitz", required = true) + protected AttributEnumType landFirmensitz; + @XmlElement(name = "GIIN") + protected String giin; + @XmlElement(name = "KonzessionFinanzen") + protected boolean konzessionFinanzen; + @XmlElement(name = "NichtFinanzielleDienstleistungen") + protected boolean nichtFinanzielleDienstleistungen; + + /** + * Ruft den Wert der landFirmensitz-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getLandFirmensitz() { + return landFirmensitz; + } + + /** + * Legt den Wert der landFirmensitz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setLandFirmensitz(AttributEnumType value) { + this.landFirmensitz = value; + } + + /** + * Ruft den Wert der giin-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGIIN() { + return giin; + } + + /** + * Legt den Wert der giin-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGIIN(String value) { + this.giin = value; + } + + /** + * Ruft den Wert der konzessionFinanzen-Eigenschaft ab. + * + */ + public boolean isKonzessionFinanzen() { + return konzessionFinanzen; + } + + /** + * Legt den Wert der konzessionFinanzen-Eigenschaft fest. + * + */ + public void setKonzessionFinanzen(boolean value) { + this.konzessionFinanzen = value; + } + + /** + * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab. + * + */ + public boolean isNichtFinanzielleDienstleistungen() { + return nichtFinanzielleDienstleistungen; + } + + /** + * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest. + * + */ + public void setNichtFinanzielleDienstleistungen(boolean value) { + this.nichtFinanzielleDienstleistungen = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCAType.java new file mode 100644 index 00000000..9e59a01d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FATCAType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Fragen gemäß FATCA + * + *

Java-Klasse für FATCA_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="FATCA_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
+ *         <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FATCA_Type", propOrder = { + "ustin", + "fatcaNatPerson", + "fatcaSonstPerson" +}) +public class FATCAType { + + @XmlElement(name = "US_TIN") + protected String ustin; + @XmlElement(name = "FATCA_NatPerson") + protected FATCANatPersonType fatcaNatPerson; + @XmlElement(name = "FATCA_SonstPerson") + protected FATCASonstPersonType fatcaSonstPerson; + + /** + * Ruft den Wert der ustin-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUSTIN() { + return ustin; + } + + /** + * Legt den Wert der ustin-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUSTIN(String value) { + this.ustin = value; + } + + /** + * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. + * + * @return + * possible object is + * {@link FATCANatPersonType } + * + */ + public FATCANatPersonType getFATCANatPerson() { + return fatcaNatPerson; + } + + /** + * Legt den Wert der fatcaNatPerson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FATCANatPersonType } + * + */ + public void setFATCANatPerson(FATCANatPersonType value) { + this.fatcaNatPerson = value; + } + + /** + * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. + * + * @return + * possible object is + * {@link FATCASonstPersonType } + * + */ + public FATCASonstPersonType getFATCASonstPerson() { + return fatcaSonstPerson; + } + + /** + * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FATCASonstPersonType } + * + */ + public void setFATCASonstPerson(FATCASonstPersonType value) { + this.fatcaSonstPerson = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FahrzeugType.java new file mode 100644 index 00000000..a05f1919 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/FahrzeugType.java @@ -0,0 +1,1229 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds2Types.v2_16.Entsch2Type; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung + * + *

Java-Klasse für Fahrzeug_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Fahrzeug_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
+ *       <sequence>
+ *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
+ *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="KmStand" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="KmStand" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *                   <element name="Datum" type="{urn:omds20}Datum"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="Wechselkennzeichen" type="{urn:omds3CommonServiceTypes-1-1-0}AWechselkennzeichen_Type" minOccurs="0"/>
+ *         <element name="FzZustandBesichtigung" type="{urn:omds3CommonServiceTypes-1-1-0}AFzZustandBesichtigung_Type" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
+ *       <attribute name="Marke">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="40"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Handelsbez">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="30"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="TypVarVer">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
+ *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Nutzlast">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
+ *             <totalDigits value="6"/>
+ *             <fractionDigits value="0"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
+ *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
+ *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
+ *       <attribute name="Fahrgestnr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Motornr">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="20"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="NatCode">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <minLength value="1"/>
+ *             <maxLength value="26"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
+ *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
+ *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
+ *       <attribute name="Pol_Kennz">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="12"/>
+ *             <minLength value="1"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
+ *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
+ *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
+ *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
+ *       <attribute name="Historisch" type="{http://www.w3.org/2001/XMLSchema}boolean" />
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Fahrzeug_Type", propOrder = { + "zulassungsdaten", + "fahrzeugzustand", + "kmStand", + "erfolgtAnmeldungZeitgleichMitAbmeldung", + "abmeldedatumWechselkennzeichenFahrzeug", + "wechselkennzeichen", + "fzZustandBesichtigung" +}) +public class FahrzeugType + extends VersichertesInteresseType +{ + + @XmlElement(name = "Zulassungsdaten") + protected ZulassungsdatenType zulassungsdaten; + @XmlElement(name = "Fahrzeugzustand") + protected String fahrzeugzustand; + @XmlElement(name = "KmStand") + protected FahrzeugType.KmStand kmStand; + @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") + protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; + @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; + @XmlElement(name = "Wechselkennzeichen") + protected AWechselkennzeichenType wechselkennzeichen; + @XmlElement(name = "FzZustandBesichtigung") + protected AFzZustandBesichtigungType fzZustandBesichtigung; + @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String fzgArtCd; + @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String marke; + @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String handelsbez; + @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String typVarVer; + @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected Entsch2Type leasingkz; + @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer modelljahr; + @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer leistung; + @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer plaetze; + @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected BigDecimal nutzlast; + @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer hubraum; + @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String antriebsArtCd; + @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer co2Ausstoss; + @XmlAttribute(name = "CO2_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer co2WLTPWMTC; + @XmlAttribute(name = "Kraftstoffverbr_NEFZ", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected BigDecimal kraftstoffverbrNEFZ; + @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected BigDecimal kraftstoffverbrWLTPWMTC; + @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String fahrgestnr; + @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String motornr; + @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String natCode; + @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String verwendzweckCd; + @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected XMLGregorianCalendar erstzulassdat; + @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String landesCd; + @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String polKennz; + @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer tueren; + @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer baujahr; + @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer gesamtgewicht; + @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected BigDecimal listenpreis; + @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected BigDecimal sonderausstattung; + @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer eigengewicht; + @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected XMLGregorianCalendar zulassdatHalter; + @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String aufbauNatC; + @XmlAttribute(name = "Historisch", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected Boolean historisch; + + /** + * Ruft den Wert der zulassungsdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZulassungsdatenType } + * + */ + public ZulassungsdatenType getZulassungsdaten() { + return zulassungsdaten; + } + + /** + * Legt den Wert der zulassungsdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZulassungsdatenType } + * + */ + public void setZulassungsdaten(ZulassungsdatenType value) { + this.zulassungsdaten = value; + } + + /** + * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrzeugzustand() { + return fahrzeugzustand; + } + + /** + * Legt den Wert der fahrzeugzustand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrzeugzustand(String value) { + this.fahrzeugzustand = value; + } + + /** + * Ruft den Wert der kmStand-Eigenschaft ab. + * + * @return + * possible object is + * {@link FahrzeugType.KmStand } + * + */ + public FahrzeugType.KmStand getKmStand() { + return kmStand; + } + + /** + * Legt den Wert der kmStand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FahrzeugType.KmStand } + * + */ + public void setKmStand(FahrzeugType.KmStand value) { + this.kmStand = value; + } + + /** + * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { + return erfolgtAnmeldungZeitgleichMitAbmeldung; + } + + /** + * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { + this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; + } + + /** + * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { + return abmeldedatumWechselkennzeichenFahrzeug; + } + + /** + * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { + this.abmeldedatumWechselkennzeichenFahrzeug = value; + } + + /** + * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link AWechselkennzeichenType } + * + */ + public AWechselkennzeichenType getWechselkennzeichen() { + return wechselkennzeichen; + } + + /** + * Legt den Wert der wechselkennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AWechselkennzeichenType } + * + */ + public void setWechselkennzeichen(AWechselkennzeichenType value) { + this.wechselkennzeichen = value; + } + + /** + * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. + * + * @return + * possible object is + * {@link AFzZustandBesichtigungType } + * + */ + public AFzZustandBesichtigungType getFzZustandBesichtigung() { + return fzZustandBesichtigung; + } + + /** + * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AFzZustandBesichtigungType } + * + */ + public void setFzZustandBesichtigung(AFzZustandBesichtigungType value) { + this.fzZustandBesichtigung = value; + } + + /** + * Ruft den Wert der fzgArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFzgArtCd() { + return fzgArtCd; + } + + /** + * Legt den Wert der fzgArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFzgArtCd(String value) { + this.fzgArtCd = value; + } + + /** + * Ruft den Wert der marke-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMarke() { + return marke; + } + + /** + * Legt den Wert der marke-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMarke(String value) { + this.marke = value; + } + + /** + * Ruft den Wert der handelsbez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHandelsbez() { + return handelsbez; + } + + /** + * Legt den Wert der handelsbez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHandelsbez(String value) { + this.handelsbez = value; + } + + /** + * Ruft den Wert der typVarVer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypVarVer() { + return typVarVer; + } + + /** + * Legt den Wert der typVarVer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypVarVer(String value) { + this.typVarVer = value; + } + + /** + * Ruft den Wert der leasingkz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getLeasingkz() { + return leasingkz; + } + + /** + * Legt den Wert der leasingkz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setLeasingkz(Entsch2Type value) { + this.leasingkz = value; + } + + /** + * Ruft den Wert der modelljahr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getModelljahr() { + return modelljahr; + } + + /** + * Legt den Wert der modelljahr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setModelljahr(Integer value) { + this.modelljahr = value; + } + + /** + * Ruft den Wert der leistung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLeistung() { + return leistung; + } + + /** + * Legt den Wert der leistung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLeistung(Integer value) { + this.leistung = value; + } + + /** + * Ruft den Wert der plaetze-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPlaetze() { + return plaetze; + } + + /** + * Legt den Wert der plaetze-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPlaetze(Integer value) { + this.plaetze = value; + } + + /** + * Ruft den Wert der nutzlast-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getNutzlast() { + return nutzlast; + } + + /** + * Legt den Wert der nutzlast-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setNutzlast(BigDecimal value) { + this.nutzlast = value; + } + + /** + * Ruft den Wert der hubraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHubraum() { + return hubraum; + } + + /** + * Legt den Wert der hubraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHubraum(Integer value) { + this.hubraum = value; + } + + /** + * Ruft den Wert der antriebsArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntriebsArtCd() { + return antriebsArtCd; + } + + /** + * Legt den Wert der antriebsArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntriebsArtCd(String value) { + this.antriebsArtCd = value; + } + + /** + * Ruft den Wert der co2Ausstoss-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCO2Ausstoss() { + return co2Ausstoss; + } + + /** + * Legt den Wert der co2Ausstoss-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCO2Ausstoss(Integer value) { + this.co2Ausstoss = value; + } + + /** + * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCO2WLTPWMTC() { + return co2WLTPWMTC; + } + + /** + * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCO2WLTPWMTC(Integer value) { + this.co2WLTPWMTC = value; + } + + /** + * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKraftstoffverbrNEFZ() { + return kraftstoffverbrNEFZ; + } + + /** + * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKraftstoffverbrNEFZ(BigDecimal value) { + this.kraftstoffverbrNEFZ = value; + } + + /** + * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getKraftstoffverbrWLTPWMTC() { + return kraftstoffverbrWLTPWMTC; + } + + /** + * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { + this.kraftstoffverbrWLTPWMTC = value; + } + + /** + * Ruft den Wert der fahrgestnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestnr() { + return fahrgestnr; + } + + /** + * Legt den Wert der fahrgestnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestnr(String value) { + this.fahrgestnr = value; + } + + /** + * Ruft den Wert der motornr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMotornr() { + return motornr; + } + + /** + * Legt den Wert der motornr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMotornr(String value) { + this.motornr = value; + } + + /** + * Ruft den Wert der natCode-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNatCode() { + return natCode; + } + + /** + * Legt den Wert der natCode-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNatCode(String value) { + this.natCode = value; + } + + /** + * Ruft den Wert der verwendzweckCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerwendzweckCd() { + return verwendzweckCd; + } + + /** + * Legt den Wert der verwendzweckCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerwendzweckCd(String value) { + this.verwendzweckCd = value; + } + + /** + * Ruft den Wert der erstzulassdat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getErstzulassdat() { + return erstzulassdat; + } + + /** + * Legt den Wert der erstzulassdat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setErstzulassdat(XMLGregorianCalendar value) { + this.erstzulassdat = 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 polKennz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolKennz() { + return polKennz; + } + + /** + * Legt den Wert der polKennz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolKennz(String value) { + this.polKennz = value; + } + + /** + * Ruft den Wert der tueren-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTueren() { + return tueren; + } + + /** + * Legt den Wert der tueren-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTueren(Integer value) { + this.tueren = value; + } + + /** + * Ruft den Wert der baujahr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBaujahr() { + return baujahr; + } + + /** + * Legt den Wert der baujahr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBaujahr(Integer value) { + this.baujahr = value; + } + + /** + * Ruft den Wert der gesamtgewicht-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGesamtgewicht() { + return gesamtgewicht; + } + + /** + * Legt den Wert der gesamtgewicht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGesamtgewicht(Integer value) { + this.gesamtgewicht = value; + } + + /** + * Ruft den Wert der listenpreis-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getListenpreis() { + return listenpreis; + } + + /** + * Legt den Wert der listenpreis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setListenpreis(BigDecimal value) { + this.listenpreis = value; + } + + /** + * Ruft den Wert der sonderausstattung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSonderausstattung() { + return sonderausstattung; + } + + /** + * Legt den Wert der sonderausstattung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSonderausstattung(BigDecimal value) { + this.sonderausstattung = value; + } + + /** + * Ruft den Wert der eigengewicht-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEigengewicht() { + return eigengewicht; + } + + /** + * Legt den Wert der eigengewicht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEigengewicht(Integer value) { + this.eigengewicht = value; + } + + /** + * Ruft den Wert der zulassdatHalter-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZulassdatHalter() { + return zulassdatHalter; + } + + /** + * Legt den Wert der zulassdatHalter-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZulassdatHalter(XMLGregorianCalendar value) { + this.zulassdatHalter = value; + } + + /** + * Ruft den Wert der aufbauNatC-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAufbauNatC() { + return aufbauNatC; + } + + /** + * Legt den Wert der aufbauNatC-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAufbauNatC(String value) { + this.aufbauNatC = value; + } + + /** + * Ruft den Wert der historisch-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isHistorisch() { + return historisch; + } + + /** + * Legt den Wert der historisch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setHistorisch(Boolean value) { + this.historisch = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="KmStand" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+     *         <element name="Datum" type="{urn:omds20}Datum"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "kmStand", + "datum" + }) + public static class KmStand { + + @XmlElement(name = "KmStand") + @XmlSchemaType(name = "unsignedShort") + protected int kmStand; + @XmlElement(name = "Datum", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datum; + + /** + * Ruft den Wert der kmStand-Eigenschaft ab. + * + */ + public int getKmStand() { + return kmStand; + } + + /** + * Legt den Wert der kmStand-Eigenschaft fest. + * + */ + public void setKmStand(int value) { + this.kmStand = 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; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GMSGType.java new file mode 100644 index 00000000..3a66eba4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GMSGType.java @@ -0,0 +1,165 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz + * + *

Java-Klasse für GMSG_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GMSG_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
+ *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GMSG_Type", propOrder = { + "steuerlichAnsaessig" +}) +public class GMSGType { + + @XmlElement(name = "SteuerlichAnsaessig", required = true) + protected List steuerlichAnsaessig; + + /** + * Gets the value of the steuerlichAnsaessig property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the steuerlichAnsaessig property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSteuerlichAnsaessig().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GMSGType.SteuerlichAnsaessig } + * + * + */ + public List getSteuerlichAnsaessig() { + if (steuerlichAnsaessig == null) { + steuerlichAnsaessig = new ArrayList(); + } + return this.steuerlichAnsaessig; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
+     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "land", + "steuernummer" + }) + public static class SteuerlichAnsaessig { + + @XmlElement(name = "Land", required = true) + protected AttributEnumType land; + @XmlElement(name = "Steuernummer") + protected AttributStringType steuernummer; + + /** + * Ruft den Wert der land-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getLand() { + return land; + } + + /** + * Legt den Wert der land-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setLand(AttributEnumType value) { + this.land = value; + } + + /** + * Ruft den Wert der steuernummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributStringType } + * + */ + public AttributStringType getSteuernummer() { + return steuernummer; + } + + /** + * Legt den Wert der steuernummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributStringType } + * + */ + public void setSteuernummer(AttributStringType value) { + this.steuernummer = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsfallZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsfallZuordnungType.java new file mode 100644 index 00000000..a7d6e227 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsfallZuordnungType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung für Geschaeftsfallreferenzen + * + *

Java-Klasse für GeschaeftsfallZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaeftsfallZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaeftsfallZuordnung_Type", propOrder = { + "geschaeftsfallnummer", + "geschaeftsfallArt" +}) +public class GeschaeftsfallZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Geschaeftsfallnummer", required = true) + protected ObjektIdType geschaeftsfallnummer; + @XmlElement(name = "GeschaeftsfallArt") + protected String geschaeftsfallArt; + + /** + * 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; + } + + /** + * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeschaeftsfallArt() { + return geschaeftsfallArt; + } + + /** + * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeschaeftsfallArt(String value) { + this.geschaeftsfallArt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsobjektArtType.java new file mode 100644 index 00000000..6fee61a9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GeschaeftsobjektArtType.java @@ -0,0 +1,61 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für GeschaeftsobjektArt_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="GeschaeftsobjektArt_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="VTG"/>
+ *     <enumeration value="SC"/>
+ *     <enumeration value="AN"/>
+ *     <enumeration value="IB"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "GeschaeftsobjektArt_Type") +@XmlEnum +public enum GeschaeftsobjektArtType { + + + /** + * Vertrag + * + */ + VTG, + + /** + * Schaden + * + */ + SC, + + /** + * Antrag + * + */ + AN, + + /** + * Interventionsbericht + * + */ + IB; + + public String value() { + return name(); + } + + public static GeschaeftsobjektArtType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GlaeubigerSicherstellungType.java new file mode 100644 index 00000000..811fbb2d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/GlaeubigerSicherstellungType.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Gläubiger einer Sicherstellung + * + *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GlaeubigerSicherstellung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { + "institut", + "plz", + "strasse", + "vertragsnummer" +}) +public class GlaeubigerSicherstellungType { + + @XmlElement(name = "Institut", required = true) + protected String institut; + @XmlElement(name = "PLZ", required = true) + protected String plz; + @XmlElement(name = "Strasse", required = true) + protected String strasse; + @XmlElement(name = "Vertragsnummer", required = true) + protected String vertragsnummer; + + /** + * Ruft den Wert der institut-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInstitut() { + return institut; + } + + /** + * Legt den Wert der institut-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInstitut(String value) { + this.institut = 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 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 vertragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsnummer() { + return vertragsnummer; + } + + /** + * Legt den Wert der vertragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsnummer(String value) { + this.vertragsnummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationType.java new file mode 100644 index 00000000..84b81cfa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationType.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für eine Kombination von Produktbaustein-Ids + * + *

Java-Klasse für Kombination_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Kombination_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="TarifId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Kombination_Type", propOrder = { + "tarifids" +}) +public class KombinationType { + + @XmlElement(name = "TarifId", required = true) + protected List tarifids; + + /** + *

Die Liste der zulässigen Baustein-Ids.

Gets the value of the tarifids property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the tarifids property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTarifids().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getTarifids() { + if (tarifids == null) { + tarifids = new ArrayList(); + } + return this.tarifids; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationenType.java new file mode 100644 index 00000000..8246064f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KombinationenType.java @@ -0,0 +1,122 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion. + * + *

Java-Klasse für Kombinationen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Kombinationen_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="alle" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
+ *       <attribute name="zulaessige" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Kombinationen_Type", propOrder = { + "kombinationen" +}) +public class KombinationenType { + + @XmlElement(name = "Kombination") + protected List kombinationen; + @XmlAttribute(name = "alle", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected boolean alle; + @XmlAttribute(name = "zulaessige", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected Boolean zulaessige; + + /** + *

Die Liste der zulässigen Kombinationen.

Gets the value of the kombinationen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the kombinationen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKombinationen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KombinationType } + * + * + */ + public List getKombinationen() { + if (kombinationen == null) { + kombinationen = new ArrayList(); + } + return this.kombinationen; + } + + /** + * Ruft den Wert der alle-Eigenschaft ab. + * + */ + public boolean isAlle() { + return alle; + } + + /** + * Legt den Wert der alle-Eigenschaft fest. + * + */ + public void setAlle(boolean value) { + this.alle = value; + } + + /** + * Ruft den Wert der zulaessige-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isZulaessige() { + if (zulaessige == null) { + return true; + } else { + return zulaessige; + } + } + + /** + * Legt den Wert der zulaessige-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setZulaessige(Boolean value) { + this.zulaessige = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KontierungType.java new file mode 100644 index 00000000..9fbee331 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KontierungType.java @@ -0,0 +1,181 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigInteger; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden, insbesondere + * wenn mehrere Vermittler an dem Vertrag beteiligt werden sollen. In der Regel wird die Aufteilung für Abschluss-, Folge- und Betreuungsprovision über alle Vermittler je Kategorie 100 Prozent ergeben. + * Es gibt aber auch Fälle, in denen die prozentuale Aufteilung nicht mit dem Antrag übermittelt wird, sondern an anderer Stelle festgelegt wird. Es sollen dann nur die beteiligten Vermittler übermittelt werden. + * Daher können die prozentualen Angaben ab Version 1.9 auch entfallen. + * + * + *

Java-Klasse für Kontierung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Kontierung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Kontierung_Type", propOrder = { + "vermittlernummer", + "vermittlername", + "abschluss", + "folge", + "betreuung" +}) +public class KontierungType { + + @XmlElement(name = "Vermittlernummer", required = true) + protected String vermittlernummer; + @XmlElement(name = "Vermittlername") + protected String vermittlername; + @XmlElement(name = "Abschluss") + protected BigInteger abschluss; + @XmlElement(name = "Folge") + protected BigInteger folge; + @XmlElement(name = "Betreuung") + protected BigInteger betreuung; + + /** + * Ruft den Wert der vermittlernummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermittlernummer() { + return vermittlernummer; + } + + /** + * Legt den Wert der vermittlernummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermittlernummer(String value) { + this.vermittlernummer = value; + } + + /** + * Ruft den Wert der vermittlername-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermittlername() { + return vermittlername; + } + + /** + * Legt den Wert der vermittlername-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermittlername(String value) { + this.vermittlername = value; + } + + /** + * Ruft den Wert der abschluss-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getAbschluss() { + return abschluss; + } + + /** + * Legt den Wert der abschluss-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setAbschluss(BigInteger value) { + this.abschluss = value; + } + + /** + * Ruft den Wert der folge-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getFolge() { + return folge; + } + + /** + * Legt den Wert der folge-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setFolge(BigInteger value) { + this.folge = value; + } + + /** + * Ruft den Wert der betreuung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getBetreuung() { + return betreuung; + } + + /** + * Legt den Wert der betreuung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setBetreuung(BigInteger value) { + this.betreuung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungBausteinType.java new file mode 100644 index 00000000..1680d19f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungBausteinType.java @@ -0,0 +1,195 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Allgemeiner Typ um die Behandlung der Unterbausteine in der Konvertierung zu spezifizieren + * + *

Java-Klasse für KonvertierungBaustein_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungBaustein_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Bezeichnung" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="255"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungBaustein_Type", propOrder = { + "ersetztId", + "antragsId", + "bezeichnung", + "zulaessigeAktionen", + "gewaehlteAktion" +}) +@XmlSeeAlso({ + KonvertierungProduktBausteinType.class +}) +public class KonvertierungBausteinType { + + @XmlElement(name = "ErsetztId", required = true) + protected String ersetztId; + @XmlElement(name = "AntragsId") + protected String antragsId; + @XmlElement(name = "Bezeichnung") + protected String bezeichnung; + @XmlElement(name = "ZulaessigeAktion") + protected List zulaessigeAktionen; + @XmlElement(name = "GewaehlteAktion") + protected KonvertierungsaktionType gewaehlteAktion; + + /** + * Ruft den Wert der ersetztId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsetztId() { + return ersetztId; + } + + /** + * Legt den Wert der ersetztId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsetztId(String value) { + this.ersetztId = value; + } + + /** + * Ruft den Wert der antragsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntragsId() { + return antragsId; + } + + /** + * Legt den Wert der antragsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntragsId(String value) { + this.antragsId = 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; + } + + /** + *

Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. + * Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. + * Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

Gets the value of the zulaessigeAktionen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zulaessigeAktionen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZulaessigeAktionen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KonvertierungsaktionType } + * + * + */ + public List getZulaessigeAktionen() { + if (zulaessigeAktionen == null) { + zulaessigeAktionen = new ArrayList(); + } + return this.zulaessigeAktionen; + } + + /** + * Ruft den Wert der gewaehlteAktion-Eigenschaft ab. + * + * @return + * possible object is + * {@link KonvertierungsaktionType } + * + */ + public KonvertierungsaktionType getGewaehlteAktion() { + return gewaehlteAktion; + } + + /** + * Legt den Wert der gewaehlteAktion-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KonvertierungsaktionType } + * + */ + public void setGewaehlteAktion(KonvertierungsaktionType value) { + this.gewaehlteAktion = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungProduktBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungProduktBausteinType.java new file mode 100644 index 00000000..0a70f0f5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungProduktBausteinType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ableitung für die Produktebene (Ebene 2) mit der zusätzlichen Möglichkeit die Sparte zu signalisieren + * + *

Java-Klasse für KonvertierungProduktBaustein_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungProduktBaustein_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type">
+ *       <sequence>
+ *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungProduktBaustein_Type", propOrder = { + "spartenCd" +}) +public class KonvertierungProduktBausteinType + extends KonvertierungBausteinType +{ + + @XmlElement(name = "SpartenCd") + protected String spartenCd; + + /** + * Ruft den Wert der spartenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpartenCd() { + return spartenCd; + } + + /** + * Legt den Wert der spartenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpartenCd(String value) { + this.spartenCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionBelassenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionBelassenType.java new file mode 100644 index 00000000..8ef87dc9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionBelassenType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag) + * + *

Java-Klasse für KonvertierungsaktionBelassen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungsaktionBelassen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungsaktionBelassen_Type") +public class KonvertierungsaktionBelassenType + extends KonvertierungsaktionType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionStornoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionStornoType.java new file mode 100644 index 00000000..fd271c96 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionStornoType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen) + * + *

Java-Klasse für KonvertierungsaktionStorno_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungsaktionStorno_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungsaktionStorno_Type") +public class KonvertierungsaktionStornoType + extends KonvertierungsaktionType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionType.java new file mode 100644 index 00000000..9c50a47f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionType.java @@ -0,0 +1,70 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakte Aktion für einen Baustein. Konkrete Aktionen werden hiervon abgeleitet. + * + *

Java-Klasse für Konvertierungsaktion_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Konvertierungsaktion_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Konvertierungsaktion_Type", propOrder = { + "art" +}) +@XmlSeeAlso({ + KonvertierungsaktionBelassenType.class, + KonvertierungsaktionUebernehmenType.class, + KonvertierungsaktionStornoType.class +}) +public abstract class KonvertierungsaktionType { + + @XmlElement(name = "Art") + protected String art; + + /** + * Ruft den Wert der art-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArt() { + return art; + } + + /** + * Legt den Wert der art-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArt(String value) { + this.art = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionUebernehmenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionUebernehmenType.java new file mode 100644 index 00000000..ef3575bb --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsaktionUebernehmenType.java @@ -0,0 +1,101 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen) + * + *

Java-Klasse für KonvertierungsaktionUebernehmen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungsaktionUebernehmen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
+ *       <sequence>
+ *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungsaktionUebernehmen_Type", propOrder = { + "bausteine", + "kombinationen" +}) +public class KonvertierungsaktionUebernehmenType + extends KonvertierungsaktionType +{ + + @XmlElement(name = "Baustein") + protected List bausteine; + @XmlElement(name = "Kombinationen") + protected KombinationenType kombinationen; + + /** + *

Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

Gets the value of the bausteine property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bausteine property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBausteine().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KonvertierungBausteinType } + * + * + */ + public List getBausteine() { + if (bausteine == null) { + bausteine = new ArrayList(); + } + return this.bausteine; + } + + /** + * Ruft den Wert der kombinationen-Eigenschaft ab. + * + * @return + * possible object is + * {@link KombinationenType } + * + */ + public KombinationenType getKombinationen() { + return kombinationen; + } + + /** + * Legt den Wert der kombinationen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KombinationenType } + * + */ + public void setKombinationen(KombinationenType value) { + this.kombinationen = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsumfangVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsumfangVertragType.java new file mode 100644 index 00000000..1de8a0fa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KonvertierungsumfangVertragType.java @@ -0,0 +1,129 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag + * + *

Java-Klasse für KonvertierungsumfangVertrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KonvertierungsumfangVertrag_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
+ *       <sequence>
+ *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungProduktBaustein_Type" maxOccurs="unbounded"/>
+ *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KonvertierungsumfangVertrag_Type", propOrder = { + "bezeichnung", + "bausteine", + "kombinationen" +}) +public class KonvertierungsumfangVertragType + extends ErsatzpolizzeType +{ + + @XmlElement(name = "Bezeichnung") + protected String bezeichnung; + @XmlElement(name = "Baustein", required = true) + protected List bausteine; + @XmlElement(name = "Kombinationen") + protected KombinationenType kombinationen; + + /** + * 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; + } + + /** + *

Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

Gets the value of the bausteine property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bausteine property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBausteine().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KonvertierungProduktBausteinType } + * + * + */ + public List getBausteine() { + if (bausteine == null) { + bausteine = new ArrayList(); + } + return this.bausteine; + } + + /** + * Ruft den Wert der kombinationen-Eigenschaft ab. + * + * @return + * possible object is + * {@link KombinationenType } + * + */ + public KombinationenType getKombinationen() { + return kombinationen; + } + + /** + * Legt den Wert der kombinationen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KombinationenType } + * + */ + public void setKombinationen(KombinationenType value) { + this.kombinationen = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KostenFixOderProzentType.java new file mode 100644 index 00000000..f9626cf1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KostenFixOderProzentType.java @@ -0,0 +1,97 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert + * + *

Java-Klasse für KostenFixOderProzent_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KostenFixOderProzent_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice>
+ *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
+ *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KostenFixOderProzent_Type", propOrder = { + "absoluterBetrag", + "prozentVs" +}) +public class KostenFixOderProzentType { + + @XmlElement(name = "AbsoluterBetrag") + protected BigDecimal absoluterBetrag; + @XmlElement(name = "ProzentVs") + @XmlSchemaType(name = "unsignedByte") + protected Short prozentVs; + + /** + * Ruft den Wert der absoluterBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAbsoluterBetrag() { + return absoluterBetrag; + } + + /** + * Legt den Wert der absoluterBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAbsoluterBetrag(BigDecimal value) { + this.absoluterBetrag = value; + } + + /** + * Ruft den Wert der prozentVs-Eigenschaft ab. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getProzentVs() { + return prozentVs; + } + + /** + * Legt den Wert der prozentVs-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setProzentVs(Short value) { + this.prozentVs = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KreditkarteType.java new file mode 100644 index 00000000..d71c9992 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/KreditkarteType.java @@ -0,0 +1,189 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ Kreditkarte + * + *

Java-Klasse für Kreditkarte_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Kreditkarte_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="Pruefziffer" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
+ *             <totalDigits value="3"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="AblaufMonat" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
+ *             <totalDigits value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *       <attribute name="AblaufJahr" use="required">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
+ *             <totalDigits value="2"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Kreditkarte_Type") +public class KreditkarteType { + + @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected String gesellschaft; + @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected String kartennummer; + @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected String inhaber; + @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected long pruefziffer; + @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected short ablaufMonat; + @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected short ablaufJahr; + + /** + * Ruft den Wert der gesellschaft-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGesellschaft() { + return gesellschaft; + } + + /** + * Legt den Wert der gesellschaft-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGesellschaft(String value) { + this.gesellschaft = value; + } + + /** + * Ruft den Wert der kartennummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKartennummer() { + return kartennummer; + } + + /** + * Legt den Wert der kartennummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKartennummer(String value) { + this.kartennummer = value; + } + + /** + * Ruft den Wert der inhaber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInhaber() { + return inhaber; + } + + /** + * Legt den Wert der inhaber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInhaber(String value) { + this.inhaber = value; + } + + /** + * Ruft den Wert der pruefziffer-Eigenschaft ab. + * + */ + public long getPruefziffer() { + return pruefziffer; + } + + /** + * Legt den Wert der pruefziffer-Eigenschaft fest. + * + */ + public void setPruefziffer(long value) { + this.pruefziffer = value; + } + + /** + * Ruft den Wert der ablaufMonat-Eigenschaft ab. + * + */ + public short getAblaufMonat() { + return ablaufMonat; + } + + /** + * Legt den Wert der ablaufMonat-Eigenschaft fest. + * + */ + public void setAblaufMonat(short value) { + this.ablaufMonat = value; + } + + /** + * Ruft den Wert der ablaufJahr-Eigenschaft ab. + * + */ + public short getAblaufJahr() { + return ablaufJahr; + } + + /** + * Legt den Wert der ablaufJahr-Eigenschaft fest. + * + */ + public void setAblaufJahr(short value) { + this.ablaufJahr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/LegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/LegitimationType.java new file mode 100644 index 00000000..bb055fea --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/LegitimationType.java @@ -0,0 +1,63 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.ELLegitimationType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Daten zur Legitimation des Antragstellers bzw. Kunden + * + *

Java-Klasse für Legitimation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Legitimation_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds20}EL-Legitimation_Type">
+ *       <attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" />
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Legitimation_Type") +public class LegitimationType + extends ELLegitimationType +{ + + @XmlAttribute(name = "AusstellendesLand", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String ausstellendesLand; + + /** + * Ruft den Wert der ausstellendesLand-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAusstellendesLand() { + return ausstellendesLand; + } + + /** + * Legt den Wert der ausstellendesLand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAusstellendesLand(String value) { + this.ausstellendesLand = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/MahnverfahrenZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/MahnverfahrenZuordnungType.java new file mode 100644 index 00000000..a823469e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/MahnverfahrenZuordnungType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zu Mahnung + * + *

Java-Klasse für MahnverfahrenZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="MahnverfahrenZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Mahnverfahrennummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MahnverfahrenZuordnung_Type", propOrder = { + "mahnverfahrennummer", + "vermnr" +}) +public class MahnverfahrenZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Mahnverfahrennummer", required = true) + protected String mahnverfahrennummer; + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + + /** + * Ruft den Wert der mahnverfahrennummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMahnverfahrennummer() { + return mahnverfahrennummer; + } + + /** + * Legt den Wert der mahnverfahrennummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMahnverfahrennummer(String value) { + this.mahnverfahrennummer = value; + } + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/NormierteGeschaeftsfallArtenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/NormierteGeschaeftsfallArtenType.java similarity index 79% rename from OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/NormierteGeschaeftsfallArtenType.java rename to OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/NormierteGeschaeftsfallArtenType.java index db18d5b4..ab3df5a3 100644 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/common/NormierteGeschaeftsfallArtenType.java +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/NormierteGeschaeftsfallArtenType.java @@ -1,10 +1,9 @@ -package at.vvo.omds.types.omds3Types.r1_10_0.common; +package at.vvo.omds.types.omds3Types.r1_11_0.common; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** @@ -23,7 +22,6 @@ import javax.xml.bind.annotation.XmlType; */ @XmlType(name = "NormierteGeschaeftsfallArten_Type") @XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") public enum NormierteGeschaeftsfallArtenType { diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjectFactory.java new file mode 100644 index 00000000..5a834233 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjectFactory.java @@ -0,0 +1,1065 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.common package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); + private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); + private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); + private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); + private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.common + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link GMSGType } + * + */ + public GMSGType createGMSGType() { + return new GMSGType(); + } + + /** + * Create an instance of {@link SchadenZuordnungType } + * + */ + public SchadenZuordnungType createSchadenZuordnungType() { + return new SchadenZuordnungType(); + } + + /** + * Create an instance of {@link VertragsZuordnungType } + * + */ + public VertragsZuordnungType createVertragsZuordnungType() { + return new VertragsZuordnungType(); + } + + /** + * Create an instance of {@link DokumentenReferenzPostserviceType } + * + */ + public DokumentenReferenzPostserviceType createDokumentenReferenzPostserviceType() { + return new DokumentenReferenzPostserviceType(); + } + + /** + * Create an instance of {@link FahrzeugType } + * + */ + public FahrzeugType createFahrzeugType() { + return new FahrzeugType(); + } + + /** + * Create an instance of {@link ZahlwegType } + * + */ + public ZahlwegType createZahlwegType() { + return new ZahlwegType(); + } + + /** + * Create an instance of {@link ProzessDokumentType } + * + */ + public ProzessDokumentType createProzessDokumentType() { + return new ProzessDokumentType(); + } + + /** + * Create an instance of {@link ServiceFault } + * + */ + public ServiceFault createServiceFault() { + return new ServiceFault(); + } + + /** + * Create an instance of {@link ObjektIdType } + * + */ + public ObjektIdType createObjektIdType() { + return new ObjektIdType(); + } + + /** + * Create an instance of {@link PersonType } + * + */ + public PersonType createPersonType() { + return new PersonType(); + } + + /** + * Create an instance of {@link AdresseType } + * + */ + public AdresseType createAdresseType() { + return new AdresseType(); + } + + /** + * Create an instance of {@link AgentFilterType } + * + */ + public AgentFilterType createAgentFilterType() { + return new AgentFilterType(); + } + + /** + * Create an instance of {@link ElementIdType } + * + */ + public ElementIdType createElementIdType() { + return new ElementIdType(); + } + + /** + * Create an instance of {@link ResponseStatusType } + * + */ + public ResponseStatusType createResponseStatusType() { + return new ResponseStatusType(); + } + + /** + * Create an instance of {@link Referenz } + * + */ + public Referenz createReferenz() { + return new Referenz(); + } + + /** + * Create an instance of {@link LegitimationType } + * + */ + public LegitimationType createLegitimationType() { + return new LegitimationType(); + } + + /** + * Create an instance of {@link DateianhangType } + * + */ + public DateianhangType createDateianhangType() { + return new DateianhangType(); + } + + /** + * Create an instance of {@link DokumentBinaryDataType } + * + */ + public DokumentBinaryDataType createDokumentBinaryDataType() { + return new DokumentBinaryDataType(); + } + + /** + * Create an instance of {@link AutorisierungType } + * + */ + public AutorisierungType createAutorisierungType() { + return new AutorisierungType(); + } + + /** + * Create an instance of {@link AutorisierungsAnforderungType } + * + */ + public AutorisierungsAnforderungType createAutorisierungsAnforderungType() { + return new AutorisierungsAnforderungType(); + } + + /** + * Create an instance of {@link AutorisierungsartType } + * + */ + public AutorisierungsartType createAutorisierungsartType() { + return new AutorisierungsartType(); + } + + /** + * Create an instance of {@link ProzessDokRequestType } + * + */ + public ProzessDokRequestType createProzessDokRequestType() { + return new ProzessDokRequestType(); + } + + /** + * Create an instance of {@link ProzessDokRequirementType } + * + */ + public ProzessDokRequirementType createProzessDokRequirementType() { + return new ProzessDokRequirementType(); + } + + /** + * Create an instance of {@link ProzessDokToReturnType } + * + */ + public ProzessDokToReturnType createProzessDokToReturnType() { + return new ProzessDokToReturnType(); + } + + /** + * Create an instance of {@link ProzessDokHandoutType } + * + */ + public ProzessDokHandoutType createProzessDokHandoutType() { + return new ProzessDokHandoutType(); + } + + /** + * Create an instance of {@link KontierungType } + * + */ + public KontierungType createKontierungType() { + return new KontierungType(); + } + + /** + * Create an instance of {@link KombinationenType } + * + */ + public KombinationenType createKombinationenType() { + return new KombinationenType(); + } + + /** + * Create an instance of {@link KombinationType } + * + */ + public KombinationType createKombinationType() { + return new KombinationType(); + } + + /** + * Create an instance of {@link ZusatzproduktGenerischType } + * + */ + public ZusatzproduktGenerischType createZusatzproduktGenerischType() { + return new ZusatzproduktGenerischType(); + } + + /** + * Create an instance of {@link BeteiligtePersonVertragType } + * + */ + public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { + return new BeteiligtePersonVertragType(); + } + + /** + * Create an instance of {@link PraemieType } + * + */ + public PraemieType createPraemieType() { + return new PraemieType(); + } + + /** + * Create an instance of {@link VersicherungssteuerType } + * + */ + public VersicherungssteuerType createVersicherungssteuerType() { + return new VersicherungssteuerType(); + } + + /** + * Create an instance of {@link TechnicalKeyValueType } + * + */ + public TechnicalKeyValueType createTechnicalKeyValueType() { + return new TechnicalKeyValueType(); + } + + /** + * Create an instance of {@link VertragspersonType } + * + */ + public VertragspersonType createVertragspersonType() { + return new VertragspersonType(); + } + + /** + * Create an instance of {@link VinkulierungType } + * + */ + public VinkulierungType createVinkulierungType() { + return new VinkulierungType(); + } + + /** + * Create an instance of {@link VinkularglaeubigerType } + * + */ + public VinkularglaeubigerType createVinkularglaeubigerType() { + return new VinkularglaeubigerType(); + } + + /** + * Create an instance of {@link BezugsrechtType } + * + */ + public BezugsrechtType createBezugsrechtType() { + return new BezugsrechtType(); + } + + /** + * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType } + * + */ + public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() { + return new BezugsberechtigungGesetzlicheErbenType(); + } + + /** + * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType } + * + */ + public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() { + return new BezugsberechtigungTestamentarischeErbenType(); + } + + /** + * Create an instance of {@link BezugsberechtigungUeberbringerType } + * + */ + public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() { + return new BezugsberechtigungUeberbringerType(); + } + + /** + * Create an instance of {@link BezugsberechtigungNamentlich } + * + */ + public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() { + return new BezugsberechtigungNamentlich(); + } + + /** + * Create an instance of {@link PersonNamentlichesBezugsrechtType } + * + */ + public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() { + return new PersonNamentlichesBezugsrechtType(); + } + + /** + * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType } + * + */ + public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() { + return new BezugsberechtigungVersicherungsnehmerType(); + } + + /** + * Create an instance of {@link BezugsberechtigungVersichertePersonType } + * + */ + public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() { + return new BezugsberechtigungVersichertePersonType(); + } + + /** + * Create an instance of {@link BezugsberechtigungIndividuell } + * + */ + public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() { + return new BezugsberechtigungIndividuell(); + } + + /** + * Create an instance of {@link BonusMalusSystemType } + * + */ + public BonusMalusSystemType createBonusMalusSystemType() { + return new BonusMalusSystemType(); + } + + /** + * Create an instance of {@link OffeneSchaedenType } + * + */ + public OffeneSchaedenType createOffeneSchaedenType() { + return new OffeneSchaedenType(); + } + + /** + * Create an instance of {@link OffenerSchadenType } + * + */ + public OffenerSchadenType createOffenerSchadenType() { + return new OffenerSchadenType(); + } + + /** + * Create an instance of {@link VorversicherungenImplType } + * + */ + public VorversicherungenImplType createVorversicherungenImplType() { + return new VorversicherungenImplType(); + } + + /** + * Create an instance of {@link VorversicherungType } + * + */ + public VorversicherungType createVorversicherungType() { + return new VorversicherungType(); + } + + /** + * Create an instance of {@link VorversicherungenDetailType } + * + */ + public VorversicherungenDetailType createVorversicherungenDetailType() { + return new VorversicherungenDetailType(); + } + + /** + * Create an instance of {@link DatenverwendungType } + * + */ + public DatenverwendungType createDatenverwendungType() { + return new DatenverwendungType(); + } + + /** + * Create an instance of {@link ErsatzpolizzenType } + * + */ + public ErsatzpolizzenType createErsatzpolizzenType() { + return new ErsatzpolizzenType(); + } + + /** + * Create an instance of {@link ErsatzpolizzeType } + * + */ + public ErsatzpolizzeType createErsatzpolizzeType() { + return new ErsatzpolizzeType(); + } + + /** + * Create an instance of {@link ErsatzpolizzeMitAendGrundType } + * + */ + public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() { + return new ErsatzpolizzeMitAendGrundType(); + } + + /** + * Create an instance of {@link KonvertierungsumfangVertragType } + * + */ + public KonvertierungsumfangVertragType createKonvertierungsumfangVertragType() { + return new KonvertierungsumfangVertragType(); + } + + /** + * Create an instance of {@link KonvertierungBausteinType } + * + */ + public KonvertierungBausteinType createKonvertierungBausteinType() { + return new KonvertierungBausteinType(); + } + + /** + * Create an instance of {@link KonvertierungProduktBausteinType } + * + */ + public KonvertierungProduktBausteinType createKonvertierungProduktBausteinType() { + return new KonvertierungProduktBausteinType(); + } + + /** + * Create an instance of {@link KonvertierungsaktionBelassenType } + * + */ + public KonvertierungsaktionBelassenType createKonvertierungsaktionBelassenType() { + return new KonvertierungsaktionBelassenType(); + } + + /** + * Create an instance of {@link KonvertierungsaktionUebernehmenType } + * + */ + public KonvertierungsaktionUebernehmenType createKonvertierungsaktionUebernehmenType() { + return new KonvertierungsaktionUebernehmenType(); + } + + /** + * Create an instance of {@link KonvertierungsaktionStornoType } + * + */ + public KonvertierungsaktionStornoType createKonvertierungsaktionStornoType() { + return new KonvertierungsaktionStornoType(); + } + + /** + * Create an instance of {@link DokumentInfoType } + * + */ + public DokumentInfoType createDokumentInfoType() { + return new DokumentInfoType(); + } + + /** + * Create an instance of {@link ZahlungsdatenType } + * + */ + public ZahlungsdatenType createZahlungsdatenType() { + return new ZahlungsdatenType(); + } + + /** + * Create an instance of {@link KreditkarteType } + * + */ + public KreditkarteType createKreditkarteType() { + return new KreditkarteType(); + } + + /** + * Create an instance of {@link BankverbindungType } + * + */ + public BankverbindungType createBankverbindungType() { + return new BankverbindungType(); + } + + /** + * Create an instance of {@link PersBankverbindungType } + * + */ + public PersBankverbindungType createPersBankverbindungType() { + return new PersBankverbindungType(); + } + + /** + * Create an instance of {@link VersichertePersonType } + * + */ + public VersichertePersonType createVersichertePersonType() { + return new VersichertePersonType(); + } + + /** + * Create an instance of {@link RisikoNatPersonType } + * + */ + public RisikoNatPersonType createRisikoNatPersonType() { + return new RisikoNatPersonType(); + } + + /** + * Create an instance of {@link ZulassungsdatenType } + * + */ + public ZulassungsdatenType createZulassungsdatenType() { + return new ZulassungsdatenType(); + } + + /** + * Create an instance of {@link VersicherteLiegenschaftType } + * + */ + public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { + return new VersicherteLiegenschaftType(); + } + + /** + * Create an instance of {@link KostenFixOderProzentType } + * + */ + public KostenFixOderProzentType createKostenFixOderProzentType() { + return new KostenFixOderProzentType(); + } + + /** + * Create an instance of {@link SelbstbehaltType } + * + */ + public SelbstbehaltType createSelbstbehaltType() { + return new SelbstbehaltType(); + } + + /** + * Create an instance of {@link UploadDokumentType } + * + */ + public UploadDokumentType createUploadDokumentType() { + return new UploadDokumentType(); + } + + /** + * Create an instance of {@link DokumentenReferenzType } + * + */ + public DokumentenReferenzType createDokumentenReferenzType() { + return new DokumentenReferenzType(); + } + + /** + * Create an instance of {@link EinfacheZuordnungType } + * + */ + public EinfacheZuordnungType createEinfacheZuordnungType() { + return new EinfacheZuordnungType(); + } + + /** + * Create an instance of {@link PersonenZuordnungType } + * + */ + public PersonenZuordnungType createPersonenZuordnungType() { + return new PersonenZuordnungType(); + } + + /** + * Create an instance of {@link BetreuerZuordnungType } + * + */ + public BetreuerZuordnungType createBetreuerZuordnungType() { + return new BetreuerZuordnungType(); + } + + /** + * Create an instance of {@link AntragsZuordnungType } + * + */ + public AntragsZuordnungType createAntragsZuordnungType() { + return new AntragsZuordnungType(); + } + + /** + * Create an instance of {@link GeschaeftsfallZuordnungType } + * + */ + public GeschaeftsfallZuordnungType createGeschaeftsfallZuordnungType() { + return new GeschaeftsfallZuordnungType(); + } + + /** + * Create an instance of {@link ProvisionZuordnungType } + * + */ + public ProvisionZuordnungType createProvisionZuordnungType() { + return new ProvisionZuordnungType(); + } + + /** + * Create an instance of {@link MahnverfahrenZuordnungType } + * + */ + public MahnverfahrenZuordnungType createMahnverfahrenZuordnungType() { + return new MahnverfahrenZuordnungType(); + } + + /** + * Create an instance of {@link ZeitraumType } + * + */ + public ZeitraumType createZeitraumType() { + return new ZeitraumType(); + } + + /** + * Create an instance of {@link PolizzenObjektSpezifikationType } + * + */ + public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { + return new PolizzenObjektSpezifikationType(); + } + + /** + * Create an instance of {@link SchadenObjektSpezifikationType } + * + */ + public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { + return new SchadenObjektSpezifikationType(); + } + + /** + * Create an instance of {@link AttributMsgType } + * + */ + public AttributMsgType createAttributMsgType() { + return new AttributMsgType(); + } + + /** + * Create an instance of {@link AttributMetadatenStringType } + * + */ + public AttributMetadatenStringType createAttributMetadatenStringType() { + return new AttributMetadatenStringType(); + } + + /** + * Create an instance of {@link AttributMetadatenIntType } + * + */ + public AttributMetadatenIntType createAttributMetadatenIntType() { + return new AttributMetadatenIntType(); + } + + /** + * Create an instance of {@link AttributMetadatenDezimalType } + * + */ + public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { + return new AttributMetadatenDezimalType(); + } + + /** + * Create an instance of {@link AttributMetadatenDatumType } + * + */ + public AttributMetadatenDatumType createAttributMetadatenDatumType() { + return new AttributMetadatenDatumType(); + } + + /** + * Create an instance of {@link AttributMetadatenEnumType } + * + */ + public AttributMetadatenEnumType createAttributMetadatenEnumType() { + return new AttributMetadatenEnumType(); + } + + /** + * Create an instance of {@link EintragSchluessellisteType } + * + */ + public EintragSchluessellisteType createEintragSchluessellisteType() { + return new EintragSchluessellisteType(); + } + + /** + * Create an instance of {@link AttributStringType } + * + */ + public AttributStringType createAttributStringType() { + return new AttributStringType(); + } + + /** + * Create an instance of {@link AttributIntType } + * + */ + public AttributIntType createAttributIntType() { + return new AttributIntType(); + } + + /** + * Create an instance of {@link AttributDezimalType } + * + */ + public AttributDezimalType createAttributDezimalType() { + return new AttributDezimalType(); + } + + /** + * Create an instance of {@link AttributDoubleType } + * + */ + public AttributDoubleType createAttributDoubleType() { + return new AttributDoubleType(); + } + + /** + * Create an instance of {@link AttributDatumType } + * + */ + public AttributDatumType createAttributDatumType() { + return new AttributDatumType(); + } + + /** + * Create an instance of {@link AttributEnumType } + * + */ + public AttributEnumType createAttributEnumType() { + return new AttributEnumType(); + } + + /** + * Create an instance of {@link AttributMultiEnumType } + * + */ + public AttributMultiEnumType createAttributMultiEnumType() { + return new AttributMultiEnumType(); + } + + /** + * Create an instance of {@link AbtretungType } + * + */ + public AbtretungType createAbtretungType() { + return new AbtretungType(); + } + + /** + * Create an instance of {@link VerpfaendungType } + * + */ + public VerpfaendungType createVerpfaendungType() { + return new VerpfaendungType(); + } + + /** + * Create an instance of {@link PfandglaeubigerType } + * + */ + public PfandglaeubigerType createPfandglaeubigerType() { + return new PfandglaeubigerType(); + } + + /** + * Create an instance of {@link VinkulierungPersonenType } + * + */ + public VinkulierungPersonenType createVinkulierungPersonenType() { + return new VinkulierungPersonenType(); + } + + /** + * Create an instance of {@link GlaeubigerSicherstellungType } + * + */ + public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() { + return new GlaeubigerSicherstellungType(); + } + + /** + * Create an instance of {@link EinwVerarbGesDatenType } + * + */ + public EinwVerarbGesDatenType createEinwVerarbGesDatenType() { + return new EinwVerarbGesDatenType(); + } + + /** + * Create an instance of {@link EinwGesDatenVNType } + * + */ + public EinwGesDatenVNType createEinwGesDatenVNType() { + return new EinwGesDatenVNType(); + } + + /** + * Create an instance of {@link EinwSprachaufzType } + * + */ + public EinwSprachaufzType createEinwSprachaufzType() { + return new EinwSprachaufzType(); + } + + /** + * Create an instance of {@link FATCAType } + * + */ + public FATCAType createFATCAType() { + return new FATCAType(); + } + + /** + * Create an instance of {@link FATCANatPersonType } + * + */ + public FATCANatPersonType createFATCANatPersonType() { + return new FATCANatPersonType(); + } + + /** + * Create an instance of {@link FATCASonstPersonType } + * + */ + public FATCASonstPersonType createFATCASonstPersonType() { + return new FATCASonstPersonType(); + } + + /** + * Create an instance of {@link PEPType } + * + */ + public PEPType createPEPType() { + return new PEPType(); + } + + /** + * Create an instance of {@link TreuhaenderfrageType } + * + */ + public TreuhaenderfrageType createTreuhaenderfrageType() { + return new TreuhaenderfrageType(); + } + + /** + * Create an instance of {@link ElementFondsauswahlType } + * + */ + public ElementFondsauswahlType createElementFondsauswahlType() { + return new ElementFondsauswahlType(); + } + + /** + * Create an instance of {@link at.vvo.omds.types.omds3Types.r1_11_0.common.BasisProduktbausteinType.Konvertierung } + * + */ + public at.vvo.omds.types.omds3Types.r1_11_0.common.BasisProduktbausteinType.Konvertierung createBasisProduktbausteinTypeKonvertierung() { + return new at.vvo.omds.types.omds3Types.r1_11_0.common.BasisProduktbausteinType.Konvertierung(); + } + + /** + * Create an instance of {@link GMSGType.SteuerlichAnsaessig } + * + */ + public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() { + return new GMSGType.SteuerlichAnsaessig(); + } + + /** + * Create an instance of {@link SchadenZuordnungType.Person } + * + */ + public SchadenZuordnungType.Person createSchadenZuordnungTypePerson() { + return new SchadenZuordnungType.Person(); + } + + /** + * Create an instance of {@link VertragsZuordnungType.Vertragsperson } + * + */ + public VertragsZuordnungType.Vertragsperson createVertragsZuordnungTypeVertragsperson() { + return new VertragsZuordnungType.Vertragsperson(); + } + + /** + * Create an instance of {@link DokumentenReferenzPostserviceType.Kontrollwert } + * + */ + public DokumentenReferenzPostserviceType.Kontrollwert createDokumentenReferenzPostserviceTypeKontrollwert() { + return new DokumentenReferenzPostserviceType.Kontrollwert(); + } + + /** + * Create an instance of {@link FahrzeugType.KmStand } + * + */ + public FahrzeugType.KmStand createFahrzeugTypeKmStand() { + return new FahrzeugType.KmStand(); + } + + /** + * Create an instance of {@link ZahlwegType.Kundenkonto } + * + */ + public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { + return new ZahlwegType.Kundenkonto(); + } + + /** + * Create an instance of {@link ProzessDokumentType.Autorisierungen } + * + */ + public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() { + return new ProzessDokumentType.Autorisierungen(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") + public JAXBElement createServiceFault(ServiceFault value) { + return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") + public JAXBElement createOrdnungsbegriffZuordFremd(String value) { + return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") + public JAXBElement createObjektId(ObjektIdType value) { + return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); + } + + /** + * 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:omds3CommonServiceTypes-1-1-0", name = "Person") + public JAXBElement createPerson(PersonType value) { + return new JAXBElement(_Person_QNAME, PersonType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") + public JAXBElement createAdresse(AdresseType value) { + return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektIdType.java new file mode 100644 index 00000000..ccfecc8d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektIdType.java @@ -0,0 +1,129 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type für Objektreferenzen + * + *

Java-Klasse für ObjektId_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ObjektId_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Id" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="255"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ObjektId_Type", propOrder = { + "id", + "gueltigAb", + "ordnungsbegriffZuordFremd" +}) +public class ObjektIdType { + + @XmlElement(name = "Id") + protected String id; + @XmlElement(name = "GueltigAb") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar gueltigAb; + @XmlElement(name = "OrdnungsbegriffZuordFremd") + protected String ordnungsbegriffZuordFremd; + + /** + * 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 gueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigAb() { + return gueltigAb; + } + + /** + * Legt den Wert der gueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigAb(XMLGregorianCalendar value) { + this.gueltigAb = value; + } + + /** + * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrdnungsbegriffZuordFremd() { + return ordnungsbegriffZuordFremd; + } + + /** + * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrdnungsbegriffZuordFremd(String value) { + this.ordnungsbegriffZuordFremd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektSpezifikationType.java new file mode 100644 index 00000000..a19c45bc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ObjektSpezifikationType.java @@ -0,0 +1,39 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SchadenmelderVermittlerType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Eine abstrakte Spezifikation eines Objekts + * + *

Java-Klasse für ObjektSpezifikation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ObjektSpezifikation_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ObjektSpezifikation_Type") +@XmlSeeAlso({ + PolizzenObjektSpezifikationType.class, + SchadenObjektSpezifikationType.class, + SchadenmelderVermittlerType.class +}) +public abstract class ObjektSpezifikationType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffeneSchaedenType.java new file mode 100644 index 00000000..3f3b9367 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffeneSchaedenType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type Offene Schäden + * + *

Java-Klasse für OffeneSchaeden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OffeneSchaeden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
+ *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
+ *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OffeneSchaeden_Type", propOrder = { + "offenerSchaden1", + "offenerSchaden2", + "offenerSchaden3" +}) +public class OffeneSchaedenType { + + @XmlElement(name = "OffenerSchaden1", required = true) + protected OffenerSchadenType offenerSchaden1; + @XmlElement(name = "OffenerSchaden2") + protected OffenerSchadenType offenerSchaden2; + @XmlElement(name = "OffenerSchaden3") + protected OffenerSchadenType offenerSchaden3; + + /** + * Ruft den Wert der offenerSchaden1-Eigenschaft ab. + * + * @return + * possible object is + * {@link OffenerSchadenType } + * + */ + public OffenerSchadenType getOffenerSchaden1() { + return offenerSchaden1; + } + + /** + * Legt den Wert der offenerSchaden1-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OffenerSchadenType } + * + */ + public void setOffenerSchaden1(OffenerSchadenType value) { + this.offenerSchaden1 = value; + } + + /** + * Ruft den Wert der offenerSchaden2-Eigenschaft ab. + * + * @return + * possible object is + * {@link OffenerSchadenType } + * + */ + public OffenerSchadenType getOffenerSchaden2() { + return offenerSchaden2; + } + + /** + * Legt den Wert der offenerSchaden2-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OffenerSchadenType } + * + */ + public void setOffenerSchaden2(OffenerSchadenType value) { + this.offenerSchaden2 = value; + } + + /** + * Ruft den Wert der offenerSchaden3-Eigenschaft ab. + * + * @return + * possible object is + * {@link OffenerSchadenType } + * + */ + public OffenerSchadenType getOffenerSchaden3() { + return offenerSchaden3; + } + + /** + * Legt den Wert der offenerSchaden3-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OffenerSchadenType } + * + */ + public void setOffenerSchaden3(OffenerSchadenType value) { + this.offenerSchaden3 = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffenerSchadenType.java new file mode 100644 index 00000000..e36fc97b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/OffenerSchadenType.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigInteger; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type einzelner offener Schaden + * + *

Java-Klasse für OffenerSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OffenerSchaden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OffenerSchaden_Type", propOrder = { + "monat", + "jahr" +}) +public class OffenerSchadenType { + + @XmlElement(name = "Monat", required = true) + protected BigInteger monat; + @XmlElement(name = "Jahr", required = true) + protected BigInteger jahr; + + /** + * Ruft den Wert der monat-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMonat() { + return monat; + } + + /** + * Legt den Wert der monat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMonat(BigInteger value) { + this.monat = value; + } + + /** + * Ruft den Wert der jahr-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getJahr() { + return jahr; + } + + /** + * Legt den Wert der jahr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setJahr(BigInteger value) { + this.jahr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PEPType.java new file mode 100644 index 00000000..7962a1b7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PEPType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Beschreibung einer PEP + * + *

Java-Klasse für PEP_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PEP_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PEP_Type", propOrder = { + "pep", + "beschreibung" +}) +public class PEPType { + + @XmlElement(name = "PEP") + protected boolean pep; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + + /** + * Ruft den Wert der pep-Eigenschaft ab. + * + */ + public boolean isPEP() { + return pep; + } + + /** + * Legt den Wert der pep-Eigenschaft fest. + * + */ + public void setPEP(boolean value) { + this.pep = value; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PartnerRoleType.java new file mode 100644 index 00000000..326272da --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PartnerRoleType.java @@ -0,0 +1,48 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PartnerRoleType. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PartnerRoleType">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <length value="2"/>
+ *     <enumeration value="VN"/>
+ *     <enumeration value="VP"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PartnerRoleType") +@XmlEnum +public enum PartnerRoleType { + + + /** + * Versicherungsnehmer + * + */ + VN, + + /** + * Versicherte Person + * + */ + VP; + + public String value() { + return name(); + } + + public static PartnerRoleType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersBankverbindungType.java new file mode 100644 index 00000000..fa7ac9d6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersBankverbindungType.java @@ -0,0 +1,64 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist + * + *

Java-Klasse für PersBankverbindung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PersBankverbindung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
+ *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersBankverbindung_Type") +public class PersBankverbindungType + extends BankverbindungType +{ + + @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") + @XmlSchemaType(name = "unsignedShort") + protected Integer personRefLfnr; + + /** + * Ruft den Wert der personRefLfnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPersonRefLfnr() { + return personRefLfnr; + } + + /** + * Legt den Wert der personRefLfnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPersonRefLfnr(Integer value) { + this.personRefLfnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonNamentlichesBezugsrechtType.java new file mode 100644 index 00000000..25ef9d5e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonNamentlichesBezugsrechtType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PersonNamentlichesBezugsrecht_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
+ *         <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = { + "prozentsatz", + "zugunsten" +}) +public class PersonNamentlichesBezugsrechtType { + + @XmlElement(name = "Prozentsatz") + protected Double prozentsatz; + @XmlElement(name = "Zugunsten") + @XmlSchemaType(name = "unsignedShort") + protected int zugunsten; + + /** + * Ruft den Wert der prozentsatz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getProzentsatz() { + return prozentsatz; + } + + /** + * Legt den Wert der prozentsatz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setProzentsatz(Double value) { + this.prozentsatz = value; + } + + /** + * Ruft den Wert der zugunsten-Eigenschaft ab. + * + */ + public int getZugunsten() { + return zugunsten; + } + + /** + * Legt den Wert der zugunsten-Eigenschaft fest. + * + */ + public void setZugunsten(int value) { + this.zugunsten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonType.java new file mode 100644 index 00000000..f8da6e96 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonType.java @@ -0,0 +1,421 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.ELAnzahlType; +import at.vvo.omds.types.omds2Types.v2_16.ELEinstufungType; +import at.vvo.omds.types.omds2Types.v2_16.ELEntscheidungsfrageType; +import at.vvo.omds.types.omds2Types.v2_16.ELIdentifizierungType; +import at.vvo.omds.types.omds2Types.v2_16.ELKommunikationType; +import at.vvo.omds.types.omds2Types.v2_16.ELLegitimationType; +import at.vvo.omds.types.omds2Types.v2_16.ELTextType; +import at.vvo.omds.types.omds2Types.v2_16.NATUERLICHEPERSONType; +import at.vvo.omds.types.omds2Types.v2_16.PersArtCdType; +import at.vvo.omds.types.omds2Types.v2_16.SONSTIGEPERSONType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Der Typ für eine Person mit ObjektId + * + *

Java-Klasse für Person_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Person_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
+ *         <choice>
+ *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
+ *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
+ *         </choice>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Person_Type", propOrder = { + "objektId", + "natuerlicheperson", + "sonstigeperson", + "adresse", + "elKommunikation", + "elLegitimation", + "elAnzahl", + "elEinstufung", + "elEntscheidungsfrage", + "elIdentifizierung", + "elText" +}) +public class PersonType { + + @XmlElement(name = "ObjektId") + protected ObjektIdType objektId; + @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") + protected NATUERLICHEPERSONType natuerlicheperson; + @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") + protected SONSTIGEPERSONType sonstigeperson; + @XmlElement(name = "Adresse") + protected AdresseType adresse; + @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") + protected List elKommunikation; + @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") + protected List elLegitimation; + @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") + protected List elAnzahl; + @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") + protected List elEinstufung; + @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") + protected List elEntscheidungsfrage; + @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") + protected List elIdentifizierung; + @XmlElement(name = "EL-Text", namespace = "urn:omds20") + protected List elText; + @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected PersArtCdType persArtCd; + + /** + * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) + * + * @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 natuerlicheperson-Eigenschaft ab. + * + * @return + * possible object is + * {@link NATUERLICHEPERSONType } + * + */ + public NATUERLICHEPERSONType getNATUERLICHEPERSON() { + return natuerlicheperson; + } + + /** + * Legt den Wert der natuerlicheperson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link NATUERLICHEPERSONType } + * + */ + public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { + this.natuerlicheperson = value; + } + + /** + * Ruft den Wert der sonstigeperson-Eigenschaft ab. + * + * @return + * possible object is + * {@link SONSTIGEPERSONType } + * + */ + public SONSTIGEPERSONType getSONSTIGEPERSON() { + return sonstigeperson; + } + + /** + * Legt den Wert der sonstigeperson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SONSTIGEPERSONType } + * + */ + public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { + this.sonstigeperson = value; + } + + /** + * Die Hauptadresse des Partners mit ObjektId + * + * @return + * possible object is + * {@link AdresseType } + * + */ + public AdresseType getAdresse() { + return adresse; + } + + /** + * Legt den Wert der adresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AdresseType } + * + */ + public void setAdresse(AdresseType value) { + this.adresse = value; + } + + /** + * Gets the value of the elKommunikation property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elKommunikation property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELKommunikation().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELKommunikationType } + * + * + */ + public List getELKommunikation() { + if (elKommunikation == null) { + elKommunikation = new ArrayList(); + } + return this.elKommunikation; + } + + /** + * Gets the value of the elLegitimation property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elLegitimation property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELLegitimation().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELLegitimationType } + * + * + */ + public List getELLegitimation() { + if (elLegitimation == null) { + elLegitimation = new ArrayList(); + } + return this.elLegitimation; + } + + /** + * Gets the value of the elAnzahl property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elAnzahl property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELAnzahl().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELAnzahlType } + * + * + */ + public List getELAnzahl() { + if (elAnzahl == null) { + elAnzahl = new ArrayList(); + } + return this.elAnzahl; + } + + /** + * Gets the value of the elEinstufung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elEinstufung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELEinstufung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELEinstufungType } + * + * + */ + public List getELEinstufung() { + if (elEinstufung == null) { + elEinstufung = new ArrayList(); + } + return this.elEinstufung; + } + + /** + * Gets the value of the elEntscheidungsfrage property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elEntscheidungsfrage property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELEntscheidungsfrage().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELEntscheidungsfrageType } + * + * + */ + public List getELEntscheidungsfrage() { + if (elEntscheidungsfrage == null) { + elEntscheidungsfrage = new ArrayList(); + } + return this.elEntscheidungsfrage; + } + + /** + * Gets the value of the elIdentifizierung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elIdentifizierung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELIdentifizierung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELIdentifizierungType } + * + * + */ + public List getELIdentifizierung() { + if (elIdentifizierung == null) { + elIdentifizierung = new ArrayList(); + } + return this.elIdentifizierung; + } + + /** + * Gets the value of the elText property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elText property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELText().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELTextType } + * + * + */ + public List getELText() { + if (elText == null) { + elText = new ArrayList(); + } + return this.elText; + } + + /** + * Ruft den Wert der persArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PersArtCdType } + * + */ + public PersArtCdType getPersArtCd() { + return persArtCd; + } + + /** + * Legt den Wert der persArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PersArtCdType } + * + */ + public void setPersArtCd(PersArtCdType value) { + this.persArtCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonenZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonenZuordnungType.java new file mode 100644 index 00000000..92ccca6b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PersonenZuordnungType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zu einer Person + * + *

Java-Klasse für PersonenZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PersonenZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="RolleText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersonenZuordnung_Type", propOrder = { + "personId", + "rolleText" +}) +public class PersonenZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "PersonId", required = true) + protected ObjektIdType personId; + @XmlElement(name = "RolleText") + protected String rolleText; + + /** + * Ruft den Wert der personId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getPersonId() { + return personId; + } + + /** + * Legt den Wert der personId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setPersonId(ObjektIdType value) { + this.personId = value; + } + + /** + * Ruft den Wert der rolleText-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRolleText() { + return rolleText; + } + + /** + * Legt den Wert der rolleText-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRolleText(String value) { + this.rolleText = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PfandglaeubigerType.java new file mode 100644 index 00000000..81fb1835 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PfandglaeubigerType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Eigenschaften Pfandgläubiger + * + *

Java-Klasse für Pfandglaeubiger_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Pfandglaeubiger_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Pfandglaeubiger_Type", propOrder = { + "anteil", + "glaeubiger" +}) +public class PfandglaeubigerType { + + @XmlElement(name = "Anteil") + protected double anteil; + @XmlElement(name = "Glaeubiger", required = true) + protected GlaeubigerSicherstellungType glaeubiger; + + /** + * Ruft den Wert der anteil-Eigenschaft ab. + * + */ + public double getAnteil() { + return anteil; + } + + /** + * Legt den Wert der anteil-Eigenschaft fest. + * + */ + public void setAnteil(double value) { + this.anteil = value; + } + + /** + * Ruft den Wert der glaeubiger-Eigenschaft ab. + * + * @return + * possible object is + * {@link GlaeubigerSicherstellungType } + * + */ + public GlaeubigerSicherstellungType getGlaeubiger() { + return glaeubiger; + } + + /** + * Legt den Wert der glaeubiger-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GlaeubigerSicherstellungType } + * + */ + public void setGlaeubiger(GlaeubigerSicherstellungType value) { + this.glaeubiger = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenObjektSpezifikationType.java new file mode 100644 index 00000000..0fd1fa69 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenObjektSpezifikationType.java @@ -0,0 +1,130 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.PolicyPartnerRole; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Die Spezifikation eines Polizzenobjektes + * + *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PolizzenObjektSpezifikation_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
+ *       <sequence>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
+ *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { + "polizzennr", + "vtgProdCd", + "rollePartner" +}) +public class PolizzenObjektSpezifikationType + extends ObjektSpezifikationType +{ + + @XmlElement(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlElement(name = "VtgProdCd") + protected String vtgProdCd; + @XmlElement(name = "RollePartner") + protected List rollePartner; + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vtgProdCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgProdCd() { + return vtgProdCd; + } + + /** + * Legt den Wert der vtgProdCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgProdCd(String value) { + this.vtgProdCd = value; + } + + /** + * Gets the value of the rollePartner property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the rollePartner property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRollePartner().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PolicyPartnerRole } + * + * + */ + public List getRollePartner() { + if (rollePartner == null) { + rollePartner = new ArrayList(); + } + return this.rollePartner; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenversandType.java new file mode 100644 index 00000000..08837b8b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PolizzenversandType.java @@ -0,0 +1,75 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für PolizzenversandType. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="PolizzenversandType">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="MAK2"/>
+ *     <enumeration value="VN1"/>
+ *     <enumeration value="MAKVN"/>
+ *     <enumeration value="MAK1"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "PolizzenversandType") +@XmlEnum +public enum PolizzenversandType { + + + /** + * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie + * + */ + @XmlEnumValue("MAK2") + MAK_2("MAK2"), + + /** + * 1fach Versicherungsnehmer: Kunde erhält Original + * + */ + @XmlEnumValue("VN1") + VN_1("VN1"), + + /** + * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie + * + */ + MAKVN("MAKVN"), + + /** + * 1fach Makler: Makler erhält Original + * + */ + @XmlEnumValue("MAK1") + MAK_1("MAK1"); + private final String value; + + PolizzenversandType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static PolizzenversandType fromValue(String v) { + for (PolizzenversandType c: PolizzenversandType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PraemieType.java new file mode 100644 index 00000000..930629a2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/PraemieType.java @@ -0,0 +1,355 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.WaehrungsCdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Darstellung einer Praemie + * + *

Java-Klasse für Praemie_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Praemie_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
+ *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
+ *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
+ *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
+ *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
+ *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
+ *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
+ *         <element name="Referenz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="JahrespraemieBto" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Praemie_Type", propOrder = { + "zahlrhythmus", + "zahlweg", + "praemieNto", + "praemieBto", + "versicherungssteuer", + "waehrungsCd", + "unterjaehrigkeitszuschlag", + "abschlag", + "referenz", + "jahrespraemieNto", + "jahrespraemieBto" +}) +public class PraemieType { + + @XmlElement(name = "Zahlrhythmus", required = true) + protected String zahlrhythmus; + @XmlElement(name = "Zahlweg") + protected String zahlweg; + @XmlElement(name = "PraemieNto", required = true) + protected BigDecimal praemieNto; + @XmlElement(name = "PraemieBto", required = true) + protected BigDecimal praemieBto; + @XmlElement(name = "Versicherungssteuer") + protected List versicherungssteuer; + @XmlElement(name = "WaehrungsCd") + @XmlSchemaType(name = "string") + protected WaehrungsCdType waehrungsCd; + @XmlElement(name = "Unterjaehrigkeitszuschlag") + protected Double unterjaehrigkeitszuschlag; + @XmlElement(name = "Abschlag") + protected Double abschlag; + @XmlElement(name = "Referenz") + protected String referenz; + @XmlElement(name = "JahrespraemieNto") + protected BigDecimal jahrespraemieNto; + @XmlElement(name = "JahrespraemieBto") + protected BigDecimal jahrespraemieBto; + + /** + * Ruft den Wert der zahlrhythmus-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlrhythmus() { + return zahlrhythmus; + } + + /** + * Legt den Wert der zahlrhythmus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlrhythmus(String value) { + this.zahlrhythmus = value; + } + + /** + * Ruft den Wert der zahlweg-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlweg() { + return zahlweg; + } + + /** + * Legt den Wert der zahlweg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlweg(String value) { + this.zahlweg = value; + } + + /** + * Ruft den Wert der praemieNto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieNto() { + return praemieNto; + } + + /** + * Legt den Wert der praemieNto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieNto(BigDecimal value) { + this.praemieNto = value; + } + + /** + * Ruft den Wert der praemieBto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPraemieBto() { + return praemieBto; + } + + /** + * Legt den Wert der praemieBto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPraemieBto(BigDecimal value) { + this.praemieBto = value; + } + + /** + * Gets the value of the versicherungssteuer property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versicherungssteuer property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersicherungssteuer().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VersicherungssteuerType } + * + * + */ + public List getVersicherungssteuer() { + if (versicherungssteuer == null) { + versicherungssteuer = new ArrayList(); + } + return this.versicherungssteuer; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getUnterjaehrigkeitszuschlag() { + return unterjaehrigkeitszuschlag; + } + + /** + * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setUnterjaehrigkeitszuschlag(Double value) { + this.unterjaehrigkeitszuschlag = value; + } + + /** + * Ruft den Wert der abschlag-Eigenschaft ab. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getAbschlag() { + return abschlag; + } + + /** + * Legt den Wert der abschlag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setAbschlag(Double value) { + this.abschlag = value; + } + + /** + * Ruft den Wert der referenz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReferenz() { + return referenz; + } + + /** + * Legt den Wert der referenz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReferenz(String value) { + this.referenz = value; + } + + /** + * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getJahrespraemieNto() { + return jahrespraemieNto; + } + + /** + * Legt den Wert der jahrespraemieNto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setJahrespraemieNto(BigDecimal value) { + this.jahrespraemieNto = value; + } + + /** + * Ruft den Wert der jahrespraemieBto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getJahrespraemieBto() { + return jahrespraemieBto; + } + + /** + * Legt den Wert der jahrespraemieBto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setJahrespraemieBto(BigDecimal value) { + this.jahrespraemieBto = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktGenerischType.java new file mode 100644 index 00000000..1644fe3e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktGenerischType.java @@ -0,0 +1,155 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.ProduktSachPrivatType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Produkt, 2. Generation + * + *

Java-Klasse für ProduktGenerisch_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktGenerisch_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktGenerisch_Type", propOrder = { + "eingeschlossen", + "einschlussAenderbar", + "attributMetadaten", + "beschreibungTxt" +}) +@XmlSeeAlso({ + ProduktSachPrivatType.class, + ProduktMitVpType.class +}) +public abstract class ProduktGenerischType + extends ProduktType +{ + + @XmlElement(name = "Eingeschlossen") + protected boolean eingeschlossen; + @XmlElement(name = "EinschlussAenderbar") + protected Boolean einschlussAenderbar; + @XmlElement(name = "AttributMetadaten") + protected List attributMetadaten; + @XmlElement(name = "BeschreibungTxt") + protected String beschreibungTxt; + + /** + * 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktMitVpType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktMitVpType.java new file mode 100644 index 00000000..caeda236 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktMitVpType.java @@ -0,0 +1,104 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.ProduktKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.ProduktLebenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.ProduktUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Produkt vom Typ "Versicherte Person" für Personensparten + * + *

Java-Klasse für ProduktMitVp_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktMitVp_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktMitVp_Type", propOrder = { + "bezugsberechtigungen", + "versPersonenRefLfnr" +}) +@XmlSeeAlso({ + ProduktUnfallType.class, + ProduktKrankenType.class, + ProduktLebenType.class +}) +public abstract class ProduktMitVpType + extends ProduktGenerischType +{ + + @XmlElement(name = "Bezugsberechtigungen") + protected List bezugsberechtigungen; + @XmlElement(name = "VersPersonenRefLfnr") + @XmlSchemaType(name = "unsignedShort") + protected int versPersonenRefLfnr; + + /** + * Gets the value of the bezugsberechtigungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bezugsberechtigungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBezugsberechtigungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BezugsberechtigungType } + * + * + */ + public List getBezugsberechtigungen() { + if (bezugsberechtigungen == null) { + bezugsberechtigungen = new ArrayList(); + } + return this.bezugsberechtigungen; + } + + /** + * Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab. + * + */ + public int getVersPersonenRefLfnr() { + return versPersonenRefLfnr; + } + + /** + * Legt den Wert der versPersonenRefLfnr-Eigenschaft fest. + * + */ + public void setVersPersonenRefLfnr(int value) { + this.versPersonenRefLfnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktType.java new file mode 100644 index 00000000..0be82eca --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktType.java @@ -0,0 +1,254 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.ProduktKfzType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.ZusatzproduktKfzType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Produkt + * + *

Java-Klasse für Produkt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Produkt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
+ *       <sequence>
+ *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
+ *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
+ *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
+ *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Produkt_Type", propOrder = { + "vtgBeg", + "produktgeneration", + "zahlweg", + "zahlrhythmus", + "hauptfaelligkeit", + "refSicherstellungLfnr", + "zusaetzlicheProduktdaten" +}) +@XmlSeeAlso({ + ProduktKfzType.class, + ZusatzproduktKfzType.class, + ProduktGenerischType.class +}) +public abstract class ProduktType + extends ProduktbausteinType +{ + + @XmlElement(name = "VtgBeg") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar vtgBeg; + @XmlElement(name = "Produktgeneration") + protected String produktgeneration; + @XmlElement(name = "Zahlweg") + protected String zahlweg; + @XmlElement(name = "Zahlrhythmus") + protected String zahlrhythmus; + @XmlElement(name = "Hauptfaelligkeit") + @XmlSchemaType(name = "gMonthDay") + protected XMLGregorianCalendar hauptfaelligkeit; + @XmlElement(name = "RefSicherstellungLfnr") + @XmlSchemaType(name = "unsignedShort") + protected Integer refSicherstellungLfnr; + @XmlElement(name = "ZusaetzlicheProduktdaten") + protected List zusaetzlicheProduktdaten; + + /** + * 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 produktgeneration-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProduktgeneration() { + return produktgeneration; + } + + /** + * Legt den Wert der produktgeneration-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProduktgeneration(String value) { + this.produktgeneration = value; + } + + /** + * Ruft den Wert der zahlweg-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlweg() { + return zahlweg; + } + + /** + * Legt den Wert der zahlweg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlweg(String value) { + this.zahlweg = value; + } + + /** + * Ruft den Wert der zahlrhythmus-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlrhythmus() { + return zahlrhythmus; + } + + /** + * Legt den Wert der zahlrhythmus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlrhythmus(String value) { + this.zahlrhythmus = value; + } + + /** + * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getHauptfaelligkeit() { + return hauptfaelligkeit; + } + + /** + * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setHauptfaelligkeit(XMLGregorianCalendar value) { + this.hauptfaelligkeit = 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 zusaetzlicheProduktdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheProduktdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheProduktdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheProduktdatenType } + * + * + */ + public List getZusaetzlicheProduktdaten() { + if (zusaetzlicheProduktdaten == null) { + zusaetzlicheProduktdaten = new ArrayList(); + } + return this.zusaetzlicheProduktdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinGenerischType.java new file mode 100644 index 00000000..9387dc2c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinGenerischType.java @@ -0,0 +1,149 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation + * + *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktbausteinGenerisch_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { + "eingeschlossen", + "einschlussAenderbar", + "attributMetadaten", + "beschreibungTxt" +}) +public abstract class ProduktbausteinGenerischType + extends ProduktbausteinType +{ + + @XmlElement(name = "Eingeschlossen") + protected boolean eingeschlossen; + @XmlElement(name = "EinschlussAenderbar") + protected Boolean einschlussAenderbar; + @XmlElement(name = "AttributMetadaten") + protected List attributMetadaten; + @XmlElement(name = "BeschreibungTxt") + protected String beschreibungTxt; + + /** + * 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinType.java new file mode 100644 index 00000000..44d18b71 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProduktbausteinType.java @@ -0,0 +1,141 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für alle Produktbausteine im Antragsprozess + * + *

Java-Klasse für Produktbaustein_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Produktbaustein_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
+ *       <sequence>
+ *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Produktbaustein_Type", propOrder = { + "vtgEnde", + "praemie", + "jahrespraemieNto" +}) +@XmlSeeAlso({ + ProduktbausteinGenerischType.class, + VerkaufsproduktType.class, + ProduktType.class, + ElementarproduktType.class, + ZusatzproduktType.class +}) +public abstract class ProduktbausteinType + extends BasisProduktbausteinType +{ + + @XmlElement(name = "VtgEnde") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar vtgEnde; + @XmlElement(name = "Praemie") + protected List praemie; + @XmlElement(name = "JahrespraemieNto") + protected BigDecimal jahrespraemieNto; + + /** + * Ruft den Wert der vtgEnde-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVtgEnde() { + return vtgEnde; + } + + /** + * Legt den Wert der vtgEnde-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVtgEnde(XMLGregorianCalendar value) { + this.vtgEnde = value; + } + + /** + * Gets the value of the praemie property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the praemie property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPraemie().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PraemieType } + * + * + */ + public List getPraemie() { + if (praemie == null) { + praemie = new ArrayList(); + } + return this.praemie; + } + + /** + * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getJahrespraemieNto() { + return jahrespraemieNto; + } + + /** + * Legt den Wert der jahrespraemieNto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setJahrespraemieNto(BigDecimal value) { + this.jahrespraemieNto = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProvisionZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProvisionZuordnungType.java new file mode 100644 index 00000000..ed355e75 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProvisionZuordnungType.java @@ -0,0 +1,97 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zu Provisionsnote + * + *

Java-Klasse für ProvisionZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProvisionZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *         <element name="BuchDat" type="{urn:omds20}Datum"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProvisionZuordnung_Type", propOrder = { + "vermnr", + "buchDat" +}) +public class ProvisionZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + @XmlElement(name = "BuchDat", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar buchDat; + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Ruft den Wert der buchDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBuchDat() { + return buchDat; + } + + /** + * Legt den Wert der buchDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBuchDat(XMLGregorianCalendar value) { + this.buchDat = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokHandoutType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokHandoutType.java new file mode 100644 index 00000000..db202d12 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokHandoutType.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bereitstellung eines Dokuments durch die VU für den Kunden, nicht zu unterschreiben + * + *

Java-Klasse für ProzessDokHandout_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokHandout_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
+ *       <sequence>
+ *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
+ *         <element name="ArtAusfolgung">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
+ *               <enumeration value="0"/>
+ *               <enumeration value="1"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokHandout_Type", propOrder = { + "dokData", + "artAusfolgung" +}) +public class ProzessDokHandoutType + extends ProzessDokumentBasisType +{ + + @XmlElement(name = "DokData", required = true) + protected DokumentDataType dokData; + @XmlElement(name = "ArtAusfolgung") + protected short artAusfolgung; + + /** + * Ruft den Wert der dokData-Eigenschaft ab. + * + * @return + * possible object is + * {@link DokumentDataType } + * + */ + public DokumentDataType getDokData() { + return dokData; + } + + /** + * Legt den Wert der dokData-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DokumentDataType } + * + */ + public void setDokData(DokumentDataType value) { + this.dokData = value; + } + + /** + * Ruft den Wert der artAusfolgung-Eigenschaft ab. + * + */ + public short getArtAusfolgung() { + return artAusfolgung; + } + + /** + * Legt den Wert der artAusfolgung-Eigenschaft fest. + * + */ + public void setArtAusfolgung(short value) { + this.artAusfolgung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequestType.java new file mode 100644 index 00000000..d4ce8c6b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequestType.java @@ -0,0 +1,60 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Anforderung eines Dokuments durch den Client + * + *

Java-Klasse für ProzessDokRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="DokumentType" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokRequest_Type") +public class ProzessDokRequestType { + + @XmlAttribute(name = "DokumentType", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String dokumentType; + + /** + * Ruft den Wert der dokumentType-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumentType() { + return dokumentType; + } + + /** + * Legt den Wert der dokumentType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumentType(String value) { + this.dokumentType = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequirementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequirementType.java new file mode 100644 index 00000000..70ddc8fa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokRequirementType.java @@ -0,0 +1,187 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Anforderung der VU eines durch den Kunden beizubringenden Dokuments + * + *

Java-Klasse für ProzessDokRequirement_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokRequirement_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
+ *       <sequence>
+ *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="ZulaessigeMimetypes" 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>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokRequirement_Type", propOrder = { + "dokAnforderungsId", + "autorisierungen", + "docUploadRequired", + "zulaessigeMimetypes", + "meldungen" +}) +public class ProzessDokRequirementType + extends ProzessDokumentBasisType +{ + + @XmlElement(name = "DokAnforderungsId", required = true) + protected ObjektIdType dokAnforderungsId; + @XmlElement(name = "Autorisierungen") + protected List autorisierungen; + @XmlElement(name = "DocUploadRequired") + protected boolean docUploadRequired; + @XmlElement(name = "ZulaessigeMimetypes") + protected List zulaessigeMimetypes; + @XmlElement(name = "Meldungen") + protected List meldungen; + + /** + * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getDokAnforderungsId() { + return dokAnforderungsId; + } + + /** + * Legt den Wert der dokAnforderungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setDokAnforderungsId(ObjektIdType value) { + this.dokAnforderungsId = value; + } + + /** + * Gets the value of the autorisierungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the autorisierungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAutorisierungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AutorisierungsAnforderungType } + * + * + */ + public List getAutorisierungen() { + if (autorisierungen == null) { + autorisierungen = new ArrayList(); + } + return this.autorisierungen; + } + + /** + * Ruft den Wert der docUploadRequired-Eigenschaft ab. + * + */ + public boolean isDocUploadRequired() { + return docUploadRequired; + } + + /** + * Legt den Wert der docUploadRequired-Eigenschaft fest. + * + */ + public void setDocUploadRequired(boolean value) { + this.docUploadRequired = value; + } + + /** + * Gets the value of the zulaessigeMimetypes property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zulaessigeMimetypes property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZulaessigeMimetypes().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getZulaessigeMimetypes() { + if (zulaessigeMimetypes == null) { + zulaessigeMimetypes = new ArrayList(); + } + return this.zulaessigeMimetypes; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokToReturnType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokToReturnType.java new file mode 100644 index 00000000..65879a0c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokToReturnType.java @@ -0,0 +1,215 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Bereitstellung eines Dokuments durch die VU zum Unterschreiben bzw. Ausfüllen durch den Kunden + * + *

Java-Klasse für ProzessDokToReturn_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokToReturn_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
+ *       <sequence>
+ *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
+ *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokToReturn_Type", propOrder = { + "dokAnforderungsId", + "autorisierungen", + "docUploadRequired", + "zulaessigeMimetypes", + "dokData", + "meldungen" +}) +public class ProzessDokToReturnType + extends ProzessDokumentBasisType +{ + + @XmlElement(name = "DokAnforderungsId", required = true) + protected ObjektIdType dokAnforderungsId; + @XmlElement(name = "Autorisierungen") + protected List autorisierungen; + @XmlElement(name = "DocUploadRequired") + protected boolean docUploadRequired; + @XmlElement(name = "ZulaessigeMimetypes") + protected List zulaessigeMimetypes; + @XmlElement(name = "DokData", required = true) + protected DokumentDataType dokData; + @XmlElement(name = "Meldungen") + protected List meldungen; + + /** + * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getDokAnforderungsId() { + return dokAnforderungsId; + } + + /** + * Legt den Wert der dokAnforderungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setDokAnforderungsId(ObjektIdType value) { + this.dokAnforderungsId = value; + } + + /** + * Gets the value of the autorisierungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the autorisierungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAutorisierungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AutorisierungsAnforderungType } + * + * + */ + public List getAutorisierungen() { + if (autorisierungen == null) { + autorisierungen = new ArrayList(); + } + return this.autorisierungen; + } + + /** + * Ruft den Wert der docUploadRequired-Eigenschaft ab. + * + */ + public boolean isDocUploadRequired() { + return docUploadRequired; + } + + /** + * Legt den Wert der docUploadRequired-Eigenschaft fest. + * + */ + public void setDocUploadRequired(boolean value) { + this.docUploadRequired = value; + } + + /** + * Gets the value of the zulaessigeMimetypes property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zulaessigeMimetypes property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZulaessigeMimetypes().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getZulaessigeMimetypes() { + if (zulaessigeMimetypes == null) { + zulaessigeMimetypes = new ArrayList(); + } + return this.zulaessigeMimetypes; + } + + /** + * Ruft den Wert der dokData-Eigenschaft ab. + * + * @return + * possible object is + * {@link DokumentDataType } + * + */ + public DokumentDataType getDokData() { + return dokData; + } + + /** + * Legt den Wert der dokData-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DokumentDataType } + * + */ + public void setDokData(DokumentDataType value) { + this.dokData = value; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentBasisType.java new file mode 100644 index 00000000..1578f260 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentBasisType.java @@ -0,0 +1,104 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für Bereitstellung und Anforderung von Dokumenten + * + *

Java-Klasse für ProzessDokumentBasis_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokumentBasis_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Beschreibung" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="200"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokumentBasis_Type", propOrder = { + "dokumenttyp", + "beschreibung" +}) +@XmlSeeAlso({ + ProzessDokRequirementType.class, + ProzessDokToReturnType.class, + ProzessDokHandoutType.class +}) +public abstract class ProzessDokumentBasisType { + + @XmlElement(name = "Dokumenttyp", required = true) + protected String dokumenttyp; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + + /** + * Ruft den Wert der dokumenttyp-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumenttyp() { + return dokumenttyp; + } + + /** + * Legt den Wert der dokumenttyp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumenttyp(String value) { + this.dokumenttyp = value; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentType.java new file mode 100644 index 00000000..958762d2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ProzessDokumentType.java @@ -0,0 +1,242 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. + * + *

Java-Klasse für ProzessDokument_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProzessDokument_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Beschreibung" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="200"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Autorisierungen" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
+ *               </extension>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProzessDokument_Type", propOrder = { + "dokAnforderungsId", + "dokumenttyp", + "beschreibung", + "autorisierungen", + "dokumentHinterlegt", + "dokData" +}) +public class ProzessDokumentType { + + @XmlElement(name = "DokAnforderungsId") + protected ObjektIdType dokAnforderungsId; + @XmlElement(name = "Dokumenttyp", required = true) + protected String dokumenttyp; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + @XmlElement(name = "Autorisierungen") + protected List autorisierungen; + @XmlElement(name = "DokumentHinterlegt") + protected boolean dokumentHinterlegt; + @XmlElement(name = "DokData") + protected DokumentDataType dokData; + + /** + * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getDokAnforderungsId() { + return dokAnforderungsId; + } + + /** + * Legt den Wert der dokAnforderungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setDokAnforderungsId(ObjektIdType value) { + this.dokAnforderungsId = value; + } + + /** + * Ruft den Wert der dokumenttyp-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumenttyp() { + return dokumenttyp; + } + + /** + * Legt den Wert der dokumenttyp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumenttyp(String value) { + this.dokumenttyp = value; + } + + /** + * 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; + } + + /** + * Gets the value of the autorisierungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the autorisierungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAutorisierungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentType.Autorisierungen } + * + * + */ + public List getAutorisierungen() { + if (autorisierungen == null) { + autorisierungen = new ArrayList(); + } + return this.autorisierungen; + } + + /** + * Ruft den Wert der dokumentHinterlegt-Eigenschaft ab. + * + */ + public boolean isDokumentHinterlegt() { + return dokumentHinterlegt; + } + + /** + * Legt den Wert der dokumentHinterlegt-Eigenschaft fest. + * + */ + public void setDokumentHinterlegt(boolean value) { + this.dokumentHinterlegt = value; + } + + /** + * Ruft den Wert der dokData-Eigenschaft ab. + * + * @return + * possible object is + * {@link DokumentDataType } + * + */ + public DokumentDataType getDokData() { + return dokData; + } + + /** + * Legt den Wert der dokData-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DokumentDataType } + * + */ + public void setDokData(DokumentDataType value) { + this.dokData = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
+     *     </extension>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "") + public static class Autorisierungen + extends AutorisierungType + { + + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RaucherType.java new file mode 100644 index 00000000..56ad39c5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RaucherType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben + * + *

Java-Klasse für Raucher_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Raucher_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Raucher_Type") +public abstract class RaucherType + extends AttributType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/Referenz.java new file mode 100644 index 00000000..e27ef19f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/Referenz.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ein Link auf ein Element + * + *

Java-Klasse für Referenz complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Referenz">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Referenz", propOrder = { + "link", + "bezeichnung" +}) +public class Referenz { + + @XmlElement(name = "Link", required = true) + protected Object link; + @XmlElement(name = "Bezeichnung") + protected Object bezeichnung; + + /** + * Ruft den Wert der link-Eigenschaft ab. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getLink() { + return link; + } + + /** + * Legt den Wert der link-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setLink(Object value) { + this.link = value; + } + + /** + * Ruft den Wert der bezeichnung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getBezeichnung() { + return bezeichnung; + } + + /** + * Legt den Wert der bezeichnung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setBezeichnung(Object value) { + this.bezeichnung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ResponseStatusType.java new file mode 100644 index 00000000..6fcfe757 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ResponseStatusType.java @@ -0,0 +1,162 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Statusinformationen im Response eines Serviceaufrufs + * + *

Java-Klasse für ResponseStatus_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ResponseStatus_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
+ *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ResponseStatus_Type", propOrder = { + "korrelationsId", + "ergebnis", + "meldungen", + "referenzen" +}) +public class ResponseStatusType { + + @XmlElement(name = "KorrelationsId", required = true) + protected String korrelationsId; + @XmlElement(name = "Ergebnis", required = true) + @XmlSchemaType(name = "string") + protected StatusType ergebnis; + @XmlElement(name = "Meldungen") + protected List meldungen; + @XmlElement(name = "Referenzen") + protected List referenzen; + + /** + * 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; + } + + /** + * Ruft den Wert der ergebnis-Eigenschaft ab. + * + * @return + * possible object is + * {@link StatusType } + * + */ + public StatusType getErgebnis() { + return ergebnis; + } + + /** + * Legt den Wert der ergebnis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link StatusType } + * + */ + public void setErgebnis(StatusType value) { + this.ergebnis = value; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + + /** + * Gets the value of the referenzen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the referenzen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getReferenzen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Referenz } + * + * + */ + public List getReferenzen() { + if (referenzen == null) { + referenzen = new ArrayList(); + } + return this.referenzen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RisikoNatPersonType.java new file mode 100644 index 00000000..95089054 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/RisikoNatPersonType.java @@ -0,0 +1,501 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Risikoattribute natürlicher Personen + * + *

Java-Klasse für RisikoNatPerson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RisikoNatPerson_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
+ *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
+ *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
+ *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
+ *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RisikoNatPerson_Type", propOrder = { + "gewicht", + "groesse", + "raucher", + "sozialversicherungsanstalt", + "gefahrenklasse", + "beruf", + "medizinischerBeruf", + "freizeitSportRisiken", + "risikozuschlaege", + "gesetzlicheUV", + "personenartKranken", + "berufsgruppe", + "manuelleTaetigkeit", + "behandelnderArzt", + "kontaktRueckfragen", + "zusaetzlicheRisikodaten" +}) +public class RisikoNatPersonType { + + @XmlElement(name = "Gewicht") + protected AttributIntType gewicht; + @XmlElement(name = "Groesse") + protected AttributIntType groesse; + @XmlElement(name = "Raucher") + protected RaucherType raucher; + @XmlElement(name = "Sozialversicherungsanstalt") + protected AttributEnumType sozialversicherungsanstalt; + @XmlElement(name = "Gefahrenklasse") + protected AttributEnumType gefahrenklasse; + @XmlElement(name = "Beruf") + protected AttributStringType beruf; + @XmlElement(name = "MedizinischerBeruf") + protected AttributEnumType medizinischerBeruf; + @XmlElement(name = "FreizeitSportRisiken") + protected List freizeitSportRisiken; + @XmlElement(name = "Risikozuschlaege") + protected List risikozuschlaege; + @XmlElement(name = "GesetzlicheUV") + protected AttributEnumType gesetzlicheUV; + @XmlElement(name = "PersonenartKranken") + protected AttributEnumType personenartKranken; + @XmlElement(name = "Berufsgruppe") + protected AttributEnumType berufsgruppe; + @XmlElement(name = "ManuelleTaetigkeit") + protected AttributEnumType manuelleTaetigkeit; + @XmlElement(name = "BehandelnderArzt") + protected String behandelnderArzt; + @XmlElement(name = "KontaktRueckfragen") + protected String kontaktRueckfragen; + @XmlElement(name = "ZusaetzlicheRisikodaten") + protected List zusaetzlicheRisikodaten; + + /** + * Ruft den Wert der gewicht-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributIntType } + * + */ + public AttributIntType getGewicht() { + return gewicht; + } + + /** + * Legt den Wert der gewicht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributIntType } + * + */ + public void setGewicht(AttributIntType value) { + this.gewicht = value; + } + + /** + * Ruft den Wert der groesse-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributIntType } + * + */ + public AttributIntType getGroesse() { + return groesse; + } + + /** + * Legt den Wert der groesse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributIntType } + * + */ + public void setGroesse(AttributIntType value) { + this.groesse = value; + } + + /** + * Ruft den Wert der raucher-Eigenschaft ab. + * + * @return + * possible object is + * {@link RaucherType } + * + */ + public RaucherType getRaucher() { + return raucher; + } + + /** + * Legt den Wert der raucher-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RaucherType } + * + */ + public void setRaucher(RaucherType value) { + this.raucher = value; + } + + /** + * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getSozialversicherungsanstalt() { + return sozialversicherungsanstalt; + } + + /** + * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setSozialversicherungsanstalt(AttributEnumType value) { + this.sozialversicherungsanstalt = value; + } + + /** + * Ruft den Wert der gefahrenklasse-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getGefahrenklasse() { + return gefahrenklasse; + } + + /** + * Legt den Wert der gefahrenklasse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setGefahrenklasse(AttributEnumType value) { + this.gefahrenklasse = value; + } + + /** + * Ruft den Wert der beruf-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributStringType } + * + */ + public AttributStringType getBeruf() { + return beruf; + } + + /** + * Legt den Wert der beruf-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributStringType } + * + */ + public void setBeruf(AttributStringType value) { + this.beruf = value; + } + + /** + * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getMedizinischerBeruf() { + return medizinischerBeruf; + } + + /** + * Legt den Wert der medizinischerBeruf-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setMedizinischerBeruf(AttributEnumType value) { + this.medizinischerBeruf = value; + } + + /** + * Gets the value of the freizeitSportRisiken property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the freizeitSportRisiken property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFreizeitSportRisiken().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributEnumType } + * + * + */ + public List getFreizeitSportRisiken() { + if (freizeitSportRisiken == null) { + freizeitSportRisiken = new ArrayList(); + } + return this.freizeitSportRisiken; + } + + /** + * Gets the value of the risikozuschlaege property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the risikozuschlaege property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRisikozuschlaege().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributEnumType } + * + * + */ + public List getRisikozuschlaege() { + if (risikozuschlaege == null) { + risikozuschlaege = new ArrayList(); + } + return this.risikozuschlaege; + } + + /** + * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getGesetzlicheUV() { + return gesetzlicheUV; + } + + /** + * Legt den Wert der gesetzlicheUV-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setGesetzlicheUV(AttributEnumType value) { + this.gesetzlicheUV = value; + } + + /** + * Ruft den Wert der personenartKranken-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getPersonenartKranken() { + return personenartKranken; + } + + /** + * Legt den Wert der personenartKranken-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setPersonenartKranken(AttributEnumType value) { + this.personenartKranken = value; + } + + /** + * Ruft den Wert der berufsgruppe-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getBerufsgruppe() { + return berufsgruppe; + } + + /** + * Legt den Wert der berufsgruppe-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setBerufsgruppe(AttributEnumType value) { + this.berufsgruppe = value; + } + + /** + * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributEnumType } + * + */ + public AttributEnumType getManuelleTaetigkeit() { + return manuelleTaetigkeit; + } + + /** + * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributEnumType } + * + */ + public void setManuelleTaetigkeit(AttributEnumType value) { + this.manuelleTaetigkeit = value; + } + + /** + * Ruft den Wert der behandelnderArzt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBehandelnderArzt() { + return behandelnderArzt; + } + + /** + * Legt den Wert der behandelnderArzt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBehandelnderArzt(String value) { + this.behandelnderArzt = value; + } + + /** + * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKontaktRueckfragen() { + return kontaktRueckfragen; + } + + /** + * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKontaktRueckfragen(String value) { + this.kontaktRueckfragen = value; + } + + /** + * Gets the value of the zusaetzlicheRisikodaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheRisikodaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheRisikodaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheRisikodatenType } + * + * + */ + public List getZusaetzlicheRisikodaten() { + if (zusaetzlicheRisikodaten == null) { + zusaetzlicheRisikodaten = new ArrayList(); + } + return this.zusaetzlicheRisikodaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenObjektSpezifikationType.java new file mode 100644 index 00000000..c341ddd8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenObjektSpezifikationType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Die Spezifikation eines Schadenobjektes + * + *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenObjektSpezifikation_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
+ *       <choice>
+ *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
+ *       </choice>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { + "geschaeftsfallnummer", + "schadennr" +}) +public class SchadenObjektSpezifikationType + extends ObjektSpezifikationType +{ + + @XmlElement(name = "Geschaeftsfallnummer") + protected ObjektIdType geschaeftsfallnummer; + @XmlElement(name = "Schadennr") + protected String schadennr; + + /** + * 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; + } + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenZuordnungType.java new file mode 100644 index 00000000..ade102ad --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SchadenZuordnungType.java @@ -0,0 +1,223 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung Schaden + * + *

Java-Klasse für SchadenZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
+ *         <element name="BearbStand" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
+ *         <element name="Person" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *                   <element name="Rolle" type="{urn:omds20}BetRolleCd_Type"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenZuordnung_Type", propOrder = { + "schadennr", + "bearbStand", + "person" +}) +public class SchadenZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Schadennr", required = true) + protected String schadennr; + @XmlElement(name = "BearbStand") + protected String bearbStand; + @XmlElement(name = "Person") + protected List person; + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + + /** + * Ruft den Wert der bearbStand-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStand() { + return bearbStand; + } + + /** + * Legt den Wert der bearbStand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStand(String value) { + this.bearbStand = value; + } + + /** + * Gets the value of the person property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the person property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPerson().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SchadenZuordnungType.Person } + * + * + */ + public List getPerson() { + if (person == null) { + person = new ArrayList(); + } + return this.person; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+     *         <element name="Rolle" type="{urn:omds20}BetRolleCd_Type"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "personId", + "rolle" + }) + public static class Person { + + @XmlElement(name = "PersonId", required = true) + protected ObjektIdType personId; + @XmlElement(name = "Rolle", required = true) + protected String rolle; + + /** + * Ruft den Wert der personId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getPersonId() { + return personId; + } + + /** + * Legt den Wert der personId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setPersonId(ObjektIdType value) { + this.personId = 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; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SelbstbehaltType.java new file mode 100644 index 00000000..421d88e1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SelbstbehaltType.java @@ -0,0 +1,179 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Dient zur Abbildung eines Selbstbehalts + * + *

Java-Klasse für Selbstbehalt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Selbstbehalt_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
+ *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Selbstbehalt_Type", propOrder = { + "art", + "selbstbehalt", + "selbstbehaltProzentVs", + "selbstbehaltMinBetrag", + "selbstbehaltMaxBetrag" +}) +public class SelbstbehaltType { + + @XmlElement(name = "Art") + protected String art; + @XmlElement(name = "Selbstbehalt") + protected BigDecimal selbstbehalt; + @XmlElement(name = "SelbstbehaltProzentVs") + @XmlSchemaType(name = "unsignedByte") + protected Short selbstbehaltProzentVs; + @XmlElement(name = "SelbstbehaltMinBetrag") + protected BigDecimal selbstbehaltMinBetrag; + @XmlElement(name = "SelbstbehaltMaxBetrag") + protected BigDecimal selbstbehaltMaxBetrag; + + /** + * Ruft den Wert der art-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArt() { + return art; + } + + /** + * Legt den Wert der art-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArt(String value) { + this.art = value; + } + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSelbstbehalt(BigDecimal value) { + this.selbstbehalt = value; + } + + /** + * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getSelbstbehaltProzentVs() { + return selbstbehaltProzentVs; + } + + /** + * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setSelbstbehaltProzentVs(Short value) { + this.selbstbehaltProzentVs = value; + } + + /** + * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSelbstbehaltMinBetrag() { + return selbstbehaltMinBetrag; + } + + /** + * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSelbstbehaltMinBetrag(BigDecimal value) { + this.selbstbehaltMinBetrag = value; + } + + /** + * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSelbstbehaltMaxBetrag() { + return selbstbehaltMaxBetrag; + } + + /** + * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSelbstbehaltMaxBetrag(BigDecimal value) { + this.selbstbehaltMaxBetrag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ServiceFault.java new file mode 100644 index 00000000..2836f6a8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ServiceFault.java @@ -0,0 +1,155 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigInteger; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. + * + *

Java-Klasse für ServiceFault complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ServiceFault">
+ *   <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"/>
+ *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ServiceFault", propOrder = { + "errorType", + "errorCode", + "errorMsg", + "elementReference" +}) +public class ServiceFault { + + @XmlElement(required = true) + protected BigInteger errorType; + protected BigInteger errorCode; + @XmlElement(required = true) + protected String errorMsg; + protected String elementReference; + + /** + * 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; + } + + /** + * Ruft den Wert der elementReference-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getElementReference() { + return elementReference; + } + + /** + * Legt den Wert der elementReference-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setElementReference(String value) { + this.elementReference = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SicherstellungType.java new file mode 100644 index 00000000..015c3431 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/SicherstellungType.java @@ -0,0 +1,121 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer Sicherstellungen + * + *

Java-Klasse für Sicherstellung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Sicherstellung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Sicherstellung_Type", propOrder = { + "lfnr", + "betrag", + "unanfechtbarkeitssumme" +}) +@XmlSeeAlso({ + AbtretungType.class, + VerpfaendungType.class, + VinkulierungPersonenType.class +}) +public abstract class SicherstellungType { + + @XmlElement(name = "Lfnr") + @XmlSchemaType(name = "unsignedShort") + protected int lfnr; + @XmlElement(name = "Betrag") + protected BigDecimal betrag; + @XmlElement(name = "Unanfechtbarkeitssumme") + protected BigDecimal unanfechtbarkeitssumme; + + /** + * 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; + } + + /** + * Ruft den Wert der betrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBetrag() { + return betrag; + } + + /** + * Legt den Wert der betrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBetrag(BigDecimal value) { + this.betrag = value; + } + + /** + * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getUnanfechtbarkeitssumme() { + return unanfechtbarkeitssumme; + } + + /** + * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setUnanfechtbarkeitssumme(BigDecimal value) { + this.unanfechtbarkeitssumme = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/StatusType.java new file mode 100644 index 00000000..038b99c3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/StatusType.java @@ -0,0 +1,54 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Status_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="Status_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="OK"/>
+ *     <enumeration value="OKNA"/>
+ *     <enumeration value="NOK"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "Status_Type") +@XmlEnum +public enum StatusType { + + + /** + * Request konnte verarbeitet werden + * + */ + OK, + + /** + * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. + * + */ + OKNA, + + /** + * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden + * + */ + NOK; + + public String value() { + return name(); + } + + public static StatusType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TarifIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TarifIdType.java new file mode 100644 index 00000000..093712c3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TarifIdType.java @@ -0,0 +1,33 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für eine TarifId. Dieser Typ muss von der VU überschrieben werden, + * die z.B. ein Enum für die zulässigen Tarifschlüssel anbietet. + * + *

Java-Klasse für TarifId_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="TarifId_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TarifId_Type") +public abstract class TarifIdType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnicalKeyValueType.java new file mode 100644 index 00000000..09c40c3d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnicalKeyValueType.java @@ -0,0 +1,92 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für nicht weiter spezifizierte technische Parameter + * + *

Java-Klasse für TechnicalKeyValue_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="TechnicalKeyValue_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TechnicalKeyValue_Type", propOrder = { + "key", + "value" +}) +public class TechnicalKeyValueType { + + @XmlElement(name = "Key", required = true) + protected String key; + @XmlElement(name = "Value", required = true) + protected String value; + + /** + * Ruft den Wert der key-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } + + /** + * Legt den Wert der key-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnischesObjektType.java new file mode 100644 index 00000000..92969ba1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TechnischesObjektType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit für technische Daten + * + *

Java-Klasse für TechnischesObjekt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="TechnischesObjekt_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TechnischesObjekt_Type") +public abstract class TechnischesObjektType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TreuhaenderfrageType.java new file mode 100644 index 00000000..a87b4386 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/TreuhaenderfrageType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Details zur Treuhaenderfrage + * + *

Java-Klasse für Treuhaenderfrage_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Treuhaenderfrage_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Treuhaenderfrage_Type", propOrder = { + "treuhaender", + "beschreibung" +}) +public class TreuhaenderfrageType { + + @XmlElement(name = "Treuhaender") + protected boolean treuhaender; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + + /** + * Ruft den Wert der treuhaender-Eigenschaft ab. + * + */ + public boolean isTreuhaender() { + return treuhaender; + } + + /** + * Legt den Wert der treuhaender-Eigenschaft fest. + * + */ + public void setTreuhaender(boolean value) { + this.treuhaender = value; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/UploadDokumentType.java new file mode 100644 index 00000000..dbb0b09e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/UploadDokumentType.java @@ -0,0 +1,143 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename + * + *

Java-Klasse für Upload_Dokument_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Upload_Dokument_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Upload_Dokument_Type", propOrder = { + "name", + "mimetype", + "content", + "documentType" +}) +public class UploadDokumentType { + + @XmlElement(name = "Name", required = true) + protected String name; + @XmlElement(name = "Mimetype", required = true) + protected String mimetype; + @XmlElement(name = "Content", required = true) + @XmlMimeType("application/octet-stream") + protected DataHandler content; + @XmlElement(name = "DocumentType") + protected int documentType; + + /** + * 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 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 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 documentType-Eigenschaft ab. + * + */ + public int getDocumentType() { + return documentType; + } + + /** + * Legt den Wert der documentType-Eigenschaft fest. + * + */ + public void setDocumentType(int value) { + this.documentType = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktGenerischType.java new file mode 100644 index 00000000..4d23be4d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktGenerischType.java @@ -0,0 +1,160 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.VerkaufsproduktKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.VerkaufsproduktLebenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.VerkaufsproduktUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Produktbündel, 2. Generation + * + *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktGenerisch_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { + "eingeschlossen", + "einschlussAenderbar", + "attributMetadaten", + "beschreibungTxt" +}) +@XmlSeeAlso({ + VerkaufsproduktSachPrivatType.class, + VerkaufsproduktUnfallType.class, + VerkaufsproduktKrankenType.class, + VerkaufsproduktLebenType.class +}) +public abstract class VerkaufsproduktGenerischType + extends VerkaufsproduktType +{ + + @XmlElement(name = "Eingeschlossen") + protected boolean eingeschlossen; + @XmlElement(name = "EinschlussAenderbar") + protected Boolean einschlussAenderbar; + @XmlElement(name = "AttributMetadaten") + protected List attributMetadaten; + @XmlElement(name = "BeschreibungTxt") + protected String beschreibungTxt; + + /** + * 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktType.java new file mode 100644 index 00000000..6140c6fb --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerkaufsproduktType.java @@ -0,0 +1,338 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds2Types.v2_16.ELRahmenvereinbarungType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.VerkaufsproduktKfzType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Produktbündel + * + *

Java-Klasse für Verkaufsprodukt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Verkaufsprodukt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
+ *       <sequence>
+ *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
+ *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
+ *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
+ *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
+ *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
+ *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
+ *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
+ *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Verkaufsprodukt_Type", propOrder = { + "vtgBeg", + "verkaufsproduktgeneration", + "zahlweg", + "zahlrhythmus", + "hauptfaelligkeit", + "berechnungsvariante", + "vermittlernr", + "elRahmenvereinbarung", + "refSicherstellungLfnr", + "zusaetzlicheVerkaufproduktdaten" +}) +@XmlSeeAlso({ + VerkaufsproduktKfzType.class, + VerkaufsproduktGenerischType.class +}) +public abstract class VerkaufsproduktType + extends ProduktbausteinType +{ + + @XmlElement(name = "VtgBeg", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar vtgBeg; + @XmlElement(name = "Verkaufsproduktgeneration") + protected String verkaufsproduktgeneration; + @XmlElement(name = "Zahlweg") + protected String zahlweg; + @XmlElement(name = "Zahlrhythmus") + protected String zahlrhythmus; + @XmlElement(name = "Hauptfaelligkeit") + @XmlSchemaType(name = "gMonthDay") + protected XMLGregorianCalendar hauptfaelligkeit; + @XmlElement(name = "Berechnungsvariante") + @XmlSchemaType(name = "string") + protected BerechnungsvarianteType berechnungsvariante; + @XmlElement(name = "Vermittlernr") + protected String vermittlernr; + @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") + protected ELRahmenvereinbarungType elRahmenvereinbarung; + @XmlElement(name = "RefSicherstellungLfnr") + @XmlSchemaType(name = "unsignedShort") + protected Integer refSicherstellungLfnr; + @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") + protected List zusaetzlicheVerkaufproduktdaten; + + /** + * 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 verkaufsproduktgeneration-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerkaufsproduktgeneration() { + return verkaufsproduktgeneration; + } + + /** + * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerkaufsproduktgeneration(String value) { + this.verkaufsproduktgeneration = value; + } + + /** + * Ruft den Wert der zahlweg-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlweg() { + return zahlweg; + } + + /** + * Legt den Wert der zahlweg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlweg(String value) { + this.zahlweg = value; + } + + /** + * Ruft den Wert der zahlrhythmus-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlrhythmus() { + return zahlrhythmus; + } + + /** + * Legt den Wert der zahlrhythmus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlrhythmus(String value) { + this.zahlrhythmus = value; + } + + /** + * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getHauptfaelligkeit() { + return hauptfaelligkeit; + } + + /** + * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setHauptfaelligkeit(XMLGregorianCalendar value) { + this.hauptfaelligkeit = value; + } + + /** + * Ruft den Wert der berechnungsvariante-Eigenschaft ab. + * + * @return + * possible object is + * {@link BerechnungsvarianteType } + * + */ + public BerechnungsvarianteType getBerechnungsvariante() { + return berechnungsvariante; + } + + /** + * Legt den Wert der berechnungsvariante-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BerechnungsvarianteType } + * + */ + public void setBerechnungsvariante(BerechnungsvarianteType value) { + this.berechnungsvariante = value; + } + + /** + * Ruft den Wert der vermittlernr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermittlernr() { + return vermittlernr; + } + + /** + * Legt den Wert der vermittlernr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermittlernr(String value) { + this.vermittlernr = value; + } + + /** + * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. + * + * @return + * possible object is + * {@link ELRahmenvereinbarungType } + * + */ + public ELRahmenvereinbarungType getELRahmenvereinbarung() { + return elRahmenvereinbarung; + } + + /** + * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ELRahmenvereinbarungType } + * + */ + public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { + this.elRahmenvereinbarung = 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 zusaetzlicheVerkaufproduktdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheVerkaufproduktdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheVerkaufproduktdatenType } + * + * + */ + public List getZusaetzlicheVerkaufproduktdaten() { + if (zusaetzlicheVerkaufproduktdaten == null) { + zusaetzlicheVerkaufproduktdaten = new ArrayList(); + } + return this.zusaetzlicheVerkaufproduktdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerpfaendungType.java new file mode 100644 index 00000000..fa096bc1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VerpfaendungType.java @@ -0,0 +1,74 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Sicherstellung vom Typ Verpfändung. Der VN und der Pfandgläubiger können Änderungen + * im Vertrag nur gemeinsam durchführen, VN bleibt aber Träger der Rechte un Pflichten aus dem Versicherungsvertrag. + * + *

Java-Klasse für Verpfaendung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Verpfaendung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
+ *       <sequence>
+ *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Verpfaendung_Type", propOrder = { + "pfandglaeubiger" +}) +public class VerpfaendungType + extends SicherstellungType +{ + + @XmlElement(name = "Pfandglaeubiger", required = true) + protected List pfandglaeubiger; + + /** + * Gets the value of the pfandglaeubiger property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the pfandglaeubiger property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPfandglaeubiger().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PfandglaeubigerType } + * + * + */ + public List getPfandglaeubiger() { + if (pfandglaeubiger == null) { + pfandglaeubiger = new ArrayList(); + } + return this.pfandglaeubiger; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherteLiegenschaftType.java new file mode 100644 index 00000000..3adaa098 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherteLiegenschaftType.java @@ -0,0 +1,138 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.ADRESSEType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Versicherte Liegenschaft + * + *

Java-Klasse für VersicherteLiegenschaft_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersicherteLiegenschaft_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
+ *       <sequence>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
+ *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
+ *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { + "objektId", + "adresse", + "bebauteFlaecheInQm", + "ueberdachteFlaecheInQm" +}) +public class VersicherteLiegenschaftType + extends VersichertesInteresseMitAttributMetadatenType +{ + + @XmlElement(name = "ObjektId", required = true) + protected ObjektIdType objektId; + @XmlElement(name = "Adresse", required = true) + protected ADRESSEType adresse; + @XmlElement(name = "BebauteFlaecheInQm") + @XmlSchemaType(name = "unsignedShort") + protected int bebauteFlaecheInQm; + @XmlElement(name = "UeberdachteFlaecheInQm") + @XmlSchemaType(name = "unsignedShort") + protected int ueberdachteFlaecheInQm; + + /** + * 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 adresse-Eigenschaft ab. + * + * @return + * possible object is + * {@link ADRESSEType } + * + */ + public ADRESSEType getAdresse() { + return adresse; + } + + /** + * Legt den Wert der adresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ADRESSEType } + * + */ + public void setAdresse(ADRESSEType value) { + this.adresse = value; + } + + /** + * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. + * + */ + public int getBebauteFlaecheInQm() { + return bebauteFlaecheInQm; + } + + /** + * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. + * + */ + public void setBebauteFlaecheInQm(int value) { + this.bebauteFlaecheInQm = value; + } + + /** + * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. + * + */ + public int getUeberdachteFlaecheInQm() { + return ueberdachteFlaecheInQm; + } + + /** + * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. + * + */ + public void setUeberdachteFlaecheInQm(int value) { + this.ueberdachteFlaecheInQm = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertePersonType.java new file mode 100644 index 00000000..10e49b28 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertePersonType.java @@ -0,0 +1,96 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. + * + *

Java-Klasse für VersichertePerson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersichertePerson_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
+ *       <sequence>
+ *         <choice minOccurs="0">
+ *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
+ *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ *         </choice>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersichertePerson_Type", propOrder = { + "risikoNatPerson", + "risikoSonstPerson" +}) +public class VersichertePersonType + extends VersichertesInteresseMitAttributMetadatenType +{ + + @XmlElement(name = "RisikoNatPerson") + protected RisikoNatPersonType risikoNatPerson; + @XmlElement(name = "RisikoSonstPerson") + protected Object risikoSonstPerson; + + /** + * Ruft den Wert der risikoNatPerson-Eigenschaft ab. + * + * @return + * possible object is + * {@link RisikoNatPersonType } + * + */ + public RisikoNatPersonType getRisikoNatPerson() { + return risikoNatPerson; + } + + /** + * Legt den Wert der risikoNatPerson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RisikoNatPersonType } + * + */ + public void setRisikoNatPerson(RisikoNatPersonType value) { + this.risikoNatPerson = value; + } + + /** + * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getRisikoSonstPerson() { + return risikoSonstPerson; + } + + /** + * Legt den Wert der risikoSonstPerson-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setRisikoSonstPerson(Object value) { + this.risikoSonstPerson = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseMitAttributMetadatenType.java new file mode 100644 index 00000000..5ff78d79 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseMitAttributMetadatenType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.RisikoGebaeudeType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.RisikoHaushaltType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten + * + *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
+ *       <sequence>
+ *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { + "attributMetadaten" +}) +@XmlSeeAlso({ + VersichertePersonType.class, + VersicherteLiegenschaftType.class, + VersichertesObjektSachPrivatType.class, + RisikoHaushaltType.class, + RisikoGebaeudeType.class +}) +public abstract class VersichertesInteresseMitAttributMetadatenType + extends VersichertesInteresseType +{ + + @XmlElement(name = "AttributMetadaten") + protected List attributMetadaten; + + /** + * Gets the value of the attributMetadaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + return this.attributMetadaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseType.java new file mode 100644 index 00000000..15909f99 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersichertesInteresseType.java @@ -0,0 +1,160 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.ELBetragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Obertyp für versicherte Interessen + * + *

Java-Klasse für VersichertesInteresse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersichertesInteresse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Bewertung" type="{urn:omds20}EL-Betrag_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersichertesInteresse_Type", propOrder = { + "ersetztId", + "zusaetzlicheRisikodaten", + "bewertung" +}) +@XmlSeeAlso({ + FahrzeugType.class, + VersichertesInteresseMitAttributMetadatenType.class +}) +public abstract class VersichertesInteresseType { + + @XmlElement(name = "ErsetztId") + protected String ersetztId; + @XmlElement(name = "ZusaetzlicheRisikodaten") + protected List zusaetzlicheRisikodaten; + @XmlElement(name = "Bewertung") + protected List bewertung; + @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int lfnr; + + /** + * Ruft den Wert der ersetztId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsetztId() { + return ersetztId; + } + + /** + * Legt den Wert der ersetztId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsetztId(String value) { + this.ersetztId = value; + } + + /** + * Gets the value of the zusaetzlicheRisikodaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheRisikodaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheRisikodaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheRisikodatenType } + * + * + */ + public List getZusaetzlicheRisikodaten() { + if (zusaetzlicheRisikodaten == null) { + zusaetzlicheRisikodaten = new ArrayList(); + } + return this.zusaetzlicheRisikodaten; + } + + /** + * Gets the value of the bewertung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bewertung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBewertung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELBetragType } + * + * + */ + public List getBewertung() { + if (bewertung == null) { + bewertung = new ArrayList(); + } + return this.bewertung; + } + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherungssteuerType.java new file mode 100644 index 00000000..ca3f241c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VersicherungssteuerType.java @@ -0,0 +1,121 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Stellt die Versicherungsteuer einer Prämie dar + * + *

Java-Klasse für Versicherungssteuer_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Versicherungssteuer_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
+ *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
+ *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Versicherungssteuer_Type", propOrder = { + "versicherungssteuer", + "versicherungssteuerArt", + "versicherungssteuerSatz" +}) +public class VersicherungssteuerType { + + @XmlElement(name = "Versicherungssteuer", required = true) + protected BigDecimal versicherungssteuer; + @XmlElement(name = "VersicherungssteuerArt", required = true) + protected String versicherungssteuerArt; + @XmlElement(name = "VersicherungssteuerSatz") + protected BigDecimal versicherungssteuerSatz; + + /** + * Ruft den Wert der versicherungssteuer-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getVersicherungssteuer() { + return versicherungssteuer; + } + + /** + * Legt den Wert der versicherungssteuer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setVersicherungssteuer(BigDecimal value) { + this.versicherungssteuer = value; + } + + /** + * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersicherungssteuerArt() { + return versicherungssteuerArt; + } + + /** + * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersicherungssteuerArt(String value) { + this.versicherungssteuerArt = value; + } + + /** + * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getVersicherungssteuerSatz() { + return versicherungssteuerSatz; + } + + /** + * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setVersicherungssteuerSatz(BigDecimal value) { + this.versicherungssteuerSatz = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragsZuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragsZuordnungType.java new file mode 100644 index 00000000..a093164d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragsZuordnungType.java @@ -0,0 +1,282 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.VtgRolleCdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Zuordnung zu Vertrag + * + *

Java-Klasse für VertragsZuordnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VertragsZuordnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenZuordnung_Type">
+ *       <sequence>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *         <element name="Vertragsperson" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *                   <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VertragsZuordnung_Type", propOrder = { + "polizzennr", + "vertragsID", + "aendGrundCd", + "vermnr", + "vertragsperson" +}) +public class VertragsZuordnungType + extends DokumentenZuordnungType +{ + + @XmlElement(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "AendGrundCd") + protected String aendGrundCd; + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + @XmlElement(name = "Vertragsperson") + protected List vertragsperson; + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * 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 vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * Gets the value of the vertragsperson property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertragsperson property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVertragsperson().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VertragsZuordnungType.Vertragsperson } + * + * + */ + public List getVertragsperson() { + if (vertragsperson == null) { + vertragsperson = new ArrayList(); + } + return this.vertragsperson; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="PersonId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+     *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "personId", + "rolle" + }) + public static class Vertragsperson { + + @XmlElement(name = "PersonId", required = true) + protected ObjektIdType personId; + @XmlElement(name = "Rolle", required = true) + @XmlSchemaType(name = "string") + protected VtgRolleCdType rolle; + + /** + * Ruft den Wert der personId-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getPersonId() { + return personId; + } + + /** + * Legt den Wert der personId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setPersonId(ObjektIdType value) { + this.personId = value; + } + + /** + * Ruft den Wert der rolle-Eigenschaft ab. + * + * @return + * possible object is + * {@link VtgRolleCdType } + * + */ + public VtgRolleCdType getRolle() { + return rolle; + } + + /** + * Legt den Wert der rolle-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VtgRolleCdType } + * + */ + public void setRolle(VtgRolleCdType value) { + this.rolle = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragspersonType.java new file mode 100644 index 00000000..d5692774 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VertragspersonType.java @@ -0,0 +1,88 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.VtgRolleCdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle + * + *

Java-Klasse für Vertragsperson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Vertragsperson_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
+ *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Vertragsperson_Type", propOrder = { + "lfdNr", + "rolle" +}) +public class VertragspersonType { + + @XmlElement(name = "LfdNr") + @XmlSchemaType(name = "unsignedInt") + protected long lfdNr; + @XmlElement(name = "Rolle", required = true) + @XmlSchemaType(name = "string") + protected VtgRolleCdType rolle; + + /** + * Ruft den Wert der lfdNr-Eigenschaft ab. + * + */ + public long getLfdNr() { + return lfdNr; + } + + /** + * Legt den Wert der lfdNr-Eigenschaft fest. + * + */ + public void setLfdNr(long value) { + this.lfdNr = value; + } + + /** + * Ruft den Wert der rolle-Eigenschaft ab. + * + * @return + * possible object is + * {@link VtgRolleCdType } + * + */ + public VtgRolleCdType getRolle() { + return rolle; + } + + /** + * Legt den Wert der rolle-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VtgRolleCdType } + * + */ + public void setRolle(VtgRolleCdType value) { + this.rolle = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkularglaeubigerType.java new file mode 100644 index 00000000..8de16caf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkularglaeubigerType.java @@ -0,0 +1,176 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur Beschreibung einer Bank als Vinkulargläubiger + * + *

Java-Klasse für Vinkularglaeubiger_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Vinkularglaeubiger_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Vertragsnummer" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="32"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="VinkularglaeubigerBank">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="2"/>
+ *               <maxLength value="100"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="VinkularglaeubigerPlz">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="4"/>
+ *               <maxLength value="5"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="3"/>
+ *               <maxLength value="100"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { + "vertragsnummer", + "vinkularglaeubigerBank", + "vinkularglaeubigerPlz", + "vinkularglaeubigerStrasse" +}) +public class VinkularglaeubigerType { + + @XmlElement(name = "Vertragsnummer") + protected String vertragsnummer; + @XmlElement(name = "VinkularglaeubigerBank", required = true) + protected String vinkularglaeubigerBank; + @XmlElement(name = "VinkularglaeubigerPlz", required = true) + protected String vinkularglaeubigerPlz; + @XmlElement(name = "VinkularglaeubigerStrasse") + protected String vinkularglaeubigerStrasse; + + /** + * Ruft den Wert der vertragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsnummer() { + return vertragsnummer; + } + + /** + * Legt den Wert der vertragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsnummer(String value) { + this.vertragsnummer = value; + } + + /** + * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVinkularglaeubigerBank() { + return vinkularglaeubigerBank; + } + + /** + * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVinkularglaeubigerBank(String value) { + this.vinkularglaeubigerBank = value; + } + + /** + * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVinkularglaeubigerPlz() { + return vinkularglaeubigerPlz; + } + + /** + * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVinkularglaeubigerPlz(String value) { + this.vinkularglaeubigerPlz = value; + } + + /** + * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVinkularglaeubigerStrasse() { + return vinkularglaeubigerStrasse; + } + + /** + * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVinkularglaeubigerStrasse(String value) { + this.vinkularglaeubigerStrasse = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungPersonenType.java new file mode 100644 index 00000000..11ba52c1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungPersonenType.java @@ -0,0 +1,70 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Sicherstellung vom Typ Vinkulierung. Der Vinkulargläubiger hat das Recht auf Auszahlungen + * aus dem Versicherungsverhältnis. Die Versicherung ist verpflichtet den Vinkulargläubiger über Vertragsänderungen + * oder Prämienrückstände zu informieren. Die Benennung VinkulierungPersonen_Type ist schlecht gewählt, + * dieses Objekt ist für alle Vinkulierungen innerhalb des Konzepts "Sicherstellungen" vorgesehen. + * + * + *

Java-Klasse für VinkulierungPersonen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VinkulierungPersonen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
+ *       <sequence>
+ *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VinkulierungPersonen_Type", propOrder = { + "vinkularglaeubiger" +}) +public class VinkulierungPersonenType + extends SicherstellungType +{ + + @XmlElement(name = "Vinkularglaeubiger", required = true) + protected VinkularglaeubigerType vinkularglaeubiger; + + /** + * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. + * + * @return + * possible object is + * {@link VinkularglaeubigerType } + * + */ + public VinkularglaeubigerType getVinkularglaeubiger() { + return vinkularglaeubiger; + } + + /** + * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VinkularglaeubigerType } + * + */ + public void setVinkularglaeubiger(VinkularglaeubigerType value) { + this.vinkularglaeubiger = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungType.java new file mode 100644 index 00000000..875ba0d1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VinkulierungType.java @@ -0,0 +1,65 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds2Types.v2_16.PERSONType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type Vinkulierung + * + *

Java-Klasse für Vinkulierung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Vinkulierung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds20}PERSON"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Vinkulierung_Type", propOrder = { + "person" +}) +public class VinkulierungType { + + @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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorlaeufigeDeckungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorlaeufigeDeckungType.java new file mode 100644 index 00000000..0da42795 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorlaeufigeDeckungType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp fuer vorläufige Deckungen + * + *

Java-Klasse für VorlaeufigeDeckung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VorlaeufigeDeckung_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VorlaeufigeDeckung_Type") +public abstract class VorlaeufigeDeckungType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungType.java new file mode 100644 index 00000000..6b432f07 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungType.java @@ -0,0 +1,129 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Angaben zu einer Vorversicherung in der Standardimplementierung, erweitert VorversicherungenDetail_Type + * + *

Java-Klasse für Vorversicherung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Vorversicherung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
+ *       <sequence>
+ *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
+ *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Vorversicherung_Type", propOrder = { + "vtgSparteCd", + "spartenCd", + "polizzennr" +}) +public class VorversicherungType + extends VorversicherungenDetailType +{ + + @XmlElement(name = "VtgSparteCd") + protected String vtgSparteCd; + @XmlElement(name = "SpartenCd") + protected List spartenCd; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + + /** + * Ruft den Wert der vtgSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgSparteCd() { + return vtgSparteCd; + } + + /** + * Legt den Wert der vtgSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgSparteCd(String value) { + this.vtgSparteCd = value; + } + + /** + * Gets the value of the spartenCd property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the spartenCd property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSpartenCd().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getSpartenCd() { + if (spartenCd == null) { + spartenCd = new ArrayList(); + } + return this.spartenCd; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenDetailType.java new file mode 100644 index 00000000..812d7244 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenDetailType.java @@ -0,0 +1,226 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz + * + *

Java-Klasse für VorversicherungenDetail_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VorversicherungenDetail_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="Aufloesungsgrund" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="aus Schaden"/>
+ *               <enumeration value="durch einvernehmliche Kündigung"/>
+ *               <enumeration value="durch Ablauf"/>
+ *               <enumeration value="durch Besitzwechsel"/>
+ *               <enumeration value="aus sonstigen Gründen"/>
+ *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
+ *         <element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VorversicherungenDetail_Type", propOrder = { + "wurdenVorversicherungenAufgeloest", + "aufloesungsgrund", + "auslaendischeVersicherungsgesellschaft", + "versicherungsgesellschaft", + "versInteresseRefLfnr", + "zusaetzlicheVorversicherungsdaten" +}) +@XmlSeeAlso({ + VorversicherungType.class, + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class +}) +public class VorversicherungenDetailType { + + @XmlElement(name = "WurdenVorversicherungenAufgeloest") + protected boolean wurdenVorversicherungenAufgeloest; + @XmlElement(name = "Aufloesungsgrund") + protected String aufloesungsgrund; + @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") + protected Boolean auslaendischeVersicherungsgesellschaft; + @XmlElement(name = "Versicherungsgesellschaft", required = true) + protected String versicherungsgesellschaft; + @XmlElement(name = "VersInteresseRefLfnr", type = Integer.class) + @XmlSchemaType(name = "unsignedShort") + protected List versInteresseRefLfnr; + @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") + protected List zusaetzlicheVorversicherungsdaten; + + /** + * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. + * + */ + public boolean isWurdenVorversicherungenAufgeloest() { + return wurdenVorversicherungenAufgeloest; + } + + /** + * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. + * + */ + public void setWurdenVorversicherungenAufgeloest(boolean value) { + this.wurdenVorversicherungenAufgeloest = value; + } + + /** + * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAufloesungsgrund() { + return aufloesungsgrund; + } + + /** + * Legt den Wert der aufloesungsgrund-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAufloesungsgrund(String value) { + this.aufloesungsgrund = value; + } + + /** + * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAuslaendischeVersicherungsgesellschaft() { + return auslaendischeVersicherungsgesellschaft; + } + + /** + * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { + this.auslaendischeVersicherungsgesellschaft = 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; + } + + /** + * Gets the value of the versInteresseRefLfnr property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versInteresseRefLfnr property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersInteresseRefLfnr().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getVersInteresseRefLfnr() { + if (versInteresseRefLfnr == null) { + versInteresseRefLfnr = new ArrayList(); + } + return this.versInteresseRefLfnr; + } + + /** + * Gets the value of the zusaetzlicheVorversicherungsdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheVorversicherungsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheVorversicherungsdatenType } + * + * + */ + public List getZusaetzlicheVorversicherungsdaten() { + if (zusaetzlicheVorversicherungsdaten == null) { + zusaetzlicheVorversicherungsdaten = new ArrayList(); + } + return this.zusaetzlicheVorversicherungsdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenImplType.java new file mode 100644 index 00000000..0783f3be --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenImplType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardimplementierung Vorversicherungen: Eine Liste von Vorversicherung_Type-Objekten + * + *

Java-Klasse für VorversicherungenImpl_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VorversicherungenImpl_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
+ *       <sequence>
+ *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VorversicherungenImpl_Type", propOrder = { + "vorversicherungen" +}) +public class VorversicherungenImplType + extends VorversicherungenType +{ + + @XmlElement(name = "Vorversicherungen", required = true) + protected List vorversicherungen; + + /** + * Gets the value of the vorversicherungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vorversicherungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVorversicherungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VorversicherungType } + * + * + */ + public List getVorversicherungen() { + if (vorversicherungen == null) { + vorversicherungen = new ArrayList(); + } + return this.vorversicherungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenType.java new file mode 100644 index 00000000..1224f13e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/VorversicherungenType.java @@ -0,0 +1,39 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.VorversicherungenKfzType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ zur Beschreibung der Vorversicherungen, wird verwendet in SpezAntrag_Type. + * Es gibt zwei Ableitungen im Standard: VorversicherungenKfz_Type und VorversicherungenImpl_Type (s.u.), jede VU kann aber auch eigene Implementierungen vornehmen. + * + *

Java-Klasse für Vorversicherungen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Vorversicherungen_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Vorversicherungen_Type") +@XmlSeeAlso({ + VorversicherungenImplType.class, + VorversicherungenKfzType.class +}) +public abstract class VorversicherungenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlungsdatenType.java new file mode 100644 index 00000000..f39e0632 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlungsdatenType.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Beschreibt die Zahlungsdaten in Antragsservices + * + *

Java-Klasse für Zahlungsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Zahlungsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
+ *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Zahlungsdaten_Type", propOrder = { + "zahlungsart", + "kontonummer", + "bic", + "beschreibung" +}) +public class ZahlungsdatenType { + + @XmlElement(name = "Zahlungsart", required = true) + protected String zahlungsart; + @XmlElement(name = "Kontonummer") + protected String kontonummer; + @XmlElement(name = "BIC") + protected String bic; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + + /** + * Ruft den Wert der zahlungsart-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZahlungsart() { + return zahlungsart; + } + + /** + * Legt den Wert der zahlungsart-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZahlungsart(String value) { + this.zahlungsart = value; + } + + /** + * Ruft den Wert der kontonummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKontonummer() { + return kontonummer; + } + + /** + * Legt den Wert der kontonummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKontonummer(String value) { + this.kontonummer = 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 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlwegType.java new file mode 100644 index 00000000..e0d2819f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZahlwegType.java @@ -0,0 +1,208 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ Zahlweg + * + *

Java-Klasse für Zahlweg_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Zahlweg_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
+ *         <element name="Kundenkonto">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Zahlweg_Type", propOrder = { + "zahlungsanweisung", + "lastschrift", + "kundenkonto", + "kreditkarte" +}) +public class ZahlwegType { + + @XmlElement(name = "Zahlungsanweisung") + protected Object zahlungsanweisung; + @XmlElement(name = "Lastschrift") + protected BankverbindungType lastschrift; + @XmlElement(name = "Kundenkonto") + protected ZahlwegType.Kundenkonto kundenkonto; + @XmlElement(name = "Kreditkarte") + protected KreditkarteType kreditkarte; + + /** + * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Object } + * + */ + public Object getZahlungsanweisung() { + return zahlungsanweisung; + } + + /** + * Legt den Wert der zahlungsanweisung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Object } + * + */ + public void setZahlungsanweisung(Object value) { + this.zahlungsanweisung = value; + } + + /** + * Ruft den Wert der lastschrift-Eigenschaft ab. + * + * @return + * possible object is + * {@link BankverbindungType } + * + */ + public BankverbindungType getLastschrift() { + return lastschrift; + } + + /** + * Legt den Wert der lastschrift-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BankverbindungType } + * + */ + public void setLastschrift(BankverbindungType value) { + this.lastschrift = value; + } + + /** + * Ruft den Wert der kundenkonto-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZahlwegType.Kundenkonto } + * + */ + public ZahlwegType.Kundenkonto getKundenkonto() { + return kundenkonto; + } + + /** + * Legt den Wert der kundenkonto-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZahlwegType.Kundenkonto } + * + */ + public void setKundenkonto(ZahlwegType.Kundenkonto value) { + this.kundenkonto = value; + } + + /** + * Ruft den Wert der kreditkarte-Eigenschaft ab. + * + * @return + * possible object is + * {@link KreditkarteType } + * + */ + public KreditkarteType getKreditkarte() { + return kreditkarte; + } + + /** + * Legt den Wert der kreditkarte-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KreditkarteType } + * + */ + public void setKreditkarte(KreditkarteType value) { + this.kreditkarte = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "") + public static class Kundenkonto { + + @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected String kundenkontonummer; + + /** + * Ruft den Wert der kundenkontonummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKundenkontonummer() { + return kundenkontonummer; + } + + /** + * Legt den Wert der kundenkontonummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKundenkontonummer(String value) { + this.kundenkontonummer = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZeitraumType.java new file mode 100644 index 00000000..d0dfe6ef --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZeitraumType.java @@ -0,0 +1,88 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ein Zeitraum mit Beginn und Ende Datum + * + *

Java-Klasse für Zeitraum_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Zeitraum_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
+ *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Zeitraum_Type") +public class ZeitraumType { + + @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected XMLGregorianCalendar zrBeg; + @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected XMLGregorianCalendar zrEnd; + + /** + * Ruft den Wert der zrBeg-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZRBeg() { + return zrBeg; + } + + /** + * Legt den Wert der zrBeg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZRBeg(XMLGregorianCalendar value) { + this.zrBeg = value; + } + + /** + * Ruft den Wert der zrEnd-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZREnd() { + return zrEnd; + } + + /** + * Legt den Wert der zrEnd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZREnd(XMLGregorianCalendar value) { + this.zrEnd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZulassungsdatenType.java new file mode 100644 index 00000000..bec43c62 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZulassungsdatenType.java @@ -0,0 +1,120 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für Zulassungsdaten + * + *

Java-Klasse für Zulassungsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Zulassungsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Zulassungsdaten_Type", propOrder = { + "vbNummer", + "kennzeichen", + "fahrgestellnummer" +}) +public class ZulassungsdatenType { + + @XmlElement(name = "VBNummer") + protected String vbNummer; + @XmlElement(name = "Kennzeichen") + protected String kennzeichen; + @XmlElement(name = "Fahrgestellnummer") + protected String fahrgestellnummer; + + /** + * Ruft den Wert der vbNummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVBNummer() { + return vbNummer; + } + + /** + * Legt den Wert der vbNummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVBNummer(String value) { + this.vbNummer = value; + } + + /** + * Ruft den Wert der kennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennzeichen() { + return kennzeichen; + } + + /** + * Legt den Wert der kennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennzeichen(String value) { + this.kennzeichen = value; + } + + /** + * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestellnummer() { + return fahrgestellnummer; + } + + /** + * Legt den Wert der fahrgestellnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestellnummer(String value) { + this.fahrgestellnummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheElementarproduktdatenType.java new file mode 100644 index 00000000..092a14cc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheElementarproduktdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt + * + *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") +public abstract class ZusaetzlicheElementarproduktdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheFondsdatenType.java new file mode 100644 index 00000000..8e96bbe9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheFondsdatenType.java @@ -0,0 +1,30 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheFondsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheFondsdaten_Type") +public abstract class ZusaetzlicheFondsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheProduktdatenType.java new file mode 100644 index 00000000..9356d1db --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheProduktdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt + * + *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheProduktdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheProduktdaten_Type") +public abstract class ZusaetzlicheProduktdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheRisikodatenType.java new file mode 100644 index 00000000..56c01d64 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheRisikodatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit für Risikodaten + * + *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheRisikodaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheRisikodaten_Type") +public abstract class ZusaetzlicheRisikodatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVerkaufproduktdatenType.java new file mode 100644 index 00000000..ee0f22d8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVerkaufproduktdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt + * + *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") +public abstract class ZusaetzlicheVerkaufproduktdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVorversicherungsdatenType.java new file mode 100644 index 00000000..06bafd3b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheVorversicherungsdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten + * + *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") +public abstract class ZusaetzlicheVorversicherungsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheZusatzproduktdatenType.java new file mode 100644 index 00000000..06b24139 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusaetzlicheZusatzproduktdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt + * + *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") +public abstract class ZusaetzlicheZusatzproduktdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktGenerischType.java new file mode 100644 index 00000000..fe89c0e3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktGenerischType.java @@ -0,0 +1,183 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.ZusatzversicherungLebenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Zusatzprodukt, 2. Generation + * + *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzproduktGenerisch_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { + "eingeschlossen", + "einschlussAenderbar", + "attributMetadaten", + "beschreibungTxt", + "versicherungssumme" +}) +@XmlSeeAlso({ + ZusatzversicherungLebenType.class +}) +public class ZusatzproduktGenerischType + extends ZusatzproduktType +{ + + @XmlElement(name = "Eingeschlossen") + protected boolean eingeschlossen; + @XmlElement(name = "EinschlussAenderbar") + protected Boolean einschlussAenderbar; + @XmlElement(name = "AttributMetadaten") + protected List 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. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the attributMetadaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAttributMetadaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AttributMetadatenType } + * + * + */ + public List getAttributMetadaten() { + if (attributMetadaten == null) { + attributMetadaten = new ArrayList(); + } + 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktType.java new file mode 100644 index 00000000..010a8eaf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/ZusatzproduktType.java @@ -0,0 +1,108 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.common; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Basistyp für ein Zusatzprodukt + * + *

Java-Klasse für Zusatzprodukt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Zusatzprodukt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
+ *       <sequence>
+ *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Zusatzprodukt_Type", propOrder = { + "vtgBeg", + "zusaetzlicheZusatzproduktdaten" +}) +@XmlSeeAlso({ + ZusatzproduktGenerischType.class +}) +public abstract class ZusatzproduktType + extends ProduktbausteinType +{ + + @XmlElement(name = "VtgBeg") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar vtgBeg; + @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") + protected List zusaetzlicheZusatzproduktdaten; + + /** + * 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; + } + + /** + * Gets the value of the zusaetzlicheZusatzproduktdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheZusatzproduktdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheZusatzproduktdatenType } + * + * + */ + public List getZusaetzlicheZusatzproduktdaten() { + if (zusaetzlicheZusatzproduktdaten == null) { + zusaetzlicheZusatzproduktdaten = new ArrayList(); + } + return this.zusaetzlicheZusatzproduktdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/package-info.java new file mode 100644 index 00000000..4c7cdad2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/common/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStateChangeEventType.java new file mode 100644 index 00000000..11113463 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStateChangeEventType.java @@ -0,0 +1,37 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes Event einer Statusänderung + * + *

Java-Klasse für AbstractStateChangeEvent_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AbstractStateChangeEvent_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AbstractStateChangeEvent_Type") +@XmlSeeAlso({ + GeschaeftsfallEreignisType.class, + StateChangeEventType.class +}) +public abstract class AbstractStateChangeEventType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStatusGeschaeftsfallType.java new file mode 100644 index 00000000..e3bf09d1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AbstractStatusGeschaeftsfallType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Deprecated: Abstrakter Status eines Geschaeftsfalls + * + *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AbstractStatusGeschaeftsfall_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AbstractStatusGeschaeftsfall_Type") +@XmlSeeAlso({ + StatusAntragsGeschaeftsfall.class +}) +public abstract class AbstractStatusGeschaeftsfallType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsRequest.java new file mode 100644 index 00000000..b6403a80 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsRequest.java @@ -0,0 +1,99 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <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="ErhaltBestaetigt" type="{urn:omds20}Datum"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "authFilter", + "erhaltBestaetigt" +}) +@XmlRootElement(name = "AcknowledgeDocumentsRequest") +public class AcknowledgeDocumentsRequest + extends CommonRequestType +{ + + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "ErhaltBestaetigt", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar erhaltBestaetigt; + + /** + * 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 erhaltBestaetigt-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getErhaltBestaetigt() { + return erhaltBestaetigt; + } + + /** + * Legt den Wert der erhaltBestaetigt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setErhaltBestaetigt(XMLGregorianCalendar value) { + this.erhaltBestaetigt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsResponse.java new file mode 100644 index 00000000..da1e8d7e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AcknowledgeDocumentsResponse.java @@ -0,0 +1,35 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "AcknowledgeDocumentsResponse") +public class AcknowledgeDocumentsResponse + extends CommonResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseRequestType.java new file mode 100644 index 00000000..f6391bac --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseRequestType.java @@ -0,0 +1,122 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.UploadDokumentType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen + * + *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AddDocToBusinessCaseRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { + "vuNr", + "geschaeftsfallnummer", + "dokument" +}) +public class AddDocToBusinessCaseRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "Geschaeftsfallnummer", required = true) + protected ObjektIdType geschaeftsfallnummer; + @XmlElement(name = "Dokument", required = true) + protected UploadDokumentType dokument; + + /** + * 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 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; + } + + /** + * Ruft den Wert der dokument-Eigenschaft ab. + * + * @return + * possible object is + * {@link UploadDokumentType } + * + */ + public UploadDokumentType getDokument() { + return dokument; + } + + /** + * Legt den Wert der dokument-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link UploadDokumentType } + * + */ + public void setDokument(UploadDokumentType value) { + this.dokument = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseResponseType.java new file mode 100644 index 00000000..b7e506c3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/AddDocToBusinessCaseResponseType.java @@ -0,0 +1,79 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentenReferenzType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElements; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde + * + *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AddDocToBusinessCaseResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice maxOccurs="unbounded">
+ *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { + "docRefOrServiceFault" +}) +public class AddDocToBusinessCaseResponseType { + + @XmlElements({ + @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), + @XmlElement(name = "ServiceFault", type = ServiceFault.class) + }) + protected List docRefOrServiceFault; + + /** + * Gets the value of the docRefOrServiceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the docRefOrServiceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDocRefOrServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentenReferenzType } + * {@link ServiceFault } + * + * + */ + public List getDocRefOrServiceFault() { + if (docRefOrServiceFault == null) { + docRefOrServiceFault = new ArrayList(); + } + return this.docRefOrServiceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/DocumentInfosResponseResultType.java new file mode 100644 index 00000000..90bf3f06 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/DocumentInfosResponseResultType.java @@ -0,0 +1,165 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentenReferenzType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZeitraumType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Informationen zu einem Dokument + * + *

Java-Klasse für DocumentInfosResponseResult_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DocumentInfosResponseResult_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <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"/>
+ *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { + "actualOffset", + "actualMaxResults", + "totalResults", + "dokumentInfos", + "zeitraum" +}) +public class DocumentInfosResponseResultType { + + @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; + @XmlElement(name = "DokumentInfos") + protected List dokumentInfos; + @XmlElement(name = "Zeitraum", required = true) + protected ZeitraumType zeitraum; + + /** + * 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; + } + + /** + * Gets the value of the dokumentInfos property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumentInfos property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumentInfos().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentenReferenzType } + * + * + */ + public List getDokumentInfos() { + if (dokumentInfos == null) { + dokumentInfos = new ArrayList(); + } + return this.dokumentInfos; + } + + /** + * Ruft den Wert der zeitraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZeitraumType } + * + */ + public ZeitraumType getZeitraum() { + return zeitraum; + } + + /** + * Legt den Wert der zeitraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZeitraumType } + * + */ + public void setZeitraum(ZeitraumType value) { + this.zeitraum = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisAntragType.java new file mode 100644 index 00000000..2029755c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisAntragType.java @@ -0,0 +1,114 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ereignis in einem Geschäftsprozess vom Typ Antrag + * + *

Java-Klasse für GeschaeftsfallEreignisAntrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaeftsfallEreignisAntrag_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallEreignis_Type">
+ *       <sequence>
+ *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="BisherigerAntragsstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
+ *         <element name="Antragsstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaeftsfallEreignisAntrag_Type", propOrder = { + "antragsId", + "bisherigerAntragsstatus", + "antragsstatus" +}) +public class GeschaeftsfallEreignisAntragType + extends GeschaeftsfallEreignisType +{ + + @XmlElement(name = "AntragsId", required = true) + protected String antragsId; + @XmlElement(name = "BisherigerAntragsstatus") + protected Integer bisherigerAntragsstatus; + @XmlElement(name = "Antragsstatus") + protected int antragsstatus; + + /** + * Ruft den Wert der antragsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntragsId() { + return antragsId; + } + + /** + * Legt den Wert der antragsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntragsId(String value) { + this.antragsId = value; + } + + /** + * Ruft den Wert der bisherigerAntragsstatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBisherigerAntragsstatus() { + return bisherigerAntragsstatus; + } + + /** + * Legt den Wert der bisherigerAntragsstatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBisherigerAntragsstatus(Integer value) { + this.bisherigerAntragsstatus = value; + } + + /** + * Ruft den Wert der antragsstatus-Eigenschaft ab. + * + */ + public int getAntragsstatus() { + return antragsstatus; + } + + /** + * Legt den Wert der antragsstatus-Eigenschaft fest. + * + */ + public void setAntragsstatus(int value) { + this.antragsstatus = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisSchadenType.java new file mode 100644 index 00000000..460f98bf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisSchadenType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ereignis in einem Geschäftsprozess vom Typ Schaden + * + *

Java-Klasse für GeschaeftsfallEreignisSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaeftsfallEreignisSchaden_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallEreignis_Type">
+ *       <sequence>
+ *         <element name="BisherigerBearbStandCd" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
+ *         <element name="BearbStandCd" type="{urn:omds20}BearbStandCd_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaeftsfallEreignisSchaden_Type", propOrder = { + "bisherigerBearbStandCd", + "bearbStandCd" +}) +public class GeschaeftsfallEreignisSchadenType + extends GeschaeftsfallEreignisType +{ + + @XmlElement(name = "BisherigerBearbStandCd") + protected String bisherigerBearbStandCd; + @XmlElement(name = "BearbStandCd", required = true) + protected String bearbStandCd; + + /** + * Ruft den Wert der bisherigerBearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBisherigerBearbStandCd() { + return bisherigerBearbStandCd; + } + + /** + * Legt den Wert der bisherigerBearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBisherigerBearbStandCd(String value) { + this.bisherigerBearbStandCd = value; + } + + /** + * Ruft den Wert der bearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStandCd() { + return bearbStandCd; + } + + /** + * Legt den Wert der bearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStandCd(String value) { + this.bearbStandCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisType.java new file mode 100644 index 00000000..7aaf4a96 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallEreignisType.java @@ -0,0 +1,779 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ArtAenderungType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.GeschaeftsobjektArtType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Ereignis in einem Geschäftsprozess, z.B. der Abschluss eines Arbeitsschritts im Prozess + * + *

Java-Klasse für GeschaeftsfallEreignis_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaeftsfallEreignis_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
+ *       <sequence>
+ *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type"/>
+ *         <element name="Zeitpunkt" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="Txt" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="255"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallStatus_Type" minOccurs="0"/>
+ *         <element name="Status" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}GeschaeftsfallStatus_Type"/>
+ *         <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Objekt" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
+ *                   <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *                   <element name="ArtAenderung" type="{urn:omds3CommonServiceTypes-1-1-0}ArtAenderung_Type"/>
+ *                   <element name="GueltigAb" type="{urn:omds20}Datum"/>
+ *                   <element name="BisherigerStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *                   <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
+ *                     <complexType>
+ *                       <complexContent>
+ *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                           <sequence>
+ *                             <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                             <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+ *                           </sequence>
+ *                         </restriction>
+ *                       </complexContent>
+ *                     </complexType>
+ *                   </element>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaeftsfallEreignis_Type", propOrder = { + "id", + "vermnr", + "geschaeftsfallnummer", + "geschaeftsfallArt", + "zeitpunkt", + "txt", + "bisherigerStatus", + "status", + "dokument", + "objekt" +}) +@XmlSeeAlso({ + GeschaeftsfallEreignisAntragType.class, + GeschaeftsfallEreignisSchadenType.class +}) +public class GeschaeftsfallEreignisType + extends AbstractStateChangeEventType +{ + + @XmlElement(name = "Id") + protected String id; + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + @XmlElement(name = "Geschaeftsfallnummer", required = true) + protected ObjektIdType geschaeftsfallnummer; + @XmlElement(name = "GeschaeftsfallArt", required = true) + protected String geschaeftsfallArt; + @XmlElement(name = "Zeitpunkt", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar zeitpunkt; + @XmlElement(name = "Txt") + protected String txt; + @XmlElement(name = "BisherigerStatus") + @XmlSchemaType(name = "string") + protected GeschaeftsfallStatusType bisherigerStatus; + @XmlElement(name = "Status", required = true) + @XmlSchemaType(name = "string") + protected GeschaeftsfallStatusType status; + @XmlElement(name = "Dokument") + protected List dokument; + @XmlElement(name = "Objekt") + protected List objekt; + + /** + * 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 vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + + /** + * 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; + } + + /** + * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeschaeftsfallArt() { + return geschaeftsfallArt; + } + + /** + * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeschaeftsfallArt(String value) { + this.geschaeftsfallArt = value; + } + + /** + * Ruft den Wert der zeitpunkt-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getZeitpunkt() { + return zeitpunkt; + } + + /** + * Legt den Wert der zeitpunkt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setZeitpunkt(XMLGregorianCalendar value) { + this.zeitpunkt = value; + } + + /** + * Ruft den Wert der txt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTxt() { + return txt; + } + + /** + * Legt den Wert der txt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTxt(String value) { + this.txt = value; + } + + /** + * Ruft den Wert der bisherigerStatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeschaeftsfallStatusType } + * + */ + public GeschaeftsfallStatusType getBisherigerStatus() { + return bisherigerStatus; + } + + /** + * Legt den Wert der bisherigerStatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeschaeftsfallStatusType } + * + */ + public void setBisherigerStatus(GeschaeftsfallStatusType value) { + this.bisherigerStatus = value; + } + + /** + * Ruft den Wert der status-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeschaeftsfallStatusType } + * + */ + public GeschaeftsfallStatusType getStatus() { + return status; + } + + /** + * Legt den Wert der status-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeschaeftsfallStatusType } + * + */ + public void setStatus(GeschaeftsfallStatusType value) { + this.status = value; + } + + /** + * Gets the value of the dokument property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokument property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokument().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GeschaeftsfallEreignisType.Dokument } + * + * + */ + public List getDokument() { + if (dokument == null) { + dokument = new ArrayList(); + } + return this.dokument; + } + + /** + * Gets the value of the objekt property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the objekt property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getObjekt().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GeschaeftsfallEreignisType.Objekt } + * + * + */ + public List getObjekt() { + if (objekt == null) { + objekt = new ArrayList(); + } + return this.objekt; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "dokumentId", + "typ" + }) + public static class Dokument { + + @XmlElement(name = "DokumentId", required = true) + protected String dokumentId; + @XmlElement(name = "Typ") + protected int typ; + + /** + * Ruft den Wert der dokumentId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumentId() { + return dokumentId; + } + + /** + * Legt den Wert der dokumentId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumentId(String value) { + this.dokumentId = value; + } + + /** + * Ruft den Wert der typ-Eigenschaft ab. + * + */ + public int getTyp() { + return typ; + } + + /** + * Legt den Wert der typ-Eigenschaft fest. + * + */ + public void setTyp(int value) { + this.typ = value; + } + + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
+     *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+     *         <element name="ArtAenderung" type="{urn:omds3CommonServiceTypes-1-1-0}ArtAenderung_Type"/>
+     *         <element name="GueltigAb" type="{urn:omds20}Datum"/>
+     *         <element name="BisherigerStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+     *         <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="Dokument" maxOccurs="unbounded" minOccurs="0">
+     *           <complexType>
+     *             <complexContent>
+     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *                 <sequence>
+     *                   <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *                   <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+     *                 </sequence>
+     *               </restriction>
+     *             </complexContent>
+     *           </complexType>
+     *         </element>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "objektart", + "objektId", + "artAenderung", + "gueltigAb", + "bisherigerStatus", + "status", + "dokument" + }) + public static class Objekt { + + @XmlElement(name = "Objektart", required = true) + @XmlSchemaType(name = "string") + protected GeschaeftsobjektArtType objektart; + @XmlElement(name = "ObjektId", required = true) + protected ObjektIdType objektId; + @XmlElement(name = "ArtAenderung", required = true) + @XmlSchemaType(name = "string") + protected ArtAenderungType artAenderung; + @XmlElement(name = "GueltigAb", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar gueltigAb; + @XmlElement(name = "BisherigerStatus") + protected String bisherigerStatus; + @XmlElement(name = "Status", required = true) + protected String status; + @XmlElement(name = "Dokument") + protected List dokument; + + /** + * Ruft den Wert der objektart-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeschaeftsobjektArtType } + * + */ + public GeschaeftsobjektArtType getObjektart() { + return objektart; + } + + /** + * Legt den Wert der objektart-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeschaeftsobjektArtType } + * + */ + public void setObjektart(GeschaeftsobjektArtType value) { + this.objektart = value; + } + + /** + * 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 artAenderung-Eigenschaft ab. + * + * @return + * possible object is + * {@link ArtAenderungType } + * + */ + public ArtAenderungType getArtAenderung() { + return artAenderung; + } + + /** + * Legt den Wert der artAenderung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ArtAenderungType } + * + */ + public void setArtAenderung(ArtAenderungType value) { + this.artAenderung = value; + } + + /** + * Ruft den Wert der gueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigAb() { + return gueltigAb; + } + + /** + * Legt den Wert der gueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigAb(XMLGregorianCalendar value) { + this.gueltigAb = value; + } + + /** + * Ruft den Wert der bisherigerStatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBisherigerStatus() { + return bisherigerStatus; + } + + /** + * Legt den Wert der bisherigerStatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBisherigerStatus(String value) { + this.bisherigerStatus = value; + } + + /** + * Ruft den Wert der status-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Legt den Wert der status-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the dokument property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokument property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getDokument().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GeschaeftsfallEreignisType.Objekt.Dokument } + * + * + */ + public List getDokument() { + if (dokument == null) { + dokument = new ArrayList(); + } + return this.dokument; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+         * <complexType>
+         *   <complexContent>
+         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+         *       <sequence>
+         *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+         *         <element name="Typ" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
+         *       </sequence>
+         *     </restriction>
+         *   </complexContent>
+         * </complexType>
+         * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "dokumentId", + "typ" + }) + public static class Dokument { + + @XmlElement(name = "DokumentId", required = true) + protected String dokumentId; + @XmlElement(name = "Typ") + protected int typ; + + /** + * Ruft den Wert der dokumentId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumentId() { + return dokumentId; + } + + /** + * Legt den Wert der dokumentId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumentId(String value) { + this.dokumentId = value; + } + + /** + * Ruft den Wert der typ-Eigenschaft ab. + * + */ + public int getTyp() { + return typ; + } + + /** + * Legt den Wert der typ-Eigenschaft fest. + * + */ + public void setTyp(int value) { + this.typ = value; + } + + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallStatusType.java similarity index 86% rename from OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallStatusType.java rename to OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallStatusType.java index 1b6dc1b4..ceebefd5 100644 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_10_0/on1basis/GeschaeftsfallStatusType.java +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GeschaeftsfallStatusType.java @@ -1,10 +1,9 @@ -package at.vvo.omds.types.omds3Types.r1_10_0.on1basis; +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; /** @@ -27,7 +26,6 @@ import javax.xml.bind.annotation.XmlType; */ @XmlType(name = "GeschaeftsfallStatus_Type") @XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-12-20T17:38:49+01:00") public enum GeschaeftsfallStatusType { diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectRequestType.java new file mode 100644 index 00000000..6ce9cfd4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectRequestType.java @@ -0,0 +1,272 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektSpezifikationType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZeitraumType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt + * + *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetDocumentsOfObjectRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
+ *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
+ *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
+ *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="OrderBy" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="Erstellungsdatum aufsteigend"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { + "vuNr", + "authFilter", + "objektSpezifikation", + "zeitraum", + "dokumentType", + "maxResults", + "offset", + "orderBy" +}) +public class GetDocumentsOfObjectRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "ObjektSpezifikation", required = true) + protected ObjektSpezifikationType objektSpezifikation; + @XmlElement(name = "Zeitraum") + protected ZeitraumType zeitraum; + @XmlElement(name = "DokumentType") + protected Integer dokumentType; + @XmlElement(name = "MaxResults") + @XmlSchemaType(name = "unsignedShort") + protected Integer maxResults; + @XmlElement(name = "Offset") + @XmlSchemaType(name = "unsignedShort") + protected Integer offset; + @XmlElement(name = "OrderBy") + protected String orderBy; + + /** + * 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 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 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; + } + + /** + * Ruft den Wert der zeitraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZeitraumType } + * + */ + public ZeitraumType getZeitraum() { + return zeitraum; + } + + /** + * Legt den Wert der zeitraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZeitraumType } + * + */ + public void setZeitraum(ZeitraumType value) { + this.zeitraum = value; + } + + /** + * Ruft den Wert der dokumentType-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDokumentType() { + return dokumentType; + } + + /** + * Legt den Wert der dokumentType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDokumentType(Integer value) { + this.dokumentType = value; + } + + /** + * Ruft den Wert der maxResults-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxResults() { + return maxResults; + } + + /** + * Legt den Wert der maxResults-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxResults(Integer value) { + this.maxResults = value; + } + + /** + * Ruft den Wert der offset-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOffset() { + return offset; + } + + /** + * Legt den Wert der offset-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOffset(Integer 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectResponseType.java new file mode 100644 index 00000000..e7980a98 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfObjectResponseType.java @@ -0,0 +1,100 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. + * + *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetDocumentsOfObjectResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { + "result", + "serviceFault" +}) +public class GetDocumentsOfObjectResponseType { + + @XmlElement(name = "Result") + protected DocumentInfosResponseResultType result; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Ruft den Wert der result-Eigenschaft ab. + * + * @return + * possible object is + * {@link DocumentInfosResponseResultType } + * + */ + public DocumentInfosResponseResultType getResult() { + return result; + } + + /** + * Legt den Wert der result-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DocumentInfosResponseResultType } + * + */ + public void setResult(DocumentInfosResponseResultType value) { + this.result = value; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodRequestType.java new file mode 100644 index 00000000..a1896c1e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodRequestType.java @@ -0,0 +1,272 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektSpezifikationType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZeitraumType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums + * + *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetDocumentsOfPeriodRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
+ *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
+ *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
+ *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="OrderBy" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="Erstellungsdatum aufsteigend"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { + "vuNr", + "authFilter", + "objektSpezifikation", + "zeitraum", + "dokumentType", + "maxResults", + "offset", + "orderBy" +}) +public class GetDocumentsOfPeriodRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "ObjektSpezifikation") + protected ObjektSpezifikationType objektSpezifikation; + @XmlElement(name = "Zeitraum", required = true) + protected ZeitraumType zeitraum; + @XmlElement(name = "DokumentType") + protected Integer dokumentType; + @XmlElement(name = "MaxResults") + @XmlSchemaType(name = "unsignedShort") + protected Integer maxResults; + @XmlElement(name = "Offset") + @XmlSchemaType(name = "unsignedShort") + protected Integer offset; + @XmlElement(name = "OrderBy") + protected String orderBy; + + /** + * 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 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 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; + } + + /** + * Ruft den Wert der zeitraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZeitraumType } + * + */ + public ZeitraumType getZeitraum() { + return zeitraum; + } + + /** + * Legt den Wert der zeitraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZeitraumType } + * + */ + public void setZeitraum(ZeitraumType value) { + this.zeitraum = value; + } + + /** + * Ruft den Wert der dokumentType-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDokumentType() { + return dokumentType; + } + + /** + * Legt den Wert der dokumentType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDokumentType(Integer value) { + this.dokumentType = value; + } + + /** + * Ruft den Wert der maxResults-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxResults() { + return maxResults; + } + + /** + * Legt den Wert der maxResults-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxResults(Integer value) { + this.maxResults = value; + } + + /** + * Ruft den Wert der offset-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOffset() { + return offset; + } + + /** + * Legt den Wert der offset-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOffset(Integer 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodResponseType.java new file mode 100644 index 00000000..855389b1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetDocumentsOfPeriodResponseType.java @@ -0,0 +1,100 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Informationen zu den Dokumenten eines Zeitraums + * + *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetDocumentsOfPeriodResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { + "result", + "serviceFault" +}) +public class GetDocumentsOfPeriodResponseType { + + @XmlElement(name = "Result") + protected DocumentInfosResponseResultType result; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Ruft den Wert der result-Eigenschaft ab. + * + * @return + * possible object is + * {@link DocumentInfosResponseResultType } + * + */ + public DocumentInfosResponseResultType getResult() { + return result; + } + + /** + * Legt den Wert der result-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DocumentInfosResponseResultType } + * + */ + public void setResult(DocumentInfosResponseResultType value) { + this.result = value; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsRequestType.java new file mode 100644 index 00000000..baaab0aa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsRequestType.java @@ -0,0 +1,179 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektSpezifikationType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZeitraumType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten + * + *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetNumberOfDocumentsRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
+ *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
+ *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { + "vuNr", + "authFilter", + "objektSpezifikation", + "zeitraum", + "dokumentType" +}) +public class GetNumberOfDocumentsRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "ObjektSpezifikation", required = true) + protected ObjektSpezifikationType objektSpezifikation; + @XmlElement(name = "Zeitraum") + protected ZeitraumType zeitraum; + @XmlElement(name = "DokumentType") + protected Integer dokumentType; + + /** + * 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 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 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; + } + + /** + * Ruft den Wert der zeitraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZeitraumType } + * + */ + public ZeitraumType getZeitraum() { + return zeitraum; + } + + /** + * Legt den Wert der zeitraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZeitraumType } + * + */ + public void setZeitraum(ZeitraumType value) { + this.zeitraum = value; + } + + /** + * Ruft den Wert der dokumentType-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDokumentType() { + return dokumentType; + } + + /** + * Legt den Wert der dokumentType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDokumentType(Integer value) { + this.dokumentType = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsResponseType.java new file mode 100644 index 00000000..758ddd18 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetNumberOfDocumentsResponseType.java @@ -0,0 +1,96 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.math.BigInteger; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts + * + *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetNumberOfDocumentsResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { + "anzDokumente", + "serviceFault" +}) +public class GetNumberOfDocumentsResponseType { + + @XmlElement(name = "AnzDokumente") + @XmlSchemaType(name = "nonNegativeInteger") + protected BigInteger anzDokumente; + @XmlElement(name = "ServiceFault") + protected ServiceFault serviceFault; + + /** + * Ruft den Wert der anzDokumente-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getAnzDokumente() { + return anzDokumente; + } + + /** + * Legt den Wert der anzDokumente-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setAnzDokumente(BigInteger value) { + this.anzDokumente = value; + } + + /** + * Ruft den Wert der serviceFault-Eigenschaft ab. + * + * @return + * possible object is + * {@link ServiceFault } + * + */ + public ServiceFault getServiceFault() { + return serviceFault; + } + + /** + * Legt den Wert der serviceFault-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ServiceFault } + * + */ + public void setServiceFault(ServiceFault value) { + this.serviceFault = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesRequestType.java new file mode 100644 index 00000000..1e925c9a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesRequestType.java @@ -0,0 +1,70 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonSearchRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.GeschaeftsobjektArtType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjektes um Geschäftsfalle abzuholen + * + *

Java-Klasse für GetStateChangesRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetStateChangesRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
+ *       <sequence>
+ *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetStateChangesRequest_Type", propOrder = { + "geschaeftsobjektArt" +}) +public class GetStateChangesRequestType + extends CommonSearchRequestType +{ + + @XmlElement(name = "GeschaeftsobjektArt") + @XmlSchemaType(name = "string") + protected GeschaeftsobjektArtType geschaeftsobjektArt; + + /** + * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeschaeftsobjektArtType } + * + */ + public GeschaeftsobjektArtType getGeschaeftsobjektArt() { + return geschaeftsobjektArt; + } + + /** + * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeschaeftsobjektArtType } + * + */ + public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { + this.geschaeftsobjektArt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesResponseType.java new file mode 100644 index 00000000..0b30620a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/GetStateChangesResponseType.java @@ -0,0 +1,74 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonSearchResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjektes um Geschäftsfalle abzuholen + * + *

Java-Klasse für GetStateChangesResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetStateChangesResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
+ *       <sequence>
+ *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetStateChangesResponse_Type", propOrder = { + "event" +}) +public class GetStateChangesResponseType + extends CommonSearchResponseType +{ + + @XmlElement(name = "Event") + protected List event; + + /** + * Gets the value of the event property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the event property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEvent().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AbstractStateChangeEventType } + * + * + */ + public List getEvent() { + if (event == null) { + event = new ArrayList(); + } + return this.event; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/ObjectFactory.java new file mode 100644 index 00000000..137f7b80 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/ObjectFactory.java @@ -0,0 +1,343 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on1basis package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); + private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); + private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); + private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); + private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); + private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); + private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); + private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); + private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest"); + private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on1basis + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisType } + * + */ + public GeschaeftsfallEreignisType createGeschaeftsfallEreignisType() { + return new GeschaeftsfallEreignisType(); + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisType.Objekt } + * + */ + public GeschaeftsfallEreignisType.Objekt createGeschaeftsfallEreignisTypeObjekt() { + return new GeschaeftsfallEreignisType.Objekt(); + } + + /** + * Create an instance of {@link AddDocToBusinessCaseRequestType } + * + */ + public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { + return new AddDocToBusinessCaseRequestType(); + } + + /** + * Create an instance of {@link AddDocToBusinessCaseResponseType } + * + */ + public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { + return new AddDocToBusinessCaseResponseType(); + } + + /** + * Create an instance of {@link GetNumberOfDocumentsRequestType } + * + */ + public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { + return new GetNumberOfDocumentsRequestType(); + } + + /** + * Create an instance of {@link GetNumberOfDocumentsResponseType } + * + */ + public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { + return new GetNumberOfDocumentsResponseType(); + } + + /** + * Create an instance of {@link GetDocumentsOfObjectRequestType } + * + */ + public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { + return new GetDocumentsOfObjectRequestType(); + } + + /** + * Create an instance of {@link GetDocumentsOfObjectResponseType } + * + */ + public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { + return new GetDocumentsOfObjectResponseType(); + } + + /** + * Create an instance of {@link GetDocumentsOfPeriodRequestType } + * + */ + public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { + return new GetDocumentsOfPeriodRequestType(); + } + + /** + * Create an instance of {@link GetDocumentsOfPeriodResponseType } + * + */ + public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { + return new GetDocumentsOfPeriodResponseType(); + } + + /** + * Create an instance of {@link AcknowledgeDocumentsRequest } + * + */ + public AcknowledgeDocumentsRequest createAcknowledgeDocumentsRequest() { + return new AcknowledgeDocumentsRequest(); + } + + /** + * Create an instance of {@link AcknowledgeDocumentsResponse } + * + */ + public AcknowledgeDocumentsResponse createAcknowledgeDocumentsResponse() { + return new AcknowledgeDocumentsResponse(); + } + + /** + * Create an instance of {@link GetStateChangesRequestType } + * + */ + public GetStateChangesRequestType createGetStateChangesRequestType() { + return new GetStateChangesRequestType(); + } + + /** + * Create an instance of {@link GetStateChangesResponseType } + * + */ + public GetStateChangesResponseType createGetStateChangesResponseType() { + return new GetStateChangesResponseType(); + } + + /** + * Create an instance of {@link DocumentInfosResponseResultType } + * + */ + public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { + return new DocumentInfosResponseResultType(); + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisAntragType } + * + */ + public GeschaeftsfallEreignisAntragType createGeschaeftsfallEreignisAntragType() { + return new GeschaeftsfallEreignisAntragType(); + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisSchadenType } + * + */ + public GeschaeftsfallEreignisSchadenType createGeschaeftsfallEreignisSchadenType() { + return new GeschaeftsfallEreignisSchadenType(); + } + + /** + * Create an instance of {@link StateChangeEventType } + * + */ + public StateChangeEventType createStateChangeEventType() { + return new StateChangeEventType(); + } + + /** + * Create an instance of {@link StatusAntragsGeschaeftsfall } + * + */ + public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { + return new StatusAntragsGeschaeftsfall(); + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisType.Dokument } + * + */ + public GeschaeftsfallEreignisType.Dokument createGeschaeftsfallEreignisTypeDokument() { + return new GeschaeftsfallEreignisType.Dokument(); + } + + /** + * Create an instance of {@link GeschaeftsfallEreignisType.Objekt.Dokument } + * + */ + public GeschaeftsfallEreignisType.Objekt.Dokument createGeschaeftsfallEreignisTypeObjektDokument() { + return new GeschaeftsfallEreignisType.Objekt.Dokument(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") + public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { + return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") + public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { + return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") + public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { + return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") + public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { + return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") + public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { + return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") + public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { + return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") + public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { + return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") + public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { + return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest") + public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { + return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse") + public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { + return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StateChangeEventType.java new file mode 100644 index 00000000..5864ea52 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StateChangeEventType.java @@ -0,0 +1,269 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.GeschaeftsobjektArtType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Deprecated: Verwende statt dessen GeschaeftsfallEreignis_Type + * + *

Java-Klasse für StateChangeEvent_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="StateChangeEvent_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
+ *       <sequence>
+ *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
+ *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
+ *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
+ *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StateChangeEvent_Type", propOrder = { + "objektart", + "objektId", + "geschaeftsfallnummer", + "geschaeftsfallArt", + "aenderungsdatum", + "statusGueltigAbDatum", + "bisherigerStatus", + "neuerStatus" +}) +public class StateChangeEventType + extends AbstractStateChangeEventType +{ + + @XmlElement(name = "Objektart", required = true) + @XmlSchemaType(name = "string") + protected GeschaeftsobjektArtType objektart; + @XmlElement(name = "ObjektId", required = true) + protected ObjektIdType objektId; + @XmlElement(name = "Geschaeftsfallnummer") + protected ObjektIdType geschaeftsfallnummer; + @XmlElement(name = "GeschaeftsfallArt") + protected String geschaeftsfallArt; + @XmlElement(name = "Aenderungsdatum", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar aenderungsdatum; + @XmlElement(name = "StatusGueltigAbDatum", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar statusGueltigAbDatum; + @XmlElement(name = "BisherigerStatus") + protected AbstractStatusGeschaeftsfallType bisherigerStatus; + @XmlElement(name = "NeuerStatus", required = true) + protected AbstractStatusGeschaeftsfallType neuerStatus; + + /** + * Ruft den Wert der objektart-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeschaeftsobjektArtType } + * + */ + public GeschaeftsobjektArtType getObjektart() { + return objektart; + } + + /** + * Legt den Wert der objektart-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeschaeftsobjektArtType } + * + */ + public void setObjektart(GeschaeftsobjektArtType value) { + this.objektart = value; + } + + /** + * 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 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; + } + + /** + * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeschaeftsfallArt() { + return geschaeftsfallArt; + } + + /** + * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeschaeftsfallArt(String value) { + this.geschaeftsfallArt = value; + } + + /** + * Ruft den Wert der aenderungsdatum-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getAenderungsdatum() { + return aenderungsdatum; + } + + /** + * Legt den Wert der aenderungsdatum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setAenderungsdatum(XMLGregorianCalendar value) { + this.aenderungsdatum = value; + } + + /** + * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStatusGueltigAbDatum() { + return statusGueltigAbDatum; + } + + /** + * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { + this.statusGueltigAbDatum = value; + } + + /** + * Ruft den Wert der bisherigerStatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link AbstractStatusGeschaeftsfallType } + * + */ + public AbstractStatusGeschaeftsfallType getBisherigerStatus() { + return bisherigerStatus; + } + + /** + * Legt den Wert der bisherigerStatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AbstractStatusGeschaeftsfallType } + * + */ + public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { + this.bisherigerStatus = value; + } + + /** + * Ruft den Wert der neuerStatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link AbstractStatusGeschaeftsfallType } + * + */ + public AbstractStatusGeschaeftsfallType getNeuerStatus() { + return neuerStatus; + } + + /** + * Legt den Wert der neuerStatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AbstractStatusGeschaeftsfallType } + * + */ + public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { + this.neuerStatus = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StatusAntragsGeschaeftsfall.java new file mode 100644 index 00000000..fdd0bd8d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/StatusAntragsGeschaeftsfall.java @@ -0,0 +1,58 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Deprecated: Status eines Antrags + * + *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="StatusAntragsGeschaeftsfall">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
+ *       <sequence>
+ *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { + "antragstatus" +}) +public class StatusAntragsGeschaeftsfall + extends AbstractStatusGeschaeftsfallType +{ + + @XmlElement(name = "Antragstatus") + protected int antragstatus; + + /** + * Ruft den Wert der antragstatus-Eigenschaft ab. + * + */ + public int getAntragstatus() { + return antragstatus; + } + + /** + * Legt den Wert der antragstatus-Eigenschaft fest. + * + */ + public void setAntragstatus(int value) { + this.antragstatus = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/package-info.java new file mode 100644 index 00000000..42ba6fa4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on1basis/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessRequestType.java new file mode 100644 index 00000000..6f6e4c62 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessRequestType.java @@ -0,0 +1,110 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonProcessRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ErsatzpolizzeType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes Zwischenelement für alle BOA-Request-Types + * + *

Java-Klasse für BOAProcessRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BOAProcessRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
+ *       <sequence>
+ *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
+ *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BOAProcessRequest_Type", propOrder = { + "aenderungsgrund", + "ersatzpolizzen" +}) +@XmlSeeAlso({ + SubmitApplicationRequestType.class, + CreateApplicationRequestType.class, + CreateOfferRequestType.class, + CalculateRequestType.class +}) +public class BOAProcessRequestType + extends CommonProcessRequestType +{ + + @XmlElement(name = "Aenderungsgrund") + protected String aenderungsgrund; + @XmlElement(name = "Ersatzpolizzen") + protected List ersatzpolizzen; + + /** + * Ruft den Wert der aenderungsgrund-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAenderungsgrund() { + return aenderungsgrund; + } + + /** + * Legt den Wert der aenderungsgrund-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAenderungsgrund(String value) { + this.aenderungsgrund = value; + } + + /** + * Gets the value of the ersatzpolizzen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the ersatzpolizzen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getErsatzpolizzen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ErsatzpolizzeType } + * + * + */ + public List getErsatzpolizzen() { + if (ersatzpolizzen == null) { + ersatzpolizzen = new ArrayList(); + } + return this.ersatzpolizzen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessResponseType.java new file mode 100644 index 00000000..496d3df5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/BOAProcessResponseType.java @@ -0,0 +1,110 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonProcessResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ErsatzpolizzeType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes Zwischenelement für alle BOA-Response-Types + * + *

Java-Klasse für BOAProcessResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BOAProcessResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
+ *       <sequence>
+ *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
+ *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BOAProcessResponse_Type", propOrder = { + "aenderungsgrund", + "ersatzpolizzen" +}) +@XmlSeeAlso({ + SubmitApplicationResponseType.class, + CreateApplicationResponseType.class, + CreateOfferResponseType.class, + CalculateResponseType.class +}) +public class BOAProcessResponseType + extends CommonProcessResponseType +{ + + @XmlElement(name = "Aenderungsgrund") + protected String aenderungsgrund; + @XmlElement(name = "Ersatzpolizzen") + protected List ersatzpolizzen; + + /** + * Ruft den Wert der aenderungsgrund-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAenderungsgrund() { + return aenderungsgrund; + } + + /** + * Legt den Wert der aenderungsgrund-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAenderungsgrund(String value) { + this.aenderungsgrund = value; + } + + /** + * Gets the value of the ersatzpolizzen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the ersatzpolizzen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getErsatzpolizzen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ErsatzpolizzeType } + * + * + */ + public List getErsatzpolizzen() { + if (ersatzpolizzen == null) { + ersatzpolizzen = new ArrayList(); + } + return this.ersatzpolizzen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestGenType.java new file mode 100644 index 00000000..26fe171f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestGenType.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für die Berechnung mit generischen Produktbausteinen + * + *

Java-Klasse für CalculateRequestGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateRequestGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
+ *       <sequence>
+ *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateRequestGen_Type", propOrder = { + "produktmetadaten" +}) +@XmlSeeAlso({ + CalculateSachPrivatRequestType.class, + CalculateUnfallRequestType.class, + CalculateLebenRequestType.class, + CalculateKrankenRequest.class +}) +public abstract class CalculateRequestGenType + extends CalculateRequestType +{ + + @XmlElement(name = "Produktmetadaten") + protected boolean produktmetadaten; + + /** + * Ruft den Wert der produktmetadaten-Eigenschaft ab. + * + */ + public boolean isProduktmetadaten() { + return produktmetadaten; + } + + /** + * Legt den Wert der produktmetadaten-Eigenschaft fest. + * + */ + public void setProduktmetadaten(boolean value) { + this.produktmetadaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestType.java new file mode 100644 index 00000000..ed0274cf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateRequestType.java @@ -0,0 +1,72 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für die Berechnung + * + *

Java-Klasse für CalculateRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
+ *       <sequence>
+ *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateRequest_Type", propOrder = { + "requestUpselling" +}) +@XmlSeeAlso({ + CalculateKfzRequestType.class, + CalculateRequestGenType.class +}) +public abstract class CalculateRequestType + extends BOAProcessRequestType +{ + + @XmlElement(name = "RequestUpselling", defaultValue = "false") + protected Boolean requestUpselling; + + /** + * Ruft den Wert der requestUpselling-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isRequestUpselling() { + return requestUpselling; + } + + /** + * Legt den Wert der requestUpselling-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRequestUpselling(Boolean value) { + this.requestUpselling = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseGenType.java new file mode 100644 index 00000000..eea8e237 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseGenType.java @@ -0,0 +1,45 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response Berechnung + * + *

Java-Klasse für CalculateResponseGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateResponseGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateResponseGen_Type") +@XmlSeeAlso({ + CalculateSachPrivatResponseType.class, + CalculateUnfallResponseType.class, + CalculateLebenResponseType.class, + CalculateKrankenResponse.class +}) +public abstract class CalculateResponseGenType + extends CalculateResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseType.java new file mode 100644 index 00000000..308e2f8c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CalculateResponseType.java @@ -0,0 +1,40 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen + * + *

Java-Klasse für CalculateResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateResponse_Type") +@XmlSeeAlso({ + CalculateKfzResponseType.class, + CalculateResponseGenType.class +}) +public abstract class CalculateResponseType + extends BOAProcessResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalRequest.java new file mode 100644 index 00000000..08b8a1b0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalRequest.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Konvertierungsplan" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "konvertierungsplan" +}) +@XmlRootElement(name = "ConversionProposalRequest") +public class ConversionProposalRequest + extends CommonRequestType +{ + + @XmlElement(name = "Konvertierungsplan", required = true) + protected KonvertierungsumfangType konvertierungsplan; + + /** + * Ruft den Wert der konvertierungsplan-Eigenschaft ab. + * + * @return + * possible object is + * {@link KonvertierungsumfangType } + * + */ + public KonvertierungsumfangType getKonvertierungsplan() { + return konvertierungsplan; + } + + /** + * Legt den Wert der konvertierungsplan-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KonvertierungsumfangType } + * + */ + public void setKonvertierungsplan(KonvertierungsumfangType value) { + this.konvertierungsplan = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalResponse.java new file mode 100644 index 00000000..3f247179 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionProposalResponse.java @@ -0,0 +1,137 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ErsatzpolizzeType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokHandoutType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Vorschlag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/>
+ *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Ersatzpolizze" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "vorschlag", + "dokument", + "ersatzpolizze" +}) +@XmlRootElement(name = "ConversionProposalResponse") +public class ConversionProposalResponse + extends CommonResponseType +{ + + @XmlElement(name = "Vorschlag") + protected SpezAntragType vorschlag; + @XmlElement(name = "Dokument") + protected List dokument; + @XmlElement(name = "Ersatzpolizze") + protected List ersatzpolizze; + + /** + * Ruft den Wert der vorschlag-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragType } + * + */ + public SpezAntragType getVorschlag() { + return vorschlag; + } + + /** + * Legt den Wert der vorschlag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragType } + * + */ + public void setVorschlag(SpezAntragType value) { + this.vorschlag = value; + } + + /** + * Gets the value of the dokument property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokument property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokument().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokHandoutType } + * + * + */ + public List getDokument() { + if (dokument == null) { + dokument = new ArrayList(); + } + return this.dokument; + } + + /** + * Gets the value of the ersatzpolizze property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the ersatzpolizze property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getErsatzpolizze().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ErsatzpolizzeType } + * + * + */ + public List getErsatzpolizze() { + if (ersatzpolizze == null) { + ersatzpolizze = new ArrayList(); + } + return this.ersatzpolizze; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeRequest.java new file mode 100644 index 00000000..e5cdbd96 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeRequest.java @@ -0,0 +1,75 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ErsatzpolizzeType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "vertraege" +}) +@XmlRootElement(name = "ConversionScopeRequest") +public class ConversionScopeRequest + extends CommonRequestType +{ + + @XmlElement(name = "Vertrag", required = true) + protected List vertraege; + + /** + *

Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

Gets the value of the vertraege property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertraege property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVertraege().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ErsatzpolizzeType } + * + * + */ + public List getVertraege() { + if (vertraege == null) { + vertraege = new ArrayList(); + } + return this.vertraege; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeResponse.java new file mode 100644 index 00000000..4f3d5b58 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ConversionScopeResponse.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Konvertierungsmoeglichkeit" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "konvertierungsmoeglichkeit" +}) +@XmlRootElement(name = "ConversionScopeResponse") +public class ConversionScopeResponse + extends CommonResponseType +{ + + @XmlElement(name = "Konvertierungsmoeglichkeit", required = true) + protected KonvertierungsumfangType konvertierungsmoeglichkeit; + + /** + * Ruft den Wert der konvertierungsmoeglichkeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link KonvertierungsumfangType } + * + */ + public KonvertierungsumfangType getKonvertierungsmoeglichkeit() { + return konvertierungsmoeglichkeit; + } + + /** + * Legt den Wert der konvertierungsmoeglichkeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KonvertierungsumfangType } + * + */ + public void setKonvertierungsmoeglichkeit(KonvertierungsumfangType value) { + this.konvertierungsmoeglichkeit = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestGenType.java new file mode 100644 index 00000000..f91d88ae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestGenType.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen + * + *

Java-Klasse für CreateApplicationRequestGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationRequestGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
+ *       <sequence>
+ *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { + "produktmetadaten" +}) +@XmlSeeAlso({ + CreateApplicationSachPrivatRequestType.class, + CreateApplicationUnfallRequestType.class, + CreateApplicationLebenRequestType.class, + CreateApplicationKrankenRequest.class +}) +public abstract class CreateApplicationRequestGenType + extends CreateApplicationRequestType +{ + + @XmlElement(name = "Produktmetadaten") + protected boolean produktmetadaten; + + /** + * Ruft den Wert der produktmetadaten-Eigenschaft ab. + * + */ + public boolean isProduktmetadaten() { + return produktmetadaten; + } + + /** + * Legt den Wert der produktmetadaten-Eigenschaft fest. + * + */ + public void setProduktmetadaten(boolean value) { + this.produktmetadaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestType.java new file mode 100644 index 00000000..f0b97480 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationRequestType.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DateianhangType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für den Antrag + * + *

Java-Klasse für CreateApplicationRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
+ *       <sequence>
+ *         <element name="DokAnfordVermittler" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokRequest_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationRequest_Type", propOrder = { + "dokumentenAnforderungenVermittler", + "dateianhaenge", + "dokumente" +}) +@XmlSeeAlso({ + CreateApplicationKfzRequestType.class, + CreateApplicationRequestGenType.class +}) +public abstract class CreateApplicationRequestType + extends BOAProcessRequestType +{ + + @XmlElement(name = "DokAnfordVermittler") + protected List dokumentenAnforderungenVermittler; + @XmlElement(name = "Dateianhaenge") + protected List dateianhaenge; + @XmlElement(name = "Dokumente") + protected List dokumente; + + /** + *

Die Dokumente, welche der Vermittler für den Response anfordert.

Gets the value of the dokumentenAnforderungenVermittler property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumentenAnforderungenVermittler property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumentenAnforderungenVermittler().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokRequestType } + * + * + */ + public List getDokumentenAnforderungenVermittler() { + if (dokumentenAnforderungenVermittler == null) { + dokumentenAnforderungenVermittler = new ArrayList(); + } + return this.dokumentenAnforderungenVermittler; + } + + /** + * Gets the value of the dateianhaenge property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dateianhaenge property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDateianhaenge().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DateianhangType } + * + * + */ + public List getDateianhaenge() { + if (dateianhaenge == null) { + dateianhaenge = new ArrayList(); + } + return this.dateianhaenge; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseGenType.java new file mode 100644 index 00000000..f595679a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseGenType.java @@ -0,0 +1,45 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response der Antragserzeugung + * + *

Java-Klasse für CreateApplicationResponseGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationResponseGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationResponseGen_Type") +@XmlSeeAlso({ + CreateApplicationSachPrivatResponseType.class, + CreateApplicationUnfallResponseType.class, + CreateApplicationLebenResponseType.class, + CreateApplicationKrankenResponse.class +}) +public abstract class CreateApplicationResponseGenType + extends CreateApplicationResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseType.java new file mode 100644 index 00000000..40cfff3b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateApplicationResponseType.java @@ -0,0 +1,171 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentInfoType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentBasisType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen + * + *

Java-Klasse für CreateApplicationResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
+ *       <sequence>
+ *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
+ *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationResponse_Type", propOrder = { + "antragstatus", + "antragsnummer", + "dokumente", + "dokumenteAnforderungen" +}) +@XmlSeeAlso({ + CreateApplicationKfzResponseType.class, + CreateApplicationResponseGenType.class +}) +public abstract class CreateApplicationResponseType + extends BOAProcessResponseType +{ + + @XmlElement(name = "Antragstatus") + protected Integer antragstatus; + @XmlElement(name = "Antragsnummer") + protected ObjektIdType antragsnummer; + @XmlElement(name = "Dokumente") + protected List dokumente; + @XmlElement(name = "DokumenteAnforderungen") + protected List dokumenteAnforderungen; + + /** + * Ruft den Wert der antragstatus-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAntragstatus() { + return antragstatus; + } + + /** + * Legt den Wert der antragstatus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAntragstatus(Integer value) { + this.antragstatus = value; + } + + /** + * Ruft den Wert der antragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getAntragsnummer() { + return antragsnummer; + } + + /** + * Legt den Wert der antragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setAntragsnummer(ObjektIdType value) { + this.antragsnummer = value; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentInfoType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + + /** + * Gets the value of the dokumenteAnforderungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumenteAnforderungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumenteAnforderungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentBasisType } + * + * + */ + public List getDokumenteAnforderungen() { + if (dokumenteAnforderungen == null) { + dokumenteAnforderungen = new ArrayList(); + } + return this.dokumenteAnforderungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestGenType.java new file mode 100644 index 00000000..affb313e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestGenType.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen + * + *

Java-Klasse für CreateOfferRequestGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferRequestGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
+ *       <sequence>
+ *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { + "produktmetadaten" +}) +@XmlSeeAlso({ + CreateOfferSachPrivatRequestType.class, + CreateOfferUnfallRequestType.class, + CreateOfferLebenRequestType.class, + CreateOfferKrankenRequest.class +}) +public abstract class CreateOfferRequestGenType + extends CreateOfferRequestType +{ + + @XmlElement(name = "Produktmetadaten") + protected boolean produktmetadaten; + + /** + * Ruft den Wert der produktmetadaten-Eigenschaft ab. + * + */ + public boolean isProduktmetadaten() { + return produktmetadaten; + } + + /** + * Legt den Wert der produktmetadaten-Eigenschaft fest. + * + */ + public void setProduktmetadaten(boolean value) { + this.produktmetadaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestType.java new file mode 100644 index 00000000..02a435d3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferRequestType.java @@ -0,0 +1,80 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für das Offert + * + *

Java-Klasse für CreateOfferRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
+ *       <sequence>
+ *         <element name="DokAnfordVermittler" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokRequest_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferRequest_Type", propOrder = { + "dokumentenAnforderungenVermittler" +}) +@XmlSeeAlso({ + CreateOfferKfzRequestType.class, + CreateOfferRequestGenType.class +}) +public abstract class CreateOfferRequestType + extends BOAProcessRequestType +{ + + @XmlElement(name = "DokAnfordVermittler") + protected List dokumentenAnforderungenVermittler; + + /** + *

Die Dokumente, welche der Vermittler für den Response anfordert.

Gets the value of the dokumentenAnforderungenVermittler property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumentenAnforderungenVermittler property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumentenAnforderungenVermittler().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokRequestType } + * + * + */ + public List getDokumentenAnforderungenVermittler() { + if (dokumentenAnforderungenVermittler == null) { + dokumentenAnforderungenVermittler = new ArrayList(); + } + return this.dokumentenAnforderungenVermittler; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseGenType.java new file mode 100644 index 00000000..a2d78ee5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseGenType.java @@ -0,0 +1,45 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response der Offerterstellung + * + *

Java-Klasse für CreateOfferResponseGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferResponseGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferResponseGen_Type") +@XmlSeeAlso({ + CreateOfferSachPrivatResponseType.class, + CreateOfferUnfallResponseType.class, + CreateOfferLebenResponseType.class, + CreateOfferKrankenResponse.class +}) +public abstract class CreateOfferResponseGenType + extends CreateOfferResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseType.java new file mode 100644 index 00000000..f8e4390d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/CreateOfferResponseType.java @@ -0,0 +1,114 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentInfoType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentBasisType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen + * + *

Java-Klasse für CreateOfferResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
+ *       <sequence>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferResponse_Type", propOrder = { + "dokumente", + "dokumenteAnforderungen" +}) +@XmlSeeAlso({ + CreateOfferKfzResponseType.class, + CreateOfferResponseGenType.class +}) +public abstract class CreateOfferResponseType + extends BOAProcessResponseType +{ + + @XmlElement(name = "Dokumente") + protected List dokumente; + @XmlElement(name = "DokumenteAnforderungen") + protected List dokumenteAnforderungen; + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentInfoType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + + /** + * Gets the value of the dokumenteAnforderungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumenteAnforderungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumenteAnforderungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentBasisType } + * + * + */ + public List getDokumenteAnforderungen() { + if (dokumenteAnforderungen == null) { + dokumenteAnforderungen = new ArrayList(); + } + return this.dokumenteAnforderungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentRequestType.java new file mode 100644 index 00000000..0157d6dd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ um Offert- und Antragsdokumente zu beziehen + * + *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetApplicationDocumentRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { + "dokumentId" +}) +public class GetApplicationDocumentRequestType + extends CommonRequestType +{ + + @XmlElement(name = "DokumentId", required = true) + protected String dokumentId; + + /** + * Ruft den Wert der dokumentId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDokumentId() { + return dokumentId; + } + + /** + * Legt den Wert der dokumentId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDokumentId(String value) { + this.dokumentId = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentResponseType.java new file mode 100644 index 00000000..6850a4c4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/GetApplicationDocumentResponseType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentInfoType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ um Offert- und Antragsdokumente zurückzugeben + * + *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetApplicationDocumentResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { + "dokument" +}) +public class GetApplicationDocumentResponseType + extends CommonResponseType +{ + + @XmlElement(name = "Dokument") + protected DokumentInfoType dokument; + + /** + * Ruft den Wert der dokument-Eigenschaft ab. + * + * @return + * possible object is + * {@link DokumentInfoType } + * + */ + public DokumentInfoType getDokument() { + return dokument; + } + + /** + * Legt den Wert der dokument-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DokumentInfoType } + * + */ + public void setDokument(DokumentInfoType value) { + this.dokument = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/KonvertierungsumfangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/KonvertierungsumfangType.java new file mode 100644 index 00000000..75763909 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/KonvertierungsumfangType.java @@ -0,0 +1,72 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.KonvertierungsumfangVertragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag + * + *

Java-Klasse für Konvertierungsumfang_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Konvertierungsumfang_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Konvertierungsumfang_Type", propOrder = { + "vertraege" +}) +public class KonvertierungsumfangType { + + @XmlElement(name = "Vertrag", required = true) + protected List vertraege; + + /** + *

Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

Gets the value of the vertraege property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vertraege property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVertraege().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KonvertierungsumfangVertragType } + * + * + */ + public List getVertraege() { + if (vertraege == null) { + vertraege = new ArrayList(); + } + return this.vertraege; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ObjectFactory.java new file mode 100644 index 00000000..feee5d5f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ObjectFactory.java @@ -0,0 +1,143 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); + private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link GetApplicationDocumentRequestType } + * + */ + public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { + return new GetApplicationDocumentRequestType(); + } + + /** + * Create an instance of {@link GetApplicationDocumentResponseType } + * + */ + public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { + return new GetApplicationDocumentResponseType(); + } + + /** + * Create an instance of {@link ConversionScopeRequest } + * + */ + public ConversionScopeRequest createConversionScopeRequest() { + return new ConversionScopeRequest(); + } + + /** + * Create an instance of {@link ConversionScopeResponse } + * + */ + public ConversionScopeResponse createConversionScopeResponse() { + return new ConversionScopeResponse(); + } + + /** + * Create an instance of {@link KonvertierungsumfangType } + * + */ + public KonvertierungsumfangType createKonvertierungsumfangType() { + return new KonvertierungsumfangType(); + } + + /** + * Create an instance of {@link ConversionProposalRequest } + * + */ + public ConversionProposalRequest createConversionProposalRequest() { + return new ConversionProposalRequest(); + } + + /** + * Create an instance of {@link ConversionProposalResponse } + * + */ + public ConversionProposalResponse createConversionProposalResponse() { + return new ConversionProposalResponse(); + } + + /** + * Create an instance of {@link SpezBOASchrittType } + * + */ + public SpezBOASchrittType createSpezBOASchrittType() { + return new SpezBOASchrittType(); + } + + /** + * Create an instance of {@link BOAProcessRequestType } + * + */ + public BOAProcessRequestType createBOAProcessRequestType() { + return new BOAProcessRequestType(); + } + + /** + * Create an instance of {@link BOAProcessResponseType } + * + */ + public BOAProcessResponseType createBOAProcessResponseType() { + return new BOAProcessResponseType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") + public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { + return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") + public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { + return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragPersonenType.java new file mode 100644 index 00000000..93d3bfe4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragPersonenType.java @@ -0,0 +1,159 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.FATCAType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.GMSGType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PEPType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.TreuhaenderfrageType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SpezAntragLebenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist + * + *

Java-Klasse für SpezAntragPersonen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntragPersonen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ *       <sequence>
+ *         <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
+ *         <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
+ *         <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type"/>
+ *         <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntragPersonen_Type", propOrder = { + "fatca", + "gsgm", + "pep", + "treuhaenderfrage" +}) +@XmlSeeAlso({ + SpezAntragLebenType.class +}) +public abstract class SpezAntragPersonenType + extends SpezAntragType +{ + + @XmlElement(name = "FATCA") + protected FATCAType fatca; + @XmlElement(name = "GSGM") + protected GMSGType gsgm; + @XmlElement(name = "PEP", required = true) + protected PEPType pep; + @XmlElement(name = "Treuhaenderfrage", required = true) + protected TreuhaenderfrageType treuhaenderfrage; + + /** + * Ruft den Wert der fatca-Eigenschaft ab. + * + * @return + * possible object is + * {@link FATCAType } + * + */ + public FATCAType getFATCA() { + return fatca; + } + + /** + * Legt den Wert der fatca-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FATCAType } + * + */ + public void setFATCA(FATCAType value) { + this.fatca = value; + } + + /** + * Ruft den Wert der gsgm-Eigenschaft ab. + * + * @return + * possible object is + * {@link GMSGType } + * + */ + public GMSGType getGSGM() { + return gsgm; + } + + /** + * Legt den Wert der gsgm-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GMSGType } + * + */ + public void setGSGM(GMSGType value) { + this.gsgm = value; + } + + /** + * Ruft den Wert der pep-Eigenschaft ab. + * + * @return + * possible object is + * {@link PEPType } + * + */ + public PEPType getPEP() { + return pep; + } + + /** + * Legt den Wert der pep-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PEPType } + * + */ + public void setPEP(PEPType value) { + this.pep = value; + } + + /** + * Ruft den Wert der treuhaenderfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link TreuhaenderfrageType } + * + */ + public TreuhaenderfrageType getTreuhaenderfrage() { + return treuhaenderfrage; + } + + /** + * Legt den Wert der treuhaenderfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link TreuhaenderfrageType } + * + */ + public void setTreuhaenderfrage(TreuhaenderfrageType value) { + this.treuhaenderfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragType.java new file mode 100644 index 00000000..4b40542f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezAntragType.java @@ -0,0 +1,663 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AbgelehnteRisikenType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AntragsartType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.BeteiligtePersonVertragType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DatenverwendungType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.EinwilligungType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ErsatzpolizzenType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.KontierungType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PolizzenversandType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SicherstellungType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VertragspersonType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VorversicherungenType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZahlungsdatenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SpezAntragKfzType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SpezAntragKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.AntragSachPrivatType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SpezAntragUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist + * + *

Java-Klasse für SpezAntrag_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntrag_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
+ *       <sequence>
+ *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
+ *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
+ *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
+ *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
+ *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
+ *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
+ *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
+ *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
+ *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
+ *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntrag_Type", propOrder = { + "antragsart", + "personen", + "versicherungsnehmer", + "abweichenderPraemienzahler", + "weitereVersicherungsnehmer", + "weitereVertragspersonen", + "abgelehnteRisiken", + "vorversicherungen", + "zahlungsdaten", + "sepa", + "polizzenversand", + "datenschutzbestimmungen", + "kontierung", + "ersatzpolizzennummer", + "zusendungWeitereDokumente", + "zusaetzlicheAntragsdaten", + "sicherstellungen", + "einwilligungen", + "polizzennr", + "vertragsID" +}) +@XmlSeeAlso({ + SpezAntragKfzType.class, + AntragSachPrivatType.class, + SpezAntragUnfallType.class, + SpezAntragKrankenType.class, + SpezAntragPersonenType.class +}) +public abstract class SpezAntragType + extends SpezBOASchrittType +{ + + @XmlElement(name = "Antragsart") + @XmlSchemaType(name = "string") + protected AntragsartType antragsart; + @XmlElement(name = "Personen", required = true) + protected List personen; + @XmlElement(name = "Versicherungsnehmer") + @XmlSchemaType(name = "unsignedShort") + protected int versicherungsnehmer; + @XmlElement(name = "AbweichenderPraemienzahler") + @XmlSchemaType(name = "unsignedShort") + protected Integer abweichenderPraemienzahler; + @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) + @XmlSchemaType(name = "unsignedShort") + protected List weitereVersicherungsnehmer; + @XmlElement(name = "WeitereVertragspersonen") + protected List weitereVertragspersonen; + @XmlElement(name = "AbgelehnteRisiken") + protected AbgelehnteRisikenType abgelehnteRisiken; + @XmlElement(name = "Vorversicherungen") + protected VorversicherungenType vorversicherungen; + @XmlElement(name = "Zahlungsdaten", required = true) + protected ZahlungsdatenType zahlungsdaten; + @XmlElement(name = "Sepa") + @XmlSchemaType(name = "unsignedByte") + protected Short sepa; + @XmlElement(name = "Polizzenversand") + @XmlSchemaType(name = "string") + protected PolizzenversandType polizzenversand; + @XmlElement(name = "Datenschutzbestimmungen", required = true) + protected DatenverwendungType datenschutzbestimmungen; + @XmlElement(name = "Kontierung") + protected List kontierung; + @XmlElement(name = "Ersatzpolizzennummer") + protected ErsatzpolizzenType ersatzpolizzennummer; + @XmlElement(name = "ZusendungWeitereDokumente") + protected List zusendungWeitereDokumente; + @XmlElement(name = "ZusaetzlicheAntragsdaten") + protected List zusaetzlicheAntragsdaten; + @XmlElement(name = "Sicherstellungen") + protected List sicherstellungen; + @XmlElement(name = "Einwilligungen") + protected List einwilligungen; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + + /** + * Ruft den Wert der antragsart-Eigenschaft ab. + * + * @return + * possible object is + * {@link AntragsartType } + * + */ + public AntragsartType getAntragsart() { + return antragsart; + } + + /** + * Legt den Wert der antragsart-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AntragsartType } + * + */ + public void setAntragsart(AntragsartType value) { + this.antragsart = value; + } + + /** + * Gets the value of the personen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the personen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BeteiligtePersonVertragType } + * + * + */ + public List getPersonen() { + if (personen == null) { + personen = new ArrayList(); + } + return this.personen; + } + + /** + * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. + * + */ + public int getVersicherungsnehmer() { + return versicherungsnehmer; + } + + /** + * Legt den Wert der versicherungsnehmer-Eigenschaft fest. + * + */ + public void setVersicherungsnehmer(int value) { + this.versicherungsnehmer = value; + } + + /** + * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAbweichenderPraemienzahler() { + return abweichenderPraemienzahler; + } + + /** + * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAbweichenderPraemienzahler(Integer value) { + this.abweichenderPraemienzahler = value; + } + + /** + * Gets the value of the weitereVersicherungsnehmer property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the weitereVersicherungsnehmer property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getWeitereVersicherungsnehmer().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getWeitereVersicherungsnehmer() { + if (weitereVersicherungsnehmer == null) { + weitereVersicherungsnehmer = new ArrayList(); + } + return this.weitereVersicherungsnehmer; + } + + /** + * Gets the value of the weitereVertragspersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the weitereVertragspersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getWeitereVertragspersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VertragspersonType } + * + * + */ + public List getWeitereVertragspersonen() { + if (weitereVertragspersonen == null) { + weitereVertragspersonen = new ArrayList(); + } + return this.weitereVertragspersonen; + } + + /** + * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. + * + * @return + * possible object is + * {@link AbgelehnteRisikenType } + * + */ + public AbgelehnteRisikenType getAbgelehnteRisiken() { + return abgelehnteRisiken; + } + + /** + * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AbgelehnteRisikenType } + * + */ + public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { + this.abgelehnteRisiken = value; + } + + /** + * Ruft den Wert der vorversicherungen-Eigenschaft ab. + * + * @return + * possible object is + * {@link VorversicherungenType } + * + */ + public VorversicherungenType getVorversicherungen() { + return vorversicherungen; + } + + /** + * Legt den Wert der vorversicherungen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VorversicherungenType } + * + */ + public void setVorversicherungen(VorversicherungenType value) { + this.vorversicherungen = value; + } + + /** + * Ruft den Wert der zahlungsdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZahlungsdatenType } + * + */ + public ZahlungsdatenType getZahlungsdaten() { + return zahlungsdaten; + } + + /** + * Legt den Wert der zahlungsdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZahlungsdatenType } + * + */ + public void setZahlungsdaten(ZahlungsdatenType value) { + this.zahlungsdaten = value; + } + + /** + * Ruft den Wert der sepa-Eigenschaft ab. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getSepa() { + return sepa; + } + + /** + * Legt den Wert der sepa-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setSepa(Short value) { + this.sepa = value; + } + + /** + * Ruft den Wert der polizzenversand-Eigenschaft ab. + * + * @return + * possible object is + * {@link PolizzenversandType } + * + */ + public PolizzenversandType getPolizzenversand() { + return polizzenversand; + } + + /** + * Legt den Wert der polizzenversand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PolizzenversandType } + * + */ + public void setPolizzenversand(PolizzenversandType value) { + this.polizzenversand = value; + } + + /** + * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. + * + * @return + * possible object is + * {@link DatenverwendungType } + * + */ + public DatenverwendungType getDatenschutzbestimmungen() { + return datenschutzbestimmungen; + } + + /** + * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DatenverwendungType } + * + */ + public void setDatenschutzbestimmungen(DatenverwendungType value) { + this.datenschutzbestimmungen = value; + } + + /** + * Gets the value of the kontierung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the kontierung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKontierung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KontierungType } + * + * + */ + public List getKontierung() { + if (kontierung == null) { + kontierung = new ArrayList(); + } + return this.kontierung; + } + + /** + * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link ErsatzpolizzenType } + * + */ + public ErsatzpolizzenType getErsatzpolizzennummer() { + return ersatzpolizzennummer; + } + + /** + * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ErsatzpolizzenType } + * + */ + public void setErsatzpolizzennummer(ErsatzpolizzenType value) { + this.ersatzpolizzennummer = value; + } + + /** + * Gets the value of the zusendungWeitereDokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusendungWeitereDokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusendungWeitereDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getZusendungWeitereDokumente() { + if (zusendungWeitereDokumente == null) { + zusendungWeitereDokumente = new ArrayList(); + } + return this.zusendungWeitereDokumente; + } + + /** + * Gets the value of the zusaetzlicheAntragsdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheAntragsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheAntragsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheAntragsdatenType } + * + * + */ + public List getZusaetzlicheAntragsdaten() { + if (zusaetzlicheAntragsdaten == null) { + zusaetzlicheAntragsdaten = new ArrayList(); + } + return this.zusaetzlicheAntragsdaten; + } + + /** + * Gets the value of the sicherstellungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the sicherstellungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSicherstellungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SicherstellungType } + * + * + */ + public List getSicherstellungen() { + if (sicherstellungen == null) { + sicherstellungen = new ArrayList(); + } + return this.sicherstellungen; + } + + /** + * Gets the value of the einwilligungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the einwilligungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEinwilligungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link EinwilligungType } + * + * + */ + public List getEinwilligungen() { + if (einwilligungen == null) { + einwilligungen = new ArrayList(); + } + return this.einwilligungen; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBOASchrittType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBOASchrittType.java new file mode 100644 index 00000000..0f3ba3a0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBOASchrittType.java @@ -0,0 +1,38 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für das Datenmodell aller BOA-Prozessschritte + * + *

Java-Klasse für SpezBOASchritt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBOASchritt_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBOASchritt_Type") +@XmlSeeAlso({ + SpezBerechnungType.class, + SpezOffertType.class, + SpezAntragType.class +}) +public class SpezBOASchrittType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBerechnungType.java new file mode 100644 index 00000000..8b6edfac --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezBerechnungType.java @@ -0,0 +1,87 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.BeteiligtePersonVertragType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SpezBerechnungKfzType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SpezBerechnungKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SpezBerechnungLebenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.BerechnungSachPrivatType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SpezBerechnungUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist + * + *

Java-Klasse für SpezBerechnung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBerechnung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
+ *       <sequence>
+ *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBerechnung_Type", propOrder = { + "personen" +}) +@XmlSeeAlso({ + SpezBerechnungKfzType.class, + BerechnungSachPrivatType.class, + SpezBerechnungUnfallType.class, + SpezBerechnungKrankenType.class, + SpezBerechnungLebenType.class +}) +public abstract class SpezBerechnungType + extends SpezBOASchrittType +{ + + @XmlElement(name = "Personen") + protected List personen; + + /** + * Gets the value of the personen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the personen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BeteiligtePersonVertragType } + * + * + */ + public List getPersonen() { + if (personen == null) { + personen = new ArrayList(); + } + return this.personen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezOffertType.java new file mode 100644 index 00000000..a8e4969c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SpezOffertType.java @@ -0,0 +1,138 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.BeteiligtePersonVertragType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SpezOffertKfzType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SpezOffertKrankenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SpezOffertLebenType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.OffertSachPrivatType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SpezOffertUnfallType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp Offert, der bei Request und Response gleich ist + * + *

Java-Klasse für SpezOffert_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezOffert_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
+ *       <sequence>
+ *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
+ *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezOffert_Type", propOrder = { + "offertnummer", + "personen", + "versicherungsnehmer" +}) +@XmlSeeAlso({ + SpezOffertKfzType.class, + OffertSachPrivatType.class, + SpezOffertUnfallType.class, + SpezOffertKrankenType.class, + SpezOffertLebenType.class +}) +public abstract class SpezOffertType + extends SpezBOASchrittType +{ + + @XmlElement(name = "Offertnummer") + protected ObjektIdType offertnummer; + @XmlElement(name = "Personen", required = true) + protected List personen; + @XmlElement(name = "Versicherungsnehmer") + @XmlSchemaType(name = "unsignedShort") + protected int versicherungsnehmer; + + /** + * Ruft den Wert der offertnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getOffertnummer() { + return offertnummer; + } + + /** + * Legt den Wert der offertnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setOffertnummer(ObjektIdType value) { + this.offertnummer = value; + } + + /** + * Gets the value of the personen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the personen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BeteiligtePersonVertragType } + * + * + */ + public List getPersonen() { + if (personen == null) { + personen = new ArrayList(); + } + return this.personen; + } + + /** + * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. + * + */ + public int getVersicherungsnehmer() { + return versicherungsnehmer; + } + + /** + * Legt den Wert der versicherungsnehmer-Eigenschaft fest. + * + */ + public void setVersicherungsnehmer(int value) { + this.versicherungsnehmer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestGenType.java new file mode 100644 index 00000000..cc68035f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestGenType.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenRequest; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen + * + *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationRequestGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
+ *       <sequence>
+ *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { + "produktmetadaten" +}) +@XmlSeeAlso({ + SubmitApplicationSachPrivatRequestType.class, + SubmitApplicationUnfallRequestType.class, + SubmitApplicationLebenRequestType.class, + SubmitApplicationKrankenRequest.class +}) +public abstract class SubmitApplicationRequestGenType + extends SubmitApplicationRequestType +{ + + @XmlElement(name = "Produktmetadaten") + protected boolean produktmetadaten; + + /** + * Ruft den Wert der produktmetadaten-Eigenschaft ab. + * + */ + public boolean isProduktmetadaten() { + return produktmetadaten; + } + + /** + * Legt den Wert der produktmetadaten-Eigenschaft fest. + * + */ + public void setProduktmetadaten(boolean value) { + this.produktmetadaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestType.java new file mode 100644 index 00000000..af1f898c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationRequestType.java @@ -0,0 +1,143 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DateianhangType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Request für die Antragsüberleitung + * + *

Java-Klasse für SubmitApplicationRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
+ *       <sequence>
+ *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { + "dateianhaenge", + "dokumente", + "antragsnummer" +}) +@XmlSeeAlso({ + SubmitApplicationKfzRequestType.class, + SubmitApplicationRequestGenType.class +}) +public abstract class SubmitApplicationRequestType + extends BOAProcessRequestType +{ + + @XmlElement(name = "Dateianhaenge") + protected List dateianhaenge; + @XmlElement(name = "Dokumente") + protected List dokumente; + @XmlElement(name = "Antragsnummer") + protected ObjektIdType antragsnummer; + + /** + * Gets the value of the dateianhaenge property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dateianhaenge property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDateianhaenge().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DateianhangType } + * + * + */ + public List getDateianhaenge() { + if (dateianhaenge == null) { + dateianhaenge = new ArrayList(); + } + return this.dateianhaenge; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + + /** + * Ruft den Wert der antragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getAntragsnummer() { + return antragsnummer; + } + + /** + * Legt den Wert der antragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setAntragsnummer(ObjektIdType value) { + this.antragsnummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseGenType.java new file mode 100644 index 00000000..a3cf65bb --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseGenType.java @@ -0,0 +1,45 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response der Antragsüberleitung + * + *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationResponseGen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationResponseGen_Type") +@XmlSeeAlso({ + SubmitApplicationSachPrivatResponseType.class, + SubmitApplicationUnfallResponseType.class, + SubmitApplicationLebenResponseType.class, + SubmitApplicationKrankenResponse.class +}) +public abstract class SubmitApplicationResponseGenType + extends SubmitApplicationResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseType.java new file mode 100644 index 00000000..fb4539f2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/SubmitApplicationResponseType.java @@ -0,0 +1,163 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentInfoType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentBasisType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Response der Antragsüberleitung + * + *

Java-Klasse für SubmitApplicationResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
+ *       <sequence>
+ *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
+ *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { + "antragstatus", + "antragsnummer", + "dokumente", + "dokumenteAnforderungen" +}) +@XmlSeeAlso({ + SubmitApplicationKfzResponseType.class, + SubmitApplicationResponseGenType.class +}) +public abstract class SubmitApplicationResponseType + extends BOAProcessResponseType +{ + + @XmlElement(name = "Antragstatus") + protected int antragstatus; + @XmlElement(name = "Antragsnummer", required = true) + protected ObjektIdType antragsnummer; + @XmlElement(name = "Dokumente") + protected List dokumente; + @XmlElement(name = "DokumenteAnforderungen") + protected List dokumenteAnforderungen; + + /** + * Ruft den Wert der antragstatus-Eigenschaft ab. + * + */ + public int getAntragstatus() { + return antragstatus; + } + + /** + * Legt den Wert der antragstatus-Eigenschaft fest. + * + */ + public void setAntragstatus(int value) { + this.antragstatus = value; + } + + /** + * Ruft den Wert der antragsnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getAntragsnummer() { + return antragsnummer; + } + + /** + * Legt den Wert der antragsnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setAntragsnummer(ObjektIdType value) { + this.antragsnummer = value; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentInfoType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + + /** + * Gets the value of the dokumenteAnforderungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumenteAnforderungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumenteAnforderungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProzessDokumentBasisType } + * + * + */ + public List getDokumenteAnforderungen() { + if (dokumenteAnforderungen == null) { + dokumenteAnforderungen = new ArrayList(); + } + return this.dokumenteAnforderungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java new file mode 100644 index 00000000..3327af7f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind + * + *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheAntragsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheAntragsdaten_Type") +public abstract class ZusaetzlicheAntragsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/package-info.java new file mode 100644 index 00000000..12de69b2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/common/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ArtBesichtigungType.java new file mode 100644 index 00000000..4f832375 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ArtBesichtigungType.java @@ -0,0 +1,56 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für ArtBesichtigung_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="ArtBesichtigung_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="Besichtigung durch Betreuer"/>
+ *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
+ *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
+ *     <enumeration value="Nachbesichtigung"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "ArtBesichtigung_Type") +@XmlEnum +public enum ArtBesichtigungType { + + @XmlEnumValue("Besichtigung durch Betreuer") + BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), + @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") + KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), + @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") + BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), + @XmlEnumValue("Nachbesichtigung") + NACHBESICHTIGUNG("Nachbesichtigung"); + private final String value; + + ArtBesichtigungType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static ArtBesichtigungType fromValue(String v) { + for (ArtBesichtigungType c: ArtBesichtigungType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/AssistanceKfzType.java new file mode 100644 index 00000000..df85afe8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/AssistanceKfzType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Assistance + * + *

Java-Klasse für AssistanceKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AssistanceKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AssistanceKfz_Type") +public class AssistanceKfzType + extends ElementarproduktKfzType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzRequestType.java new file mode 100644 index 00000000..fa2bfa3c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Kfz-Berechnung + * + *

Java-Klasse für CalculateKfzRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateKfzRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
+ *       <sequence>
+ *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateKfzRequest_Type", propOrder = { + "berechnungsanfrage" +}) +public class CalculateKfzRequestType + extends CalculateRequestType +{ + + @XmlElement(name = "Berechnungsanfrage", required = true) + protected SpezBerechnungKfzType berechnungsanfrage; + + /** + * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungKfzType } + * + */ + public SpezBerechnungKfzType getBerechnungsanfrage() { + return berechnungsanfrage; + } + + /** + * Legt den Wert der berechnungsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungKfzType } + * + */ + public void setBerechnungsanfrage(SpezBerechnungKfzType value) { + this.berechnungsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzResponseType.java new file mode 100644 index 00000000..4f8d2c0a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CalculateKfzResponseType.java @@ -0,0 +1,95 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Kfz-Berechnung + * + *

Java-Klasse für CalculateKfzResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateKfzResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
+ *       <sequence>
+ *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
+ *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateKfzResponse_Type", propOrder = { + "berechnungsantwort", + "responseUpselling" +}) +public class CalculateKfzResponseType + extends CalculateResponseType +{ + + @XmlElement(name = "Berechnungsantwort") + protected SpezBerechnungKfzType berechnungsantwort; + @XmlElement(name = "ResponseUpselling") + protected UpsellingKfzResponseType responseUpselling; + + /** + * Ruft den Wert der berechnungsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungKfzType } + * + */ + public SpezBerechnungKfzType getBerechnungsantwort() { + return berechnungsantwort; + } + + /** + * Legt den Wert der berechnungsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungKfzType } + * + */ + public void setBerechnungsantwort(SpezBerechnungKfzType value) { + this.berechnungsantwort = value; + } + + /** + * Ruft den Wert der responseUpselling-Eigenschaft ab. + * + * @return + * possible object is + * {@link UpsellingKfzResponseType } + * + */ + public UpsellingKfzResponseType getResponseUpselling() { + return responseUpselling; + } + + /** + * Legt den Wert der responseUpselling-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link UpsellingKfzResponseType } + * + */ + public void setResponseUpselling(UpsellingKfzResponseType value) { + this.responseUpselling = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzRequestType.java new file mode 100644 index 00000000..8bde3b4f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags + * + *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationKfzRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
+ *       <sequence>
+ *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { + "antraganfrage" +}) +public class CreateApplicationKfzRequestType + extends CreateApplicationRequestType +{ + + @XmlElement(name = "Antraganfrage", required = true) + protected SpezAntragKfzType antraganfrage; + + /** + * Ruft den Wert der antraganfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKfzType } + * + */ + public SpezAntragKfzType getAntraganfrage() { + return antraganfrage; + } + + /** + * Legt den Wert der antraganfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKfzType } + * + */ + public void setAntraganfrage(SpezAntragKfzType value) { + this.antraganfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzResponseType.java new file mode 100644 index 00000000..549990e6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateApplicationKfzResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags + * + *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationKfzResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
+ *       <sequence>
+ *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { + "antragantwort" +}) +public class CreateApplicationKfzResponseType + extends CreateApplicationResponseType +{ + + @XmlElement(name = "Antragantwort") + protected SpezAntragKfzType antragantwort; + + /** + * Ruft den Wert der antragantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKfzType } + * + */ + public SpezAntragKfzType getAntragantwort() { + return antragantwort; + } + + /** + * Legt den Wert der antragantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKfzType } + * + */ + public void setAntragantwort(SpezAntragKfzType value) { + this.antragantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzRequestType.java new file mode 100644 index 00000000..506f7e0a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Request für ein Kfz-Offert + * + *

Java-Klasse für CreateOfferKfzRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferKfzRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
+ *       <sequence>
+ *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { + "offertanfrage" +}) +public class CreateOfferKfzRequestType + extends CreateOfferRequestType +{ + + @XmlElement(name = "Offertanfrage", required = true) + protected SpezOffertKfzType offertanfrage; + + /** + * Ruft den Wert der offertanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertKfzType } + * + */ + public SpezOffertKfzType getOffertanfrage() { + return offertanfrage; + } + + /** + * Legt den Wert der offertanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertKfzType } + * + */ + public void setOffertanfrage(SpezOffertKfzType value) { + this.offertanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzResponseType.java new file mode 100644 index 00000000..2108e2b9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateOfferKfzResponseType.java @@ -0,0 +1,100 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Response für ein Kfz-Offert + * + *

Java-Klasse für CreateOfferKfzResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferKfzResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
+ *       <sequence>
+ *         <element name="Offertantwort" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
+ *               </extension>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { + "offertantwort" +}) +public class CreateOfferKfzResponseType + extends CreateOfferResponseType +{ + + @XmlElement(name = "Offertantwort") + protected CreateOfferKfzResponseType.Offertantwort offertantwort; + + /** + * Ruft den Wert der offertantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link CreateOfferKfzResponseType.Offertantwort } + * + */ + public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { + return offertantwort; + } + + /** + * Legt den Wert der offertantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link CreateOfferKfzResponseType.Offertantwort } + * + */ + public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { + this.offertantwort = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
+     *     </extension>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "") + public static class Offertantwort + extends SpezOffertKfzType + { + + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBRequest.java new file mode 100644 index 00000000..5d5567bf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBRequest.java @@ -0,0 +1,455 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PersonType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VorlaeufigeDeckungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Vermittlernr" type="{urn:omds20}Vermnr"/>
+ *         <element name="Art">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="NEU"/>
+ *               <enumeration value="WIEDER"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Kennzeichen" type="{urn:omds20}Pol_Kennz_Type" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="Fahrzeug" maxOccurs="3" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
+ *                   <element name="MarkeType">
+ *                     <simpleType>
+ *                       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *                         <maxLength value="20"/>
+ *                       </restriction>
+ *                     </simpleType>
+ *                   </element>
+ *                   <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
+ *         <element name="GueltigAb" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="VorlaeufigeDeckung" type="{urn:omds3CommonServiceTypes-1-1-0}VorlaeufigeDeckung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ZusaetzlicheVBDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheVBDaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "vermittlernr", + "art", + "kennzeichen", + "polizzennr", + "fahrzeug", + "versicherungsnehmer", + "gueltigAb", + "vorlaeufigeDeckung", + "zusaetzlicheVBDaten" +}) +@XmlRootElement(name = "CreateVBRequest") +public class CreateVBRequest + extends CommonRequestType +{ + + @XmlElement(name = "Vermittlernr", required = true) + protected String vermittlernr; + @XmlElement(name = "Art", required = true) + protected String art; + @XmlElement(name = "Kennzeichen") + protected String kennzeichen; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "Fahrzeug") + protected List fahrzeug; + @XmlElement(name = "Versicherungsnehmer", required = true) + protected PersonType versicherungsnehmer; + @XmlElement(name = "GueltigAb") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar gueltigAb; + @XmlElement(name = "VorlaeufigeDeckung") + protected List vorlaeufigeDeckung; + @XmlElement(name = "ZusaetzlicheVBDaten") + protected List zusaetzlicheVBDaten; + + /** + * Ruft den Wert der vermittlernr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermittlernr() { + return vermittlernr; + } + + /** + * Legt den Wert der vermittlernr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermittlernr(String value) { + this.vermittlernr = value; + } + + /** + * Ruft den Wert der art-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArt() { + return art; + } + + /** + * Legt den Wert der art-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArt(String value) { + this.art = value; + } + + /** + * Ruft den Wert der kennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennzeichen() { + return kennzeichen; + } + + /** + * Legt den Wert der kennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennzeichen(String value) { + this.kennzeichen = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Gets the value of the fahrzeug property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the fahrzeug property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFahrzeug().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreateVBRequest.Fahrzeug } + * + * + */ + public List getFahrzeug() { + if (fahrzeug == null) { + fahrzeug = new ArrayList(); + } + return this.fahrzeug; + } + + /** + * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. + * + * @return + * possible object is + * {@link PersonType } + * + */ + public PersonType getVersicherungsnehmer() { + return versicherungsnehmer; + } + + /** + * Legt den Wert der versicherungsnehmer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PersonType } + * + */ + public void setVersicherungsnehmer(PersonType value) { + this.versicherungsnehmer = value; + } + + /** + * Ruft den Wert der gueltigAb-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGueltigAb() { + return gueltigAb; + } + + /** + * Legt den Wert der gueltigAb-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGueltigAb(XMLGregorianCalendar value) { + this.gueltigAb = value; + } + + /** + * Gets the value of the vorlaeufigeDeckung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vorlaeufigeDeckung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVorlaeufigeDeckung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VorlaeufigeDeckungType } + * + * + */ + public List getVorlaeufigeDeckung() { + if (vorlaeufigeDeckung == null) { + vorlaeufigeDeckung = new ArrayList(); + } + return this.vorlaeufigeDeckung; + } + + /** + * Gets the value of the zusaetzlicheVBDaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheVBDaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheVBDaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheVBDatenType } + * + * + */ + public List getZusaetzlicheVBDaten() { + if (zusaetzlicheVBDaten == null) { + zusaetzlicheVBDaten = new ArrayList(); + } + return this.zusaetzlicheVBDaten; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
+     *         <element name="MarkeType">
+     *           <simpleType>
+     *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+     *               <maxLength value="20"/>
+     *             </restriction>
+     *           </simpleType>
+     *         </element>
+     *         <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "fzgArt", + "markeType", + "fahrgestnr" + }) + public static class Fahrzeug { + + @XmlElement(name = "FzgArt", required = true) + protected String fzgArt; + @XmlElement(name = "MarkeType", required = true) + protected String markeType; + @XmlElement(name = "Fahrgestnr") + protected String fahrgestnr; + + /** + * Ruft den Wert der fzgArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFzgArt() { + return fzgArt; + } + + /** + * Legt den Wert der fzgArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFzgArt(String value) { + this.fzgArt = value; + } + + /** + * Ruft den Wert der markeType-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMarkeType() { + return markeType; + } + + /** + * Legt den Wert der markeType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMarkeType(String value) { + this.markeType = value; + } + + /** + * Ruft den Wert der fahrgestnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestnr() { + return fahrgestnr; + } + + /** + * Legt den Wert der fahrgestnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestnr(String value) { + this.fahrgestnr = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBResponse.java new file mode 100644 index 00000000..ca66d98e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/CreateVBResponse.java @@ -0,0 +1,96 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokHandoutType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="VBNr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="VBDokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "vbNr", + "vbDokument" +}) +@XmlRootElement(name = "CreateVBResponse") +public class CreateVBResponse + extends CommonResponseType +{ + + @XmlElement(name = "VBNr", required = true) + protected String vbNr; + @XmlElement(name = "VBDokument", required = true) + protected ProzessDokHandoutType vbDokument; + + /** + * Ruft den Wert der vbNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVBNr() { + return vbNr; + } + + /** + * Legt den Wert der vbNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVBNr(String value) { + this.vbNr = value; + } + + /** + * Ruft den Wert der vbDokument-Eigenschaft ab. + * + * @return + * possible object is + * {@link ProzessDokHandoutType } + * + */ + public ProzessDokHandoutType getVBDokument() { + return vbDokument; + } + + /** + * Legt den Wert der vbDokument-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ProzessDokHandoutType } + * + */ + public void setVBDokument(ProzessDokHandoutType value) { + this.vbDokument = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ElementarproduktKfzType.java new file mode 100644 index 00000000..5bfb66d0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ElementarproduktKfzType.java @@ -0,0 +1,105 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakte Basisklasse für KFZ-Elementarprodukte + * + *

Java-Klasse für ElementarproduktKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ElementarproduktKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
+ *       <sequence>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
+ *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktKfz_Type", propOrder = { + "fahrzeugRefLfdNr", + "leasingVerbundUnternehmen" +}) +@XmlSeeAlso({ + HaftpflichtKfzType.class, + KaskoKfzType.class, + InsassenUnfallKfzType.class, + LenkerUnfallKfzType.class, + AssistanceKfzType.class +}) +public abstract class ElementarproduktKfzType + extends ElementarproduktType +{ + + @XmlElement(name = "FahrzeugRefLfdNr") + @XmlSchemaType(name = "unsignedShort") + protected Integer fahrzeugRefLfdNr; + @XmlElement(name = "LeasingVerbundUnternehmen") + protected Boolean leasingVerbundUnternehmen; + + /** + * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFahrzeugRefLfdNr() { + return fahrzeugRefLfdNr; + } + + /** + * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFahrzeugRefLfdNr(Integer value) { + this.fahrzeugRefLfdNr = value; + } + + /** + * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isLeasingVerbundUnternehmen() { + return leasingVerbundUnternehmen; + } + + /** + * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setLeasingVerbundUnternehmen(Boolean value) { + this.leasingVerbundUnternehmen = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/FzZustandBesichtigungType.java new file mode 100644 index 00000000..9ac0e765 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/FzZustandBesichtigungType.java @@ -0,0 +1,298 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.math.BigInteger; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AFzZustandBesichtigungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardimplementierung des AFzZustandBesichtigung_Type + * + *

Java-Klasse für FzZustandBesichtigung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="FzZustandBesichtigung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}AFzZustandBesichtigung_Type">
+ *       <sequence>
+ *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
+ *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
+ *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
+ *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { + "zustandsberichtLiegtAlsFormularBei", + "artBesichtigung", + "schaedenAnScheibenKleinglas", + "schaedenAmFahrzeug", + "kilometerLtBesichtigung", + "vorschaeden", + "besichtigungsort", + "besichtigungsdatum", + "grundFuerNachbesichtigung" +}) +public class FzZustandBesichtigungType + extends AFzZustandBesichtigungType +{ + + @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") + protected Boolean zustandsberichtLiegtAlsFormularBei; + @XmlElement(name = "ArtBesichtigung", required = true) + @XmlSchemaType(name = "string") + protected ArtBesichtigungType artBesichtigung; + @XmlElement(name = "SchaedenAnScheibenKleinglas") + @XmlSchemaType(name = "string") + protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; + @XmlElement(name = "SchaedenAmFahrzeug") + @XmlSchemaType(name = "string") + protected SchaedenAmFahrzeugType schaedenAmFahrzeug; + @XmlElement(name = "KilometerLtBesichtigung") + protected BigInteger kilometerLtBesichtigung; + @XmlElement(name = "Vorschaeden") + protected String vorschaeden; + @XmlElement(name = "Besichtigungsort") + protected String besichtigungsort; + @XmlElement(name = "Besichtigungsdatum") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar besichtigungsdatum; + @XmlElement(name = "GrundFuerNachbesichtigung") + protected String grundFuerNachbesichtigung; + + /** + * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isZustandsberichtLiegtAlsFormularBei() { + return zustandsberichtLiegtAlsFormularBei; + } + + /** + * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { + this.zustandsberichtLiegtAlsFormularBei = value; + } + + /** + * Ruft den Wert der artBesichtigung-Eigenschaft ab. + * + * @return + * possible object is + * {@link ArtBesichtigungType } + * + */ + public ArtBesichtigungType getArtBesichtigung() { + return artBesichtigung; + } + + /** + * Legt den Wert der artBesichtigung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ArtBesichtigungType } + * + */ + public void setArtBesichtigung(ArtBesichtigungType value) { + this.artBesichtigung = value; + } + + /** + * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchaedenAnScheibenKleinglasType } + * + */ + public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { + return schaedenAnScheibenKleinglas; + } + + /** + * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchaedenAnScheibenKleinglasType } + * + */ + public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { + this.schaedenAnScheibenKleinglas = value; + } + + /** + * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchaedenAmFahrzeugType } + * + */ + public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { + return schaedenAmFahrzeug; + } + + /** + * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchaedenAmFahrzeugType } + * + */ + public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { + this.schaedenAmFahrzeug = value; + } + + /** + * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getKilometerLtBesichtigung() { + return kilometerLtBesichtigung; + } + + /** + * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setKilometerLtBesichtigung(BigInteger value) { + this.kilometerLtBesichtigung = value; + } + + /** + * Ruft den Wert der vorschaeden-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVorschaeden() { + return vorschaeden; + } + + /** + * Legt den Wert der vorschaeden-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVorschaeden(String value) { + this.vorschaeden = value; + } + + /** + * Ruft den Wert der besichtigungsort-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBesichtigungsort() { + return besichtigungsort; + } + + /** + * Legt den Wert der besichtigungsort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBesichtigungsort(String value) { + this.besichtigungsort = value; + } + + /** + * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBesichtigungsdatum() { + return besichtigungsdatum; + } + + /** + * Legt den Wert der besichtigungsdatum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBesichtigungsdatum(XMLGregorianCalendar value) { + this.besichtigungsdatum = value; + } + + /** + * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGrundFuerNachbesichtigung() { + return grundFuerNachbesichtigung; + } + + /** + * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGrundFuerNachbesichtigung(String value) { + this.grundFuerNachbesichtigung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/HaftpflichtKfzType.java new file mode 100644 index 00000000..161e0620 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/HaftpflichtKfzType.java @@ -0,0 +1,211 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.math.BigDecimal; +import at.vvo.omds.types.omds2Types.v2_16.ELEinstufungType; +import at.vvo.omds.types.omds2Types.v2_16.ELVersicherungssummeType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Haftpflicht + * + *

Java-Klasse für HaftpflichtKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="HaftpflichtKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
+ *       <sequence>
+ *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
+ *         <element ref="{urn:omds20}EL-Versicherungssumme" minOccurs="0"/>
+ *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
+ *         <element ref="{urn:omds20}EL-Einstufung"/>
+ *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "HaftpflichtKfz_Type", propOrder = { + "art", + "elVersicherungssumme", + "varianteLeihwagen", + "elEinstufung", + "zielpraemie", + "vdNummer" +}) +public class HaftpflichtKfzType + extends ElementarproduktKfzType +{ + + @XmlElement(name = "Art", required = true) + protected String art; + @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20") + protected ELVersicherungssummeType elVersicherungssumme; + @XmlElement(name = "VarianteLeihwagen", required = true) + @XmlSchemaType(name = "string") + protected VarianteLeihwagenType varianteLeihwagen; + @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) + protected ELEinstufungType elEinstufung; + @XmlElement(name = "Zielpraemie") + protected BigDecimal zielpraemie; + @XmlElement(name = "VDNummer") + protected String vdNummer; + + /** + * Ruft den Wert der art-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArt() { + return art; + } + + /** + * Legt den Wert der art-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArt(String value) { + this.art = value; + } + + /** + * Versicherungssumme Haftpflicht + * + * @return + * possible object is + * {@link ELVersicherungssummeType } + * + */ + public ELVersicherungssummeType getELVersicherungssumme() { + return elVersicherungssumme; + } + + /** + * Legt den Wert der elVersicherungssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ELVersicherungssummeType } + * + */ + public void setELVersicherungssumme(ELVersicherungssummeType value) { + this.elVersicherungssumme = value; + } + + /** + * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. + * + * @return + * possible object is + * {@link VarianteLeihwagenType } + * + */ + public VarianteLeihwagenType getVarianteLeihwagen() { + return varianteLeihwagen; + } + + /** + * Legt den Wert der varianteLeihwagen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VarianteLeihwagenType } + * + */ + public void setVarianteLeihwagen(VarianteLeihwagenType value) { + this.varianteLeihwagen = value; + } + + /** + * Ruft den Wert der elEinstufung-Eigenschaft ab. + * + * @return + * possible object is + * {@link ELEinstufungType } + * + */ + public ELEinstufungType getELEinstufung() { + return elEinstufung; + } + + /** + * Legt den Wert der elEinstufung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ELEinstufungType } + * + */ + public void setELEinstufung(ELEinstufungType value) { + this.elEinstufung = value; + } + + /** + * Ruft den Wert der zielpraemie-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getZielpraemie() { + return zielpraemie; + } + + /** + * Legt den Wert der zielpraemie-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setZielpraemie(BigDecimal value) { + this.zielpraemie = value; + } + + /** + * Ruft den Wert der vdNummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVDNummer() { + return vdNummer; + } + + /** + * Legt den Wert der vdNummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVDNummer(String value) { + this.vdNummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallKfzType.java new file mode 100644 index 00000000..bc16a6f7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallKfzType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Insassenunfall + * + *

Java-Klasse für InsassenUnfallKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="InsassenUnfallKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
+ *       <sequence>
+ *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { + "insassenUnfallSystem" +}) +public class InsassenUnfallKfzType + extends ElementarproduktKfzType +{ + + @XmlElement(name = "InsassenUnfallSystem", required = true) + @XmlSchemaType(name = "string") + protected InsassenUnfallSystemType insassenUnfallSystem; + + /** + * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. + * + * @return + * possible object is + * {@link InsassenUnfallSystemType } + * + */ + public InsassenUnfallSystemType getInsassenUnfallSystem() { + return insassenUnfallSystem; + } + + /** + * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link InsassenUnfallSystemType } + * + */ + public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { + this.insassenUnfallSystem = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallSystemType.java new file mode 100644 index 00000000..740b735e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/InsassenUnfallSystemType.java @@ -0,0 +1,62 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für InsassenUnfallSystem_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="InsassenUnfallSystem_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="Pauschalsystem"/>
+ *     <enumeration value="Platzsystem1"/>
+ *     <enumeration value="Platzsystem2"/>
+ *     <enumeration value="Personensystem"/>
+ *     <enumeration value="Lenkerunfallversicherung"/>
+ *     <enumeration value="Aufsassenunfallversicherung"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "InsassenUnfallSystem_Type") +@XmlEnum +public enum InsassenUnfallSystemType { + + @XmlEnumValue("Pauschalsystem") + PAUSCHALSYSTEM("Pauschalsystem"), + @XmlEnumValue("Platzsystem1") + PLATZSYSTEM_1("Platzsystem1"), + @XmlEnumValue("Platzsystem2") + PLATZSYSTEM_2("Platzsystem2"), + @XmlEnumValue("Personensystem") + PERSONENSYSTEM("Personensystem"), + @XmlEnumValue("Lenkerunfallversicherung") + LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), + @XmlEnumValue("Aufsassenunfallversicherung") + AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); + private final String value; + + InsassenUnfallSystemType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static InsassenUnfallSystemType fromValue(String v) { + for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/KaskoKfzType.java new file mode 100644 index 00000000..c386cac7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/KaskoKfzType.java @@ -0,0 +1,292 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.math.BigDecimal; +import at.vvo.omds.types.omds3Types.r1_11_0.common.BezugsrechtType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VinkulierungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp für die Kasko-Elementarprodukte + * + *

Java-Klasse für KaskoKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="KaskoKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
+ *       <sequence>
+ *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
+ *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
+ *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
+ *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KaskoKfz_Type", propOrder = { + "art", + "selbstbehaltBisBetrag", + "kmLeistung", + "vorsteuerAbzugBerechtigung", + "vinkulierung", + "bezugsrecht", + "zielpraemie", + "eingeschraenkt", + "neuwertklausel" +}) +@XmlSeeAlso({ + TeilkaskoKfzType.class, + VollkaskoKfzType.class +}) +public abstract class KaskoKfzType + extends ElementarproduktKfzType +{ + + @XmlElement(name = "Art", required = true) + protected String art; + @XmlElement(name = "SelbstbehaltBisBetrag") + protected BigDecimal selbstbehaltBisBetrag; + @XmlElement(name = "KMLeistung") + @XmlSchemaType(name = "unsignedInt") + protected Long kmLeistung; + @XmlElement(name = "VorsteuerAbzugBerechtigung") + protected boolean vorsteuerAbzugBerechtigung; + @XmlElement(name = "Vinkulierung") + protected VinkulierungType vinkulierung; + @XmlElement(name = "Bezugsrecht") + protected BezugsrechtType bezugsrecht; + @XmlElement(name = "Zielpraemie") + protected BigDecimal zielpraemie; + @XmlElement(name = "Eingeschraenkt", defaultValue = "0") + protected Boolean eingeschraenkt; + @XmlElement(name = "Neuwertklausel") + protected Boolean neuwertklausel; + + /** + * Ruft den Wert der art-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArt() { + return art; + } + + /** + * Legt den Wert der art-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArt(String value) { + this.art = value; + } + + /** + * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSelbstbehaltBisBetrag() { + return selbstbehaltBisBetrag; + } + + /** + * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSelbstbehaltBisBetrag(BigDecimal value) { + this.selbstbehaltBisBetrag = value; + } + + /** + * Ruft den Wert der kmLeistung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getKMLeistung() { + return kmLeistung; + } + + /** + * Legt den Wert der kmLeistung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setKMLeistung(Long value) { + this.kmLeistung = value; + } + + /** + * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. + * + */ + public boolean isVorsteuerAbzugBerechtigung() { + return vorsteuerAbzugBerechtigung; + } + + /** + * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. + * + */ + public void setVorsteuerAbzugBerechtigung(boolean value) { + this.vorsteuerAbzugBerechtigung = value; + } + + /** + * Ruft den Wert der vinkulierung-Eigenschaft ab. + * + * @return + * possible object is + * {@link VinkulierungType } + * + */ + public VinkulierungType getVinkulierung() { + return vinkulierung; + } + + /** + * Legt den Wert der vinkulierung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VinkulierungType } + * + */ + public void setVinkulierung(VinkulierungType value) { + this.vinkulierung = value; + } + + /** + * Ruft den Wert der bezugsrecht-Eigenschaft ab. + * + * @return + * possible object is + * {@link BezugsrechtType } + * + */ + public BezugsrechtType getBezugsrecht() { + return bezugsrecht; + } + + /** + * Legt den Wert der bezugsrecht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BezugsrechtType } + * + */ + public void setBezugsrecht(BezugsrechtType value) { + this.bezugsrecht = value; + } + + /** + * Ruft den Wert der zielpraemie-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getZielpraemie() { + return zielpraemie; + } + + /** + * Legt den Wert der zielpraemie-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setZielpraemie(BigDecimal value) { + this.zielpraemie = value; + } + + /** + * Ruft den Wert der eingeschraenkt-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isEingeschraenkt() { + return eingeschraenkt; + } + + /** + * Legt den Wert der eingeschraenkt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setEingeschraenkt(Boolean value) { + this.eingeschraenkt = value; + } + + /** + * Ruft den Wert der neuwertklausel-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isNeuwertklausel() { + return neuwertklausel; + } + + /** + * Legt den Wert der neuwertklausel-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setNeuwertklausel(Boolean value) { + this.neuwertklausel = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/LenkerUnfallKfzType.java new file mode 100644 index 00000000..3db61a0a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/LenkerUnfallKfzType.java @@ -0,0 +1,34 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Lenkerunfall + * + *

Java-Klasse für LenkerUnfallKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="LenkerUnfallKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LenkerUnfallKfz_Type") +public class LenkerUnfallKfzType + extends ElementarproduktKfzType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ObjectFactory.java new file mode 100644 index 00000000..1c340e08 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ObjectFactory.java @@ -0,0 +1,409 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); + private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); + private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); + private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); + private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); + private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); + private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); + private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); + private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CreateVBRequest } + * + */ + public CreateVBRequest createCreateVBRequest() { + return new CreateVBRequest(); + } + + /** + * Create an instance of {@link VorversicherungenKfzType } + * + */ + public VorversicherungenKfzType createVorversicherungenKfzType() { + return new VorversicherungenKfzType(); + } + + /** + * Create an instance of {@link CreateOfferKfzResponseType } + * + */ + public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { + return new CreateOfferKfzResponseType(); + } + + /** + * Create an instance of {@link CalculateKfzRequestType } + * + */ + public CalculateKfzRequestType createCalculateKfzRequestType() { + return new CalculateKfzRequestType(); + } + + /** + * Create an instance of {@link CalculateKfzResponseType } + * + */ + public CalculateKfzResponseType createCalculateKfzResponseType() { + return new CalculateKfzResponseType(); + } + + /** + * Create an instance of {@link CreateOfferKfzRequestType } + * + */ + public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { + return new CreateOfferKfzRequestType(); + } + + /** + * Create an instance of {@link CreateApplicationKfzRequestType } + * + */ + public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { + return new CreateApplicationKfzRequestType(); + } + + /** + * Create an instance of {@link CreateApplicationKfzResponseType } + * + */ + public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { + return new CreateApplicationKfzResponseType(); + } + + /** + * Create an instance of {@link SubmitApplicationKfzRequestType } + * + */ + public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { + return new SubmitApplicationKfzRequestType(); + } + + /** + * Create an instance of {@link SubmitApplicationKfzResponseType } + * + */ + public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { + return new SubmitApplicationKfzResponseType(); + } + + /** + * Create an instance of {@link CreateVBRequest.Fahrzeug } + * + */ + public CreateVBRequest.Fahrzeug createCreateVBRequestFahrzeug() { + return new CreateVBRequest.Fahrzeug(); + } + + /** + * Create an instance of {@link CreateVBResponse } + * + */ + public CreateVBResponse createCreateVBResponse() { + return new CreateVBResponse(); + } + + /** + * Create an instance of {@link VerkaufsproduktKfzType } + * + */ + public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { + return new VerkaufsproduktKfzType(); + } + + /** + * Create an instance of {@link ProduktKfzType } + * + */ + public ProduktKfzType createProduktKfzType() { + return new ProduktKfzType(); + } + + /** + * Create an instance of {@link HaftpflichtKfzType } + * + */ + public HaftpflichtKfzType createHaftpflichtKfzType() { + return new HaftpflichtKfzType(); + } + + /** + * Create an instance of {@link TeilkaskoKfzType } + * + */ + public TeilkaskoKfzType createTeilkaskoKfzType() { + return new TeilkaskoKfzType(); + } + + /** + * Create an instance of {@link VollkaskoKfzType } + * + */ + public VollkaskoKfzType createVollkaskoKfzType() { + return new VollkaskoKfzType(); + } + + /** + * Create an instance of {@link InsassenUnfallKfzType } + * + */ + public InsassenUnfallKfzType createInsassenUnfallKfzType() { + return new InsassenUnfallKfzType(); + } + + /** + * Create an instance of {@link LenkerUnfallKfzType } + * + */ + public LenkerUnfallKfzType createLenkerUnfallKfzType() { + return new LenkerUnfallKfzType(); + } + + /** + * Create an instance of {@link AssistanceKfzType } + * + */ + public AssistanceKfzType createAssistanceKfzType() { + return new AssistanceKfzType(); + } + + /** + * Create an instance of {@link ProduktKfzRechtsschutzType } + * + */ + public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { + return new ProduktKfzRechtsschutzType(); + } + + /** + * Create an instance of {@link VerkehrsrechtsschutzKfzType } + * + */ + public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { + return new VerkehrsrechtsschutzKfzType(); + } + + /** + * Create an instance of {@link SpezBerechnungKfzType } + * + */ + public SpezBerechnungKfzType createSpezBerechnungKfzType() { + return new SpezBerechnungKfzType(); + } + + /** + * Create an instance of {@link SpezOffertKfzType } + * + */ + public SpezOffertKfzType createSpezOffertKfzType() { + return new SpezOffertKfzType(); + } + + /** + * Create an instance of {@link SpezAntragKfzType } + * + */ + public SpezAntragKfzType createSpezAntragKfzType() { + return new SpezAntragKfzType(); + } + + /** + * Create an instance of {@link ZusaetzlicheKfzdatenType } + * + */ + public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { + return new ZusaetzlicheKfzdatenType(); + } + + /** + * Create an instance of {@link WechselkennzeichenType } + * + */ + public WechselkennzeichenType createWechselkennzeichenType() { + return new WechselkennzeichenType(); + } + + /** + * Create an instance of {@link FzZustandBesichtigungType } + * + */ + public FzZustandBesichtigungType createFzZustandBesichtigungType() { + return new FzZustandBesichtigungType(); + } + + /** + * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } + * + */ + public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { + return new ZusaetzlicheAntragsdatenKfzType(); + } + + /** + * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } + * + */ + public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { + return new VorversicherungenKfzType.VorversicherungKfz(); + } + + /** + * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } + * + */ + public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { + return new CreateOfferKfzResponseType.Offertantwort(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") + public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { + return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") + public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { + return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") + public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { + return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") + public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { + return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") + public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { + return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") + public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { + return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") + public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { + return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") + public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { + return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link Integer }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") + public JAXBElement createFahrzeugRefLfdNr(Integer value) { + return new JAXBElement(_FahrzeugRefLfdNr_QNAME, Integer.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java new file mode 100644 index 00000000..18aa5d78 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht + * + *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktKfzRechtsschutz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
+ *       <sequence>
+ *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { + "verkehrsrechtsschutz" +}) +public class ProduktKfzRechtsschutzType + extends ZusatzproduktKfzType +{ + + @XmlElement(name = "Verkehrsrechtsschutz", required = true) + protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; + + /** + * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkehrsrechtsschutzKfzType } + * + */ + public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { + return verkehrsrechtsschutz; + } + + /** + * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkehrsrechtsschutzKfzType } + * + */ + public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { + this.verkehrsrechtsschutz = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzType.java new file mode 100644 index 00000000..b10d101f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ProduktKfzType.java @@ -0,0 +1,236 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht + * + *

Java-Klasse für ProduktKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
+ *       <sequence>
+ *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type" minOccurs="0"/>
+ *         <choice>
+ *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         </choice>
+ *         <element name="Kasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktKfz_Type", propOrder = { + "haftpflicht", + "teilkasko", + "vollkasko", + "kasko", + "insassenunfall", + "assistance" +}) +public class ProduktKfzType + extends ProduktType +{ + + @XmlElement(name = "Haftpflicht") + protected HaftpflichtKfzType haftpflicht; + @XmlElement(name = "Teilkasko") + protected List teilkasko; + @XmlElement(name = "Vollkasko") + protected List vollkasko; + @XmlElement(name = "Kasko") + protected List kasko; + @XmlElement(name = "Insassenunfall") + protected List insassenunfall; + @XmlElement(name = "Assistance") + protected List assistance; + + /** + * Ruft den Wert der haftpflicht-Eigenschaft ab. + * + * @return + * possible object is + * {@link HaftpflichtKfzType } + * + */ + public HaftpflichtKfzType getHaftpflicht() { + return haftpflicht; + } + + /** + * Legt den Wert der haftpflicht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link HaftpflichtKfzType } + * + */ + public void setHaftpflicht(HaftpflichtKfzType value) { + this.haftpflicht = value; + } + + /** + * Gets the value of the teilkasko property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the teilkasko property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTeilkasko().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TeilkaskoKfzType } + * + * + */ + public List getTeilkasko() { + if (teilkasko == null) { + teilkasko = new ArrayList(); + } + return this.teilkasko; + } + + /** + * Gets the value of the vollkasko property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vollkasko property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVollkasko().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VollkaskoKfzType } + * + * + */ + public List getVollkasko() { + if (vollkasko == null) { + vollkasko = new ArrayList(); + } + return this.vollkasko; + } + + /** + * Gets the value of the kasko property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the kasko property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKasko().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KaskoKfzType } + * + * + */ + public List getKasko() { + if (kasko == null) { + kasko = new ArrayList(); + } + return this.kasko; + } + + /** + * Gets the value of the insassenunfall property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the insassenunfall property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getInsassenunfall().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsassenUnfallKfzType } + * + * + */ + public List getInsassenunfall() { + if (insassenunfall == null) { + insassenunfall = new ArrayList(); + } + return this.insassenunfall; + } + + /** + * Gets the value of the assistance property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the assistance property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAssistance().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AssistanceKfzType } + * + * + */ + public List getAssistance() { + if (assistance == null) { + assistance = new ArrayList(); + } + return this.assistance; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAmFahrzeugType.java new file mode 100644 index 00000000..435e9437 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAmFahrzeugType.java @@ -0,0 +1,50 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SchaedenAmFahrzeug_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="SchaedenAmFahrzeug_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="keine Schäden an der Karosserie"/>
+ *     <enumeration value="Schäden an der Karosserie"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "SchaedenAmFahrzeug_Type") +@XmlEnum +public enum SchaedenAmFahrzeugType { + + @XmlEnumValue("keine Sch\u00e4den an der Karosserie") + KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), + @XmlEnumValue("Sch\u00e4den an der Karosserie") + SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); + private final String value; + + SchaedenAmFahrzeugType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static SchaedenAmFahrzeugType fromValue(String v) { + for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java new file mode 100644 index 00000000..6bb55524 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java @@ -0,0 +1,50 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="SchaedenAnScheibenKleinglas_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
+ *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "SchaedenAnScheibenKleinglas_Type") +@XmlEnum +public enum SchaedenAnScheibenKleinglasType { + + @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") + KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), + @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") + SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); + private final String value; + + SchaedenAnScheibenKleinglasType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static SchaedenAnScheibenKleinglasType fromValue(String v) { + for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezAntragKfzType.java new file mode 100644 index 00000000..1f813747 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezAntragKfzType.java @@ -0,0 +1,153 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.BonusMalusSystemType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VinkularglaeubigerType; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezAntragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird + * + *

Java-Klasse für SpezAntragKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntragKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
+ *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
+ *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
+ *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntragKfz_Type", propOrder = { + "verkaufsprodukt", + "bonusMalus", + "vinkulierung", + "zusaetzlicheKfzDaten" +}) +public class SpezAntragKfzType + extends SpezAntragType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKfzType verkaufsprodukt; + @XmlElement(name = "BonusMalus") + protected BonusMalusSystemType bonusMalus; + @XmlElement(name = "Vinkulierung") + protected VinkularglaeubigerType vinkulierung; + @XmlElement(name = "ZusaetzlicheKfzDaten") + protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKfzType } + * + */ + public VerkaufsproduktKfzType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKfzType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { + this.verkaufsprodukt = value; + } + + /** + * Ruft den Wert der bonusMalus-Eigenschaft ab. + * + * @return + * possible object is + * {@link BonusMalusSystemType } + * + */ + public BonusMalusSystemType getBonusMalus() { + return bonusMalus; + } + + /** + * Legt den Wert der bonusMalus-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BonusMalusSystemType } + * + */ + public void setBonusMalus(BonusMalusSystemType value) { + this.bonusMalus = value; + } + + /** + * Ruft den Wert der vinkulierung-Eigenschaft ab. + * + * @return + * possible object is + * {@link VinkularglaeubigerType } + * + */ + public VinkularglaeubigerType getVinkulierung() { + return vinkulierung; + } + + /** + * Legt den Wert der vinkulierung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VinkularglaeubigerType } + * + */ + public void setVinkulierung(VinkularglaeubigerType value) { + this.vinkulierung = value; + } + + /** + * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheKfzdatenType } + * + */ + public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { + return zusaetzlicheKfzDaten; + } + + /** + * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheKfzdatenType } + * + */ + public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { + this.zusaetzlicheKfzDaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezBerechnungKfzType.java new file mode 100644 index 00000000..48af75c4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezBerechnungKfzType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezBerechnungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird + * + *

Java-Klasse für SpezBerechnungKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBerechnungKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezBerechnungKfzType + extends SpezBerechnungType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKfzType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKfzType } + * + */ + public VerkaufsproduktKfzType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKfzType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezOffertKfzType.java new file mode 100644 index 00000000..266d4898 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SpezOffertKfzType.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezOffertType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird + * + *

Java-Klasse für SpezOffertKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezOffertKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezOffertKfz_Type", propOrder = { + "verkaufsprodukt" +}) +@XmlSeeAlso({ + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class +}) +public class SpezOffertKfzType + extends SpezOffertType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKfzType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKfzType } + * + */ + public VerkaufsproduktKfzType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKfzType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java new file mode 100644 index 00000000..12a30f6d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Antragseinreichung Kfz + * + *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationKfzRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
+ *       <sequence>
+ *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { + "antraganfrage" +}) +public class SubmitApplicationKfzRequestType + extends SubmitApplicationRequestType +{ + + @XmlElement(name = "Antraganfrage") + protected SpezAntragKfzType antraganfrage; + + /** + * Ruft den Wert der antraganfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKfzType } + * + */ + public SpezAntragKfzType getAntraganfrage() { + return antraganfrage; + } + + /** + * Legt den Wert der antraganfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKfzType } + * + */ + public void setAntraganfrage(SpezAntragKfzType value) { + this.antraganfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java new file mode 100644 index 00000000..186464ba --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Antragseinreichung Kfz + * + *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationKfzResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
+ *       <sequence>
+ *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { + "antragantwort" +}) +public class SubmitApplicationKfzResponseType + extends SubmitApplicationResponseType +{ + + @XmlElement(name = "Antragantwort") + protected SpezAntragKfzType antragantwort; + + /** + * Ruft den Wert der antragantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKfzType } + * + */ + public SpezAntragKfzType getAntragantwort() { + return antragantwort; + } + + /** + * Legt den Wert der antragantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKfzType } + * + */ + public void setAntragantwort(SpezAntragKfzType value) { + this.antragantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/TeilkaskoKfzType.java new file mode 100644 index 00000000..287e7a4b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/TeilkaskoKfzType.java @@ -0,0 +1,58 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Teilkasko + * + *

Java-Klasse für TeilkaskoKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="TeilkaskoKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
+ *       <sequence>
+ *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TeilkaskoKfz_Type", propOrder = { + "vandalismusklausel" +}) +public class TeilkaskoKfzType + extends KaskoKfzType +{ + + @XmlElement(name = "Vandalismusklausel") + protected boolean vandalismusklausel; + + /** + * Ruft den Wert der vandalismusklausel-Eigenschaft ab. + * + */ + public boolean isVandalismusklausel() { + return vandalismusklausel; + } + + /** + * Legt den Wert der vandalismusklausel-Eigenschaft fest. + * + */ + public void setVandalismusklausel(boolean value) { + this.vandalismusklausel = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/UpsellingKfzResponseType.java new file mode 100644 index 00000000..4c83034e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/UpsellingKfzResponseType.java @@ -0,0 +1,71 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response Upselling Alternativen + * + *

Java-Klasse für UpsellingKfzResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="UpsellingKfzResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { + "upsellingVerkaufsprodukte" +}) +public abstract class UpsellingKfzResponseType { + + @XmlElement(name = "UpsellingVerkaufsprodukte") + protected List upsellingVerkaufsprodukte; + + /** + * Gets the value of the upsellingVerkaufsprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the upsellingVerkaufsprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getUpsellingVerkaufsprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VerkaufsproduktKfzType } + * + * + */ + public List getUpsellingVerkaufsprodukte() { + if (upsellingVerkaufsprodukte == null) { + upsellingVerkaufsprodukte = new ArrayList(); + } + return this.upsellingVerkaufsprodukte; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VarianteLeihwagenType.java new file mode 100644 index 00000000..8da1524b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VarianteLeihwagenType.java @@ -0,0 +1,47 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für VarianteLeihwagen_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="VarianteLeihwagen_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="VA"/>
+ *     <enumeration value="VB"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "VarianteLeihwagen_Type") +@XmlEnum +public enum VarianteLeihwagenType { + + + /** + * ohne Leihwagen + * + */ + VA, + + /** + * mit Leihwagen + * + */ + VB; + + public String value() { + return name(); + } + + public static VarianteLeihwagenType fromValue(String v) { + return valueOf(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkaufsproduktKfzType.java new file mode 100644 index 00000000..062ac7c2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkaufsproduktKfzType.java @@ -0,0 +1,237 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds2Types.v2_16.PersArtCdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.FahrzeugType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht + * + *

Java-Klasse für VerkaufsproduktKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
+ *       <sequence>
+ *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="PLZ" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="7"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
+ *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { + "gebdat", + "plz", + "persArtCd", + "kfzVersicherung", + "kfzZusatzVersicherung", + "versicherteFahrzeuge" +}) +public class VerkaufsproduktKfzType + extends VerkaufsproduktType +{ + + @XmlElement(name = "Gebdat") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar gebdat; + @XmlElement(name = "PLZ") + protected String plz; + @XmlElement(name = "PersArtCd") + @XmlSchemaType(name = "string") + protected PersArtCdType persArtCd; + @XmlElement(name = "KfzVersicherung") + protected List kfzVersicherung; + @XmlElement(name = "KfzZusatzVersicherung") + protected List kfzZusatzVersicherung; + @XmlElement(name = "VersicherteFahrzeuge") + protected List versicherteFahrzeuge; + + /** + * Ruft den Wert der gebdat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGebdat() { + return gebdat; + } + + /** + * Legt den Wert der gebdat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGebdat(XMLGregorianCalendar value) { + this.gebdat = 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 persArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link PersArtCdType } + * + */ + public PersArtCdType getPersArtCd() { + return persArtCd; + } + + /** + * Legt den Wert der persArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PersArtCdType } + * + */ + public void setPersArtCd(PersArtCdType value) { + this.persArtCd = value; + } + + /** + * Gets the value of the kfzVersicherung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the kfzVersicherung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKfzVersicherung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktKfzType } + * + * + */ + public List getKfzVersicherung() { + if (kfzVersicherung == null) { + kfzVersicherung = new ArrayList(); + } + return this.kfzVersicherung; + } + + /** + * Gets the value of the kfzZusatzVersicherung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the kfzZusatzVersicherung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKfzZusatzVersicherung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusatzproduktKfzType } + * + * + */ + public List getKfzZusatzVersicherung() { + if (kfzZusatzVersicherung == null) { + kfzZusatzVersicherung = new ArrayList(); + } + return this.kfzZusatzVersicherung; + } + + /** + * Gets the value of the versicherteFahrzeuge property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versicherteFahrzeuge property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersicherteFahrzeuge().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FahrzeugType } + * + * + */ + public List getVersicherteFahrzeuge() { + if (versicherteFahrzeuge == null) { + versicherteFahrzeuge = new ArrayList(); + } + return this.versicherteFahrzeuge; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java new file mode 100644 index 00000000..0d15ffae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java @@ -0,0 +1,35 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz + * + *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkehrsrechtsschutzKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkehrsrechtsschutzKfz_Type") +public class VerkehrsrechtsschutzKfzType + extends ElementarproduktType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VollkaskoKfzType.java new file mode 100644 index 00000000..b85fba05 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VollkaskoKfzType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für das Elementarprodukt KFZ-Vollkasko + * + *

Java-Klasse für VollkaskoKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VollkaskoKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
+ *       <sequence>
+ *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VollkaskoKfz_Type", propOrder = { + "leasingklausel" +}) +public class VollkaskoKfzType + extends KaskoKfzType +{ + + @XmlElement(name = "Leasingklausel") + protected Boolean leasingklausel; + + /** + * Ruft den Wert der leasingklausel-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isLeasingklausel() { + return leasingklausel; + } + + /** + * Legt den Wert der leasingklausel-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setLeasingklausel(Boolean value) { + this.leasingklausel = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VorversicherungenKfzType.java new file mode 100644 index 00000000..393dfe5f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/VorversicherungenKfzType.java @@ -0,0 +1,165 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VorversicherungenDetailType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VorversicherungenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. + * + *

Java-Klasse für VorversicherungenKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VorversicherungenKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
+ *       <sequence>
+ *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
+ *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
+ *               </extension>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VorversicherungenKfz_Type", propOrder = { + "vorversicherungKfz", + "vorversicherungRechtsschutz" +}) +public class VorversicherungenKfzType + extends VorversicherungenType +{ + + @XmlElement(name = "VorversicherungKfz") + protected List vorversicherungKfz; + @XmlElement(name = "VorversicherungRechtsschutz") + protected VorversicherungenDetailType vorversicherungRechtsschutz; + + /** + * Gets the value of the vorversicherungKfz property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vorversicherungKfz property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVorversicherungKfz().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VorversicherungenKfzType.VorversicherungKfz } + * + * + */ + public List getVorversicherungKfz() { + if (vorversicherungKfz == null) { + vorversicherungKfz = new ArrayList(); + } + return this.vorversicherungKfz; + } + + /** + * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. + * + * @return + * possible object is + * {@link VorversicherungenDetailType } + * + */ + public VorversicherungenDetailType getVorversicherungRechtsschutz() { + return vorversicherungRechtsschutz; + } + + /** + * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VorversicherungenDetailType } + * + */ + public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { + this.vorversicherungRechtsschutz = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
+     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
+     *     </extension>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "") + public static class VorversicherungKfz + extends VorversicherungenDetailType + { + + @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + protected String vtgSparteCd; + + /** + * Ruft den Wert der vtgSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVtgSparteCd() { + return vtgSparteCd; + } + + /** + * Legt den Wert der vtgSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVtgSparteCd(String value) { + this.vtgSparteCd = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/WechselkennzeichenType.java new file mode 100644 index 00000000..536645ba --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/WechselkennzeichenType.java @@ -0,0 +1,130 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AWechselkennzeichenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardimplementierung von AWechselkennzeichen_Type + * + *

Java-Klasse für Wechselkennzeichen_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Wechselkennzeichen_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}AWechselkennzeichen_Type">
+ *       <sequence>
+ *         <element name="WechselkennzeichenArt">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
+ *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Wechselkennzeichen_Type", propOrder = { + "wechselkennzeichenArt", + "bestehenderWechselkennzeichenvertrag", + "ersetztWirdFahrgestellnummer" +}) +public class WechselkennzeichenType + extends AWechselkennzeichenType +{ + + @XmlElement(name = "WechselkennzeichenArt", required = true) + protected String wechselkennzeichenArt; + @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) + protected String bestehenderWechselkennzeichenvertrag; + @XmlElement(name = "ErsetztWirdFahrgestellnummer") + protected String ersetztWirdFahrgestellnummer; + + /** + * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWechselkennzeichenArt() { + return wechselkennzeichenArt; + } + + /** + * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWechselkennzeichenArt(String value) { + this.wechselkennzeichenArt = value; + } + + /** + * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBestehenderWechselkennzeichenvertrag() { + return bestehenderWechselkennzeichenvertrag; + } + + /** + * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBestehenderWechselkennzeichenvertrag(String value) { + this.bestehenderWechselkennzeichenvertrag = value; + } + + /** + * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErsetztWirdFahrgestellnummer() { + return ersetztWirdFahrgestellnummer; + } + + /** + * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErsetztWirdFahrgestellnummer(String value) { + this.ersetztWirdFahrgestellnummer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java new file mode 100644 index 00000000..09e98462 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag + * + *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") +public class ZusaetzlicheAntragsdatenKfzType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java new file mode 100644 index 00000000..5393aefc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java @@ -0,0 +1,271 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type zusätzliche Kfz-Daten; Deprecated, Elemente sind ab + * Version 1.11 in Fahrzeug_Type enthalten. + * + *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheKfzdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="KfzKennzeichen">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="3"/>
+ *               <maxLength value="9"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
+ *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
+ *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
+ *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { + "kfzKennzeichen", + "fahrgestellnummer", + "erfolgtAnmeldungZeitgleichMitAbmeldung", + "abmeldedatumWechselkennzeichenFahrzeug", + "wechselkennzeichen", + "fahrzeugzustand", + "fzZustandBesichtigung", + "zusaetzlicheAntragsdatenKfz" +}) +public class ZusaetzlicheKfzdatenType { + + @XmlElement(name = "KfzKennzeichen", required = true) + protected String kfzKennzeichen; + @XmlElement(name = "Fahrgestellnummer", required = true) + protected String fahrgestellnummer; + @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") + protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; + @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; + @XmlElement(name = "Wechselkennzeichen") + protected WechselkennzeichenType wechselkennzeichen; + @XmlElement(name = "Fahrzeugzustand") + protected String fahrzeugzustand; + @XmlElement(name = "FzZustandBesichtigung") + protected FzZustandBesichtigungType fzZustandBesichtigung; + @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") + protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; + + /** + * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKfzKennzeichen() { + return kfzKennzeichen; + } + + /** + * Legt den Wert der kfzKennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKfzKennzeichen(String value) { + this.kfzKennzeichen = value; + } + + /** + * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestellnummer() { + return fahrgestellnummer; + } + + /** + * Legt den Wert der fahrgestellnummer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestellnummer(String value) { + this.fahrgestellnummer = value; + } + + /** + * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { + return erfolgtAnmeldungZeitgleichMitAbmeldung; + } + + /** + * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { + this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; + } + + /** + * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { + return abmeldedatumWechselkennzeichenFahrzeug; + } + + /** + * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { + this.abmeldedatumWechselkennzeichenFahrzeug = value; + } + + /** + * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link WechselkennzeichenType } + * + */ + public WechselkennzeichenType getWechselkennzeichen() { + return wechselkennzeichen; + } + + /** + * Legt den Wert der wechselkennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WechselkennzeichenType } + * + */ + public void setWechselkennzeichen(WechselkennzeichenType value) { + this.wechselkennzeichen = value; + } + + /** + * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrzeugzustand() { + return fahrzeugzustand; + } + + /** + * Legt den Wert der fahrzeugzustand-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrzeugzustand(String value) { + this.fahrzeugzustand = value; + } + + /** + * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. + * + * @return + * possible object is + * {@link FzZustandBesichtigungType } + * + */ + public FzZustandBesichtigungType getFzZustandBesichtigung() { + return fzZustandBesichtigung; + } + + /** + * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link FzZustandBesichtigungType } + * + */ + public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { + this.fzZustandBesichtigung = value; + } + + /** + * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheAntragsdatenKfzType } + * + */ + public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { + return zusaetzlicheAntragsdatenKfz; + } + + /** + * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheAntragsdatenKfzType } + * + */ + public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { + this.zusaetzlicheAntragsdatenKfz = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java new file mode 100644 index 00000000..9c83591a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Erweiterungsmöglichkeit für Versicherungsbestaetigung + * + *

Java-Klasse für ZusaetzlicheVBDaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheVBDaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheVBDaten_Type") +public abstract class ZusaetzlicheVBDatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusatzproduktKfzType.java new file mode 100644 index 00000000..52e9bf14 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/ZusatzproduktKfzType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. + * + *

Java-Klasse für ZusatzproduktKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzproduktKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
+ *       <sequence>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzproduktKfz_Type", propOrder = { + "fahrzeugRefLfdNr" +}) +@XmlSeeAlso({ + ProduktKfzRechtsschutzType.class +}) +public abstract class ZusatzproduktKfzType + extends ProduktType +{ + + @XmlElement(name = "FahrzeugRefLfdNr") + @XmlSchemaType(name = "unsignedShort") + protected Integer fahrzeugRefLfdNr; + + /** + * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFahrzeugRefLfdNr() { + return fahrzeugRefLfdNr; + } + + /** + * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFahrzeugRefLfdNr(Integer value) { + this.fahrzeugRefLfdNr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/package-info.java new file mode 100644 index 00000000..f775f989 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kfz/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenRequest.java new file mode 100644 index 00000000..10a398e6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenRequest.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Berechnung Kranken + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "berechnungsanfrage" +}) +@XmlRootElement(name = "CalculateKrankenRequest") +public class CalculateKrankenRequest + extends CalculateRequestGenType +{ + + @XmlElement(name = "Berechnungsanfrage", required = true) + protected SpezBerechnungKrankenType berechnungsanfrage; + + /** + * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungKrankenType } + * + */ + public SpezBerechnungKrankenType getBerechnungsanfrage() { + return berechnungsanfrage; + } + + /** + * Legt den Wert der berechnungsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungKrankenType } + * + */ + public void setBerechnungsanfrage(SpezBerechnungKrankenType value) { + this.berechnungsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenResponse.java new file mode 100644 index 00000000..eb1c8dc6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CalculateKrankenResponse.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Kranken-Berechnung + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "berechnungsantwort" +}) +@XmlRootElement(name = "CalculateKrankenResponse") +public class CalculateKrankenResponse + extends CalculateResponseGenType +{ + + @XmlElement(name = "Berechnungsantwort", required = true) + protected SpezBerechnungKrankenType berechnungsantwort; + + /** + * Ruft den Wert der berechnungsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungKrankenType } + * + */ + public SpezBerechnungKrankenType getBerechnungsantwort() { + return berechnungsantwort; + } + + /** + * Legt den Wert der berechnungsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungKrankenType } + * + */ + public void setBerechnungsantwort(SpezBerechnungKrankenType value) { + this.berechnungsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenRequest.java new file mode 100644 index 00000000..c343ea8f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenRequest.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requestobjekts für die Erstellung eines Krankenantrags + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "antragsanfrage" +}) +@XmlRootElement(name = "CreateApplicationKrankenRequest") +public class CreateApplicationKrankenRequest + extends CreateApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage", required = true) + protected SpezAntragKrankenType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKrankenType } + * + */ + public SpezAntragKrankenType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKrankenType } + * + */ + public void setAntragsanfrage(SpezAntragKrankenType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenResponse.java new file mode 100644 index 00000000..e48881ac --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateApplicationKrankenResponse.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für die Erstellung eines Krankenantrags + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "antragsantwort" +}) +@XmlRootElement(name = "CreateApplicationKrankenResponse") +public class CreateApplicationKrankenResponse + extends CreateApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragKrankenType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKrankenType } + * + */ + public SpezAntragKrankenType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKrankenType } + * + */ + public void setAntragsantwort(SpezAntragKrankenType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenRequest.java new file mode 100644 index 00000000..ed0db2d6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenRequest.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
+ *       <sequence>
+ *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "offertanfrage" +}) +@XmlRootElement(name = "CreateOfferKrankenRequest") +public class CreateOfferKrankenRequest + extends CreateOfferRequestGenType +{ + + @XmlElement(name = "Offertanfrage", required = true) + protected SpezOffertKrankenType offertanfrage; + + /** + * Ruft den Wert der offertanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertKrankenType } + * + */ + public SpezOffertKrankenType getOffertanfrage() { + return offertanfrage; + } + + /** + * Legt den Wert der offertanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertKrankenType } + * + */ + public void setOffertanfrage(SpezOffertKrankenType value) { + this.offertanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenResponse.java new file mode 100644 index 00000000..f73efc19 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/CreateOfferKrankenResponse.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für eine Erstellung eines Kranken-Offerts + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
+ *       <sequence>
+ *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "offertantwort" +}) +@XmlRootElement(name = "CreateOfferKrankenResponse") +public class CreateOfferKrankenResponse + extends CreateOfferResponseGenType +{ + + @XmlElement(name = "Offertantwort", required = true) + protected SpezOffertKrankenType offertantwort; + + /** + * Ruft den Wert der offertantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertKrankenType } + * + */ + public SpezOffertKrankenType getOffertantwort() { + return offertantwort; + } + + /** + * Legt den Wert der offertantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertKrankenType } + * + */ + public void setOffertantwort(SpezOffertKrankenType value) { + this.offertantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ElementarproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ElementarproduktKrankenType.java new file mode 100644 index 00000000..30ba9d90 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ElementarproduktKrankenType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. + * + *

Java-Klasse für ElementarproduktKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ElementarproduktKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktKranken_Type", propOrder = { + "selbstbehalt" +}) +public class ElementarproduktKrankenType + extends ElementarproduktGenerischType +{ + + @XmlElement(name = "Selbstbehalt") + protected SelbstbehaltType selbstbehalt; + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link SelbstbehaltType } + * + */ + public SelbstbehaltType getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SelbstbehaltType } + * + */ + public void setSelbstbehalt(SelbstbehaltType value) { + this.selbstbehalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ObjectFactory.java new file mode 100644 index 00000000..a391be40 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ObjectFactory.java @@ -0,0 +1,144 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CalculateKrankenRequest } + * + */ + public CalculateKrankenRequest createCalculateKrankenRequest() { + return new CalculateKrankenRequest(); + } + + /** + * Create an instance of {@link SpezBerechnungKrankenType } + * + */ + public SpezBerechnungKrankenType createSpezBerechnungKrankenType() { + return new SpezBerechnungKrankenType(); + } + + /** + * Create an instance of {@link CalculateKrankenResponse } + * + */ + public CalculateKrankenResponse createCalculateKrankenResponse() { + return new CalculateKrankenResponse(); + } + + /** + * Create an instance of {@link CreateOfferKrankenRequest } + * + */ + public CreateOfferKrankenRequest createCreateOfferKrankenRequest() { + return new CreateOfferKrankenRequest(); + } + + /** + * Create an instance of {@link SpezOffertKrankenType } + * + */ + public SpezOffertKrankenType createSpezOffertKrankenType() { + return new SpezOffertKrankenType(); + } + + /** + * Create an instance of {@link CreateOfferKrankenResponse } + * + */ + public CreateOfferKrankenResponse createCreateOfferKrankenResponse() { + return new CreateOfferKrankenResponse(); + } + + /** + * Create an instance of {@link CreateApplicationKrankenRequest } + * + */ + public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() { + return new CreateApplicationKrankenRequest(); + } + + /** + * Create an instance of {@link SpezAntragKrankenType } + * + */ + public SpezAntragKrankenType createSpezAntragKrankenType() { + return new SpezAntragKrankenType(); + } + + /** + * Create an instance of {@link CreateApplicationKrankenResponse } + * + */ + public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() { + return new CreateApplicationKrankenResponse(); + } + + /** + * Create an instance of {@link SubmitApplicationKrankenRequest } + * + */ + public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() { + return new SubmitApplicationKrankenRequest(); + } + + /** + * Create an instance of {@link SubmitApplicationKrankenResponse } + * + */ + public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() { + return new SubmitApplicationKrankenResponse(); + } + + /** + * Create an instance of {@link VerkaufsproduktKrankenType } + * + */ + public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() { + return new VerkaufsproduktKrankenType(); + } + + /** + * Create an instance of {@link ProduktKrankenType } + * + */ + public ProduktKrankenType createProduktKrankenType() { + return new ProduktKrankenType(); + } + + /** + * Create an instance of {@link ElementarproduktKrankenType } + * + */ + public ElementarproduktKrankenType createElementarproduktKrankenType() { + return new ElementarproduktKrankenType(); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ProduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ProduktKrankenType.java new file mode 100644 index 00000000..0bedc387 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/ProduktKrankenType.java @@ -0,0 +1,103 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktMitVpType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. + * + *

Java-Klasse für ProduktKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
+ *       <sequence>
+ *         <element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktKranken_Type", propOrder = { + "elementarprodukte", + "selbstbehalt" +}) +public class ProduktKrankenType + extends ProduktMitVpType +{ + + @XmlElement(name = "Elementarprodukte") + protected List elementarprodukte; + @XmlElement(name = "Selbstbehalt") + protected SelbstbehaltType selbstbehalt; + + /** + * Gets the value of the elementarprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elementarprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getElementarprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ElementarproduktKrankenType } + * + * + */ + public List getElementarprodukte() { + if (elementarprodukte == null) { + elementarprodukte = new ArrayList(); + } + return this.elementarprodukte; + } + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link SelbstbehaltType } + * + */ + public SelbstbehaltType getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SelbstbehaltType } + * + */ + public void setSelbstbehalt(SelbstbehaltType value) { + this.selbstbehalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezAntragKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezAntragKrankenType.java new file mode 100644 index 00000000..4358c2a3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezAntragKrankenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezAntragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Antrags-Erzeugung + * + *

Java-Klasse für SpezAntragKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntragKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntragKranken_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezAntragKrankenType + extends SpezAntragType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKrankenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKrankenType } + * + */ + public VerkaufsproduktKrankenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKrankenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezBerechnungKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezBerechnungKrankenType.java new file mode 100644 index 00000000..e5428111 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezBerechnungKrankenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezBerechnungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Berechnung + * + *

Java-Klasse für SpezBerechnungKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBerechnungKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBerechnungKranken_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezBerechnungKrankenType + extends SpezBerechnungType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKrankenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKrankenType } + * + */ + public VerkaufsproduktKrankenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKrankenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezOffertKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezOffertKrankenType.java new file mode 100644 index 00000000..537e82ae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SpezOffertKrankenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezOffertType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Offert-Erzeugung + * + *

Java-Klasse für SpezOffertKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezOffertKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezOffertKranken_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezOffertKrankenType + extends SpezOffertType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktKrankenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktKrankenType } + * + */ + public VerkaufsproduktKrankenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktKrankenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java new file mode 100644 index 00000000..d47784f9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requests, um den Antrag einzureichen + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "antragsanfrage" +}) +@XmlRootElement(name = "SubmitApplicationKrankenRequest") +public class SubmitApplicationKrankenRequest + extends SubmitApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage") + protected SpezAntragKrankenType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKrankenType } + * + */ + public SpezAntragKrankenType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKrankenType } + * + */ + public void setAntragsanfrage(SpezAntragKrankenType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java new file mode 100644 index 00000000..fd611e74 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java @@ -0,0 +1,69 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Response, um den Antrag einzureichen + * + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "antragsantwort" +}) +@XmlRootElement(name = "SubmitApplicationKrankenResponse") +public class SubmitApplicationKrankenResponse + extends SubmitApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragKrankenType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragKrankenType } + * + */ + public SpezAntragKrankenType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragKrankenType } + * + */ + public void setAntragsantwort(SpezAntragKrankenType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/VerkaufsproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/VerkaufsproduktKrankenType.java new file mode 100644 index 00000000..2cf863a1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/VerkaufsproduktKrankenType.java @@ -0,0 +1,170 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertePersonType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung + * + *

Java-Klasse für VerkaufsproduktKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Krankenprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
+ *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
+ *         <element name="Gruppe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = { + "krankenprodukte", + "zusatzprodukte", + "versichertePersonen", + "gruppe" +}) +public class VerkaufsproduktKrankenType + extends VerkaufsproduktGenerischType +{ + + @XmlElement(name = "Krankenprodukte", required = true) + protected List krankenprodukte; + @XmlElement(name = "Zusatzprodukte") + protected List zusatzprodukte; + @XmlElement(name = "VersichertePersonen", required = true) + protected List versichertePersonen; + @XmlElement(name = "Gruppe") + protected String gruppe; + + /** + * Gets the value of the krankenprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the krankenprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKrankenprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktKrankenType } + * + * + */ + public List getKrankenprodukte() { + if (krankenprodukte == null) { + krankenprodukte = new ArrayList(); + } + return this.krankenprodukte; + } + + /** + * Gets the value of the zusatzprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusatzprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusatzprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktGenerischType } + * + * + */ + public List getZusatzprodukte() { + if (zusatzprodukte == null) { + zusatzprodukte = new ArrayList(); + } + return this.zusatzprodukte; + } + + /** + * Gets the value of the versichertePersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versichertePersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersichertePersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VersichertePersonType } + * + * + */ + public List getVersichertePersonen() { + if (versichertePersonen == null) { + versichertePersonen = new ArrayList(); + } + return this.versichertePersonen; + } + + /** + * Ruft den Wert der gruppe-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGruppe() { + return gruppe; + } + + /** + * Legt den Wert der gruppe-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGruppe(String value) { + this.gruppe = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/package-info.java new file mode 100644 index 00000000..f79e3c9d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/kranken/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenRequestType.java new file mode 100644 index 00000000..b4fd1c2a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Berechnung Leben + * + *

Java-Klasse für CalculateLebenRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateLebenRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateLebenRequest_Type", propOrder = { + "berechnungsanfrage" +}) +public class CalculateLebenRequestType + extends CalculateRequestGenType +{ + + @XmlElement(name = "Berechnungsanfrage", required = true) + protected SpezBerechnungLebenType berechnungsanfrage; + + /** + * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungLebenType } + * + */ + public SpezBerechnungLebenType getBerechnungsanfrage() { + return berechnungsanfrage; + } + + /** + * Legt den Wert der berechnungsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungLebenType } + * + */ + public void setBerechnungsanfrage(SpezBerechnungLebenType value) { + this.berechnungsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenResponseType.java new file mode 100644 index 00000000..0d4336e4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CalculateLebenResponseType.java @@ -0,0 +1,102 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Leben-Berechnung + * + *

Java-Klasse für CalculateLebenResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateLebenResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
+ *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateLebenResponse_Type", propOrder = { + "berechnungsantwort", + "upsellingvarianten" +}) +public class CalculateLebenResponseType + extends CalculateResponseGenType +{ + + @XmlElement(name = "Berechnungsantwort", required = true) + protected SpezBerechnungLebenType berechnungsantwort; + @XmlElement(name = "Upsellingvarianten") + protected List upsellingvarianten; + + /** + * Ruft den Wert der berechnungsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungLebenType } + * + */ + public SpezBerechnungLebenType getBerechnungsantwort() { + return berechnungsantwort; + } + + /** + * Legt den Wert der berechnungsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungLebenType } + * + */ + public void setBerechnungsantwort(SpezBerechnungLebenType value) { + this.berechnungsantwort = value; + } + + /** + * Gets the value of the upsellingvarianten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the upsellingvarianten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getUpsellingvarianten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SpezBerechnungLebenType } + * + * + */ + public List getUpsellingvarianten() { + if (upsellingvarianten == null) { + upsellingvarianten = new ArrayList(); + } + return this.upsellingvarianten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenRequestType.java new file mode 100644 index 00000000..cd2c2981 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requestobjekts für die Erstellung eines Leben-Antrags + * + *

Java-Klasse für CreateApplicationLebenRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationLebenRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = { + "antragsanfrage" +}) +public class CreateApplicationLebenRequestType + extends CreateApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage", required = true) + protected SpezAntragLebenType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragLebenType } + * + */ + public SpezAntragLebenType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragLebenType } + * + */ + public void setAntragsanfrage(SpezAntragLebenType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenResponseType.java new file mode 100644 index 00000000..0b936a4b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateApplicationLebenResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für die Erstellung eines Leben-Antrags + * + *

Java-Klasse für CreateApplicationLebenResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationLebenResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = { + "antragsantwort" +}) +public class CreateApplicationLebenResponseType + extends CreateApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragLebenType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragLebenType } + * + */ + public SpezAntragLebenType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragLebenType } + * + */ + public void setAntragsantwort(SpezAntragLebenType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenRequestType.java new file mode 100644 index 00000000..d29ce96a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Erstellung eines Leben-Offerts + * + *

Java-Klasse für CreateOfferLebenRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferLebenRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
+ *       <sequence>
+ *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = { + "offertanfrage" +}) +public class CreateOfferLebenRequestType + extends CreateOfferRequestGenType +{ + + @XmlElement(name = "Offertanfrage", required = true) + protected SpezOffertLebenType offertanfrage; + + /** + * Ruft den Wert der offertanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertLebenType } + * + */ + public SpezOffertLebenType getOffertanfrage() { + return offertanfrage; + } + + /** + * Legt den Wert der offertanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertLebenType } + * + */ + public void setOffertanfrage(SpezOffertLebenType value) { + this.offertanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenResponseType.java new file mode 100644 index 00000000..e4a8d37b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/CreateOfferLebenResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für eine Erstellung eines Leben-Offerts + * + *

Java-Klasse für CreateOfferLebenResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferLebenResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
+ *       <sequence>
+ *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = { + "offertantwort" +}) +public class CreateOfferLebenResponseType + extends CreateOfferResponseGenType +{ + + @XmlElement(name = "Offertantwort", required = true) + protected SpezOffertLebenType offertantwort; + + /** + * Ruft den Wert der offertantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertLebenType } + * + */ + public SpezOffertLebenType getOffertantwort() { + return offertantwort; + } + + /** + * Legt den Wert der offertantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertLebenType } + * + */ + public void setOffertantwort(SpezOffertLebenType value) { + this.offertantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ObjectFactory.java new file mode 100644 index 00000000..185d6d21 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ObjectFactory.java @@ -0,0 +1,358 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest"); + private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse"); + private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest"); + private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse"); + private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest"); + private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse"); + private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest"); + private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse"); + private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CalculateLebenRequestType } + * + */ + public CalculateLebenRequestType createCalculateLebenRequestType() { + return new CalculateLebenRequestType(); + } + + /** + * Create an instance of {@link CalculateLebenResponseType } + * + */ + public CalculateLebenResponseType createCalculateLebenResponseType() { + return new CalculateLebenResponseType(); + } + + /** + * Create an instance of {@link CreateOfferLebenRequestType } + * + */ + public CreateOfferLebenRequestType createCreateOfferLebenRequestType() { + return new CreateOfferLebenRequestType(); + } + + /** + * Create an instance of {@link CreateOfferLebenResponseType } + * + */ + public CreateOfferLebenResponseType createCreateOfferLebenResponseType() { + return new CreateOfferLebenResponseType(); + } + + /** + * Create an instance of {@link CreateApplicationLebenRequestType } + * + */ + public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() { + return new CreateApplicationLebenRequestType(); + } + + /** + * Create an instance of {@link CreateApplicationLebenResponseType } + * + */ + public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() { + return new CreateApplicationLebenResponseType(); + } + + /** + * Create an instance of {@link SubmitApplicationLebenRequestType } + * + */ + public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() { + return new SubmitApplicationLebenRequestType(); + } + + /** + * Create an instance of {@link SubmitApplicationLebenResponseType } + * + */ + public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() { + return new SubmitApplicationLebenResponseType(); + } + + /** + * Create an instance of {@link VerkaufsproduktLebenType } + * + */ + public VerkaufsproduktLebenType createVerkaufsproduktLebenType() { + return new VerkaufsproduktLebenType(); + } + + /** + * Create an instance of {@link ProduktLebenType } + * + */ + public ProduktLebenType createProduktLebenType() { + return new ProduktLebenType(); + } + + /** + * Create an instance of {@link TarifLebenType } + * + */ + public TarifLebenType createTarifLebenType() { + return new TarifLebenType(); + } + + /** + * Create an instance of {@link ZusatzversicherungLebenType } + * + */ + public ZusatzversicherungLebenType createZusatzversicherungLebenType() { + return new ZusatzversicherungLebenType(); + } + + /** + * Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType } + * + */ + public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() { + return new ZusatzversicherungBerufsunfaehigkeitType(); + } + + /** + * Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType } + * + */ + public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() { + return new ZusatzversicherungErwerbsunfaehigkeitType(); + } + + /** + * Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType } + * + */ + public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() { + return new ZusatzversicherungPraemienuebernahmeAblebenType(); + } + + /** + * Create an instance of {@link ZusatzversicherungUnfalltodType } + * + */ + public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() { + return new ZusatzversicherungUnfalltodType(); + } + + /** + * Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType } + * + */ + public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() { + return new ZusatzversicherungUnfallinvaliditaetType(); + } + + /** + * Create an instance of {@link ZusatzproduktLebenType } + * + */ + public ZusatzproduktLebenType createZusatzproduktLebenType() { + return new ZusatzproduktLebenType(); + } + + /** + * Create an instance of {@link RentenoptionType } + * + */ + public RentenoptionType createRentenoptionType() { + return new RentenoptionType(); + } + + /** + * Create an instance of {@link VersicherungssummeZusatzbausteinType } + * + */ + public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() { + return new VersicherungssummeZusatzbausteinType(); + } + + /** + * Create an instance of {@link SpezBerechnungLebenType } + * + */ + public SpezBerechnungLebenType createSpezBerechnungLebenType() { + return new SpezBerechnungLebenType(); + } + + /** + * Create an instance of {@link SpezOffertLebenType } + * + */ + public SpezOffertLebenType createSpezOffertLebenType() { + return new SpezOffertLebenType(); + } + + /** + * Create an instance of {@link SpezAntragLebenType } + * + */ + public SpezAntragLebenType createSpezAntragLebenType() { + return new SpezAntragLebenType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest") + public JAXBElement createCalculateLebenRequest(CalculateLebenRequestType value) { + return new JAXBElement(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse") + public JAXBElement createCalculateLebenResponse(CalculateLebenResponseType value) { + return new JAXBElement(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest") + public JAXBElement createCreateOfferLebenRequest(CreateOfferLebenRequestType value) { + return new JAXBElement(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse") + public JAXBElement createCreateOfferLebenResponse(CreateOfferLebenResponseType value) { + return new JAXBElement(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest") + public JAXBElement createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) { + return new JAXBElement(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse") + public JAXBElement createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) { + return new JAXBElement(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest") + public JAXBElement createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) { + return new JAXBElement(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse") + public JAXBElement createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) { + return new JAXBElement(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class) + public JAXBElement createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { + return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class) + public JAXBElement createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { + return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ProduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ProduktLebenType.java new file mode 100644 index 00000000..8f3e8e77 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ProduktLebenType.java @@ -0,0 +1,74 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktMitVpType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Produkt in der Sparte Leben. + * + *

Java-Klasse für ProduktLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
+ *       <sequence>
+ *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktLeben_Type", propOrder = { + "tarife" +}) +public class ProduktLebenType + extends ProduktMitVpType +{ + + @XmlElement(name = "Tarife") + protected List tarife; + + /** + * Gets the value of the tarife property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the tarife property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getTarife().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link TarifLebenType } + * + * + */ + public List getTarife() { + if (tarife == null) { + tarife = new ArrayList(); + } + return this.tarife; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/RentenoptionType.java new file mode 100644 index 00000000..5919c431 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/RentenoptionType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Rentenoption + * + *

Java-Klasse für Rentenoption_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Rentenoption_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Rentenoption_Type") +public class RentenoptionType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezAntragLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezAntragLebenType.java new file mode 100644 index 00000000..28efee99 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezAntragLebenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezAntragPersonenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Antrags-Erzeugung + * + *

Java-Klasse für SpezAntragLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntragLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntragLeben_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezAntragLebenType + extends SpezAntragPersonenType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktLebenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktLebenType } + * + */ + public VerkaufsproduktLebenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktLebenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezBerechnungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezBerechnungLebenType.java new file mode 100644 index 00000000..ba0c6e2d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezBerechnungLebenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezBerechnungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Berechnung + * + *

Java-Klasse für SpezBerechnungLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBerechnungLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBerechnungLeben_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezBerechnungLebenType + extends SpezBerechnungType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktLebenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktLebenType } + * + */ + public VerkaufsproduktLebenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktLebenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezOffertLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezOffertLebenType.java new file mode 100644 index 00000000..ffcfd792 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SpezOffertLebenType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezOffertType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Offert-Erzeugung + * + *

Java-Klasse für SpezOffertLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezOffertLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezOffertLeben_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezOffertLebenType + extends SpezOffertType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktLebenType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktLebenType } + * + */ + public VerkaufsproduktLebenType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktLebenType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenRequestType.java new file mode 100644 index 00000000..9dd59845 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requests, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationLebenRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationLebenRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = { + "antragsanfrage" +}) +public class SubmitApplicationLebenRequestType + extends SubmitApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage") + protected SpezAntragLebenType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragLebenType } + * + */ + public SpezAntragLebenType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragLebenType } + * + */ + public void setAntragsanfrage(SpezAntragLebenType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenResponseType.java new file mode 100644 index 00000000..eac9ddda --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/SubmitApplicationLebenResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Response, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationLebenResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationLebenResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = { + "antragsantwort" +}) +public class SubmitApplicationLebenResponseType + extends SubmitApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragLebenType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragLebenType } + * + */ + public SpezAntragLebenType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragLebenType } + * + */ + public void setAntragsantwort(SpezAntragLebenType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/TarifLebenType.java new file mode 100644 index 00000000..03fffe9d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/TarifLebenType.java @@ -0,0 +1,164 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementFondsauswahlType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktGenerischType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Elementarprodukt in der Sparte Leben. + * + *

Java-Klasse für TarifLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="TarifLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
+ *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
+ *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TarifLeben_Type", propOrder = { + "garantierteAblebenssumme", + "rentenoption", + "fondsauswahl", + "zusatzbausteine" +}) +public class TarifLebenType + extends ElementarproduktGenerischType +{ + + @XmlElement(name = "GarantierteAblebenssumme") + protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; + @XmlElement(name = "Rentenoption") + protected RentenoptionType rentenoption; + @XmlElement(name = "Fondsauswahl") + protected List fondsauswahl; + @XmlElement(name = "Zusatzbausteine") + protected List zusatzbausteine; + + /** + * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. + * + * @return + * possible object is + * {@link VersicherungssummeZusatzbausteinType } + * + */ + public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { + return garantierteAblebenssumme; + } + + /** + * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VersicherungssummeZusatzbausteinType } + * + */ + public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { + this.garantierteAblebenssumme = value; + } + + /** + * Ruft den Wert der rentenoption-Eigenschaft ab. + * + * @return + * possible object is + * {@link RentenoptionType } + * + */ + public RentenoptionType getRentenoption() { + return rentenoption; + } + + /** + * Legt den Wert der rentenoption-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RentenoptionType } + * + */ + public void setRentenoption(RentenoptionType value) { + this.rentenoption = value; + } + + /** + * Gets the value of the fondsauswahl property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the fondsauswahl property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFondsauswahl().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ElementFondsauswahlType } + * + * + */ + public List getFondsauswahl() { + if (fondsauswahl == null) { + fondsauswahl = new ArrayList(); + } + return this.fondsauswahl; + } + + /** + * Gets the value of the zusatzbausteine property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusatzbausteine property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusatzbausteine().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusatzversicherungLebenType } + * + * + */ + public List getZusatzbausteine() { + if (zusatzbausteine == null) { + zusatzbausteine = new ArrayList(); + } + return this.zusatzbausteine; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VerkaufsproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VerkaufsproduktLebenType.java new file mode 100644 index 00000000..828e2c78 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VerkaufsproduktLebenType.java @@ -0,0 +1,142 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertePersonType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Verkaufsprodukt in der Sparte Leben + * + *

Java-Klasse für VerkaufsproduktLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
+ *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = { + "lebenProdukte", + "zusatzprodukte", + "versichertePersonen" +}) +public class VerkaufsproduktLebenType + extends VerkaufsproduktGenerischType +{ + + @XmlElement(name = "LebenProdukte", required = true) + protected List lebenProdukte; + @XmlElement(name = "Zusatzprodukte") + protected List zusatzprodukte; + @XmlElement(name = "VersichertePersonen", required = true) + protected List versichertePersonen; + + /** + * Gets the value of the lebenProdukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the lebenProdukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getLebenProdukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktLebenType } + * + * + */ + public List getLebenProdukte() { + if (lebenProdukte == null) { + lebenProdukte = new ArrayList(); + } + return this.lebenProdukte; + } + + /** + * Gets the value of the zusatzprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusatzprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusatzprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktGenerischType } + * + * + */ + public List getZusatzprodukte() { + if (zusatzprodukte == null) { + zusatzprodukte = new ArrayList(); + } + return this.zusatzprodukte; + } + + /** + * Gets the value of the versichertePersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versichertePersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersichertePersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VersichertePersonType } + * + * + */ + public List getVersichertePersonen() { + if (versichertePersonen == null) { + versichertePersonen = new ArrayList(); + } + return this.versichertePersonen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java new file mode 100644 index 00000000..ed315f0e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AttributDezimalType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AttributDoubleType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Definition einer Versicherungssumme in einem Zusatzbaustein + * + *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersicherungssummeZusatzbaustein_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
+ *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { + "prozentVersicherungssumme", + "betrag" +}) +public class VersicherungssummeZusatzbausteinType { + + @XmlElement(name = "ProzentVersicherungssumme") + protected AttributDoubleType prozentVersicherungssumme; + @XmlElement(name = "Betrag") + protected AttributDezimalType betrag; + + /** + * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributDoubleType } + * + */ + public AttributDoubleType getProzentVersicherungssumme() { + return prozentVersicherungssumme; + } + + /** + * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributDoubleType } + * + */ + public void setProzentVersicherungssumme(AttributDoubleType value) { + this.prozentVersicherungssumme = value; + } + + /** + * Ruft den Wert der betrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link AttributDezimalType } + * + */ + public AttributDezimalType getBetrag() { + return betrag; + } + + /** + * Legt den Wert der betrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AttributDezimalType } + * + */ + public void setBetrag(AttributDezimalType value) { + this.betrag = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/WartefristType.java new file mode 100644 index 00000000..7a896c33 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/WartefristType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstraktes Element zur Abbildung einer Wartefrist + * + *

Java-Klasse für Wartefrist_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Wartefrist_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Wartefrist_Type") +public abstract class WartefristType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzproduktLebenType.java new file mode 100644 index 00000000..f0b761bd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzproduktLebenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren + * + *

Java-Klasse für ZusatzproduktLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzproduktLeben_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzproduktLeben_Type") +public class ZusatzproduktLebenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java new file mode 100644 index 00000000..669847c1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit + * + *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
+ *       <sequence>
+ *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { + "wartefrist" +}) +public class ZusatzversicherungBerufsunfaehigkeitType + extends ZusatzversicherungLebenType +{ + + @XmlElement(name = "Wartefrist") + protected WartefristType wartefrist; + + /** + * Ruft den Wert der wartefrist-Eigenschaft ab. + * + * @return + * possible object is + * {@link WartefristType } + * + */ + public WartefristType getWartefrist() { + return wartefrist; + } + + /** + * Legt den Wert der wartefrist-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WartefristType } + * + */ + public void setWartefrist(WartefristType value) { + this.wartefrist = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java new file mode 100644 index 00000000..7d858b47 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit + * + *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
+ *       <sequence>
+ *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { + "wartefrist" +}) +public class ZusatzversicherungErwerbsunfaehigkeitType + extends ZusatzversicherungLebenType +{ + + @XmlElement(name = "Wartefrist") + protected WartefristType wartefrist; + + /** + * Ruft den Wert der wartefrist-Eigenschaft ab. + * + * @return + * possible object is + * {@link WartefristType } + * + */ + public WartefristType getWartefrist() { + return wartefrist; + } + + /** + * Legt den Wert der wartefrist-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WartefristType } + * + */ + public void setWartefrist(WartefristType value) { + this.wartefrist = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungLebenType.java new file mode 100644 index 00000000..d521431d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungLebenType.java @@ -0,0 +1,43 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZusatzproduktGenerischType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) + * + *

Java-Klasse für ZusatzversicherungLeben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungLeben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungLeben_Type") +@XmlSeeAlso({ + ZusatzversicherungBerufsunfaehigkeitType.class, + ZusatzversicherungErwerbsunfaehigkeitType.class, + ZusatzversicherungPraemienuebernahmeAblebenType.class, + ZusatzversicherungUnfalltodType.class, + ZusatzversicherungUnfallinvaliditaetType.class +}) +public class ZusatzversicherungLebenType + extends ZusatzproduktGenerischType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java new file mode 100644 index 00000000..1c081d46 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall + * + *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
+ *       <sequence>
+ *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { + "wartefrist" +}) +public class ZusatzversicherungPraemienuebernahmeAblebenType + extends ZusatzversicherungLebenType +{ + + @XmlElement(name = "Wartefrist") + protected WartefristType wartefrist; + + /** + * Ruft den Wert der wartefrist-Eigenschaft ab. + * + * @return + * possible object is + * {@link WartefristType } + * + */ + public WartefristType getWartefrist() { + return wartefrist; + } + + /** + * Legt den Wert der wartefrist-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WartefristType } + * + */ + public void setWartefrist(WartefristType value) { + this.wartefrist = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java new file mode 100644 index 00000000..28d29157 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet + * + *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
+ *       <sequence>
+ *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { + "rest" +}) +public class ZusatzversicherungUnfallinvaliditaetType + extends ZusatzversicherungLebenType +{ + + @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) + protected List> rest; + + /** + * Ruft das restliche Contentmodell ab. + * + *

+ * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: + * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: + * Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd + * Zeile 1623 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd + *

+ * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine + * der beiden folgenden Deklarationen an, um deren Namen zu ändern: + * Gets the value of the rest property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the rest property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRest().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + * + * + */ + public List> getRest() { + if (rest == null) { + rest = new ArrayList>(); + } + return this.rest; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java new file mode 100644 index 00000000..53bf43d7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java @@ -0,0 +1,84 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod + * + *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusatzversicherungUnfalltod_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
+ *       <sequence>
+ *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { + "rest" +}) +public class ZusatzversicherungUnfalltodType + extends ZusatzversicherungLebenType +{ + + @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) + protected List> rest; + + /** + * Ruft das restliche Contentmodell ab. + * + *

+ * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: + * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: + * Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd + * Zeile 1623 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd + *

+ * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine + * der beiden folgenden Deklarationen an, um deren Namen zu ändern: + * Gets the value of the rest property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the rest property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRest().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} + * + * + */ + public List> getRest() { + if (rest == null) { + rest = new ArrayList>(); + } + return this.rest; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/package-info.java new file mode 100644 index 00000000..3f12d8c3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/leben/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/AntragSachPrivatType.java new file mode 100644 index 00000000..6b4879cb --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/AntragSachPrivatType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezAntragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird + * + *

Java-Klasse für AntragSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="AntragSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AntragSachPrivat_Type", propOrder = { + "verkaufsprodukt" +}) +public class AntragSachPrivatType + extends SpezAntragType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktSachPrivatType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java new file mode 100644 index 00000000..feb11a4c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezBerechnungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird + * + *

Java-Klasse für BerechnungSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BerechnungSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { + "verkaufsprodukt" +}) +public class BerechnungSachPrivatType + extends SpezBerechnungType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktSachPrivatType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java new file mode 100644 index 00000000..b7739e7c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Berechnung Sach-Privat + * + *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateSachPrivatRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { + "berechnungsanfrage" +}) +public class CalculateSachPrivatRequestType + extends CalculateRequestGenType +{ + + @XmlElement(name = "Berechnungsanfrage", required = true) + protected BerechnungSachPrivatType berechnungsanfrage; + + /** + * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link BerechnungSachPrivatType } + * + */ + public BerechnungSachPrivatType getBerechnungsanfrage() { + return berechnungsanfrage; + } + + /** + * Legt den Wert der berechnungsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BerechnungSachPrivatType } + * + */ + public void setBerechnungsanfrage(BerechnungSachPrivatType value) { + this.berechnungsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java new file mode 100644 index 00000000..a0fce971 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java @@ -0,0 +1,95 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Berechnung Sach-Privat + * + *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateSachPrivatResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
+ *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { + "berechnungsantwort", + "responseUpselling" +}) +public class CalculateSachPrivatResponseType + extends CalculateResponseGenType +{ + + @XmlElement(name = "Berechnungsantwort", required = true) + protected BerechnungSachPrivatType berechnungsantwort; + @XmlElement(name = "ResponseUpselling") + protected UpsellingSachPrivatResponseType responseUpselling; + + /** + * Ruft den Wert der berechnungsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link BerechnungSachPrivatType } + * + */ + public BerechnungSachPrivatType getBerechnungsantwort() { + return berechnungsantwort; + } + + /** + * Legt den Wert der berechnungsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BerechnungSachPrivatType } + * + */ + public void setBerechnungsantwort(BerechnungSachPrivatType value) { + this.berechnungsantwort = value; + } + + /** + * Ruft den Wert der responseUpselling-Eigenschaft ab. + * + * @return + * possible object is + * {@link UpsellingSachPrivatResponseType } + * + */ + public UpsellingSachPrivatResponseType getResponseUpselling() { + return responseUpselling; + } + + /** + * Legt den Wert der responseUpselling-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link UpsellingSachPrivatResponseType } + * + */ + public void setResponseUpselling(UpsellingSachPrivatResponseType value) { + this.responseUpselling = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java new file mode 100644 index 00000000..168fe1d2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für einen Antrag Besitz + * + *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationSachPrivatRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { + "antragsanfrage" +}) +public class CreateApplicationSachPrivatRequestType + extends CreateApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage", required = true) + protected AntragSachPrivatType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link AntragSachPrivatType } + * + */ + public AntragSachPrivatType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AntragSachPrivatType } + * + */ + public void setAntragsanfrage(AntragSachPrivatType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java new file mode 100644 index 00000000..0aac41df --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für einen Antrag Besitz + * + *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationSachPrivatResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { + "antragsantwort" +}) +public class CreateApplicationSachPrivatResponseType + extends CreateApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected AntragSachPrivatType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link AntragSachPrivatType } + * + */ + public AntragSachPrivatType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AntragSachPrivatType } + * + */ + public void setAntragsantwort(AntragSachPrivatType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java new file mode 100644 index 00000000..e56f25ac --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für ein Offert Sach-Privat + * + *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferSachPrivatRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
+ *       <sequence>
+ *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { + "offertanfrage" +}) +public class CreateOfferSachPrivatRequestType + extends CreateOfferRequestGenType +{ + + @XmlElement(name = "Offertanfrage", required = true) + protected OffertSachPrivatType offertanfrage; + + /** + * Ruft den Wert der offertanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link OffertSachPrivatType } + * + */ + public OffertSachPrivatType getOffertanfrage() { + return offertanfrage; + } + + /** + * Legt den Wert der offertanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OffertSachPrivatType } + * + */ + public void setOffertanfrage(OffertSachPrivatType value) { + this.offertanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java new file mode 100644 index 00000000..1fe528d8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für ein Offert Besitz + * + *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferSachPrivatResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
+ *       <sequence>
+ *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { + "offertantwort" +}) +public class CreateOfferSachPrivatResponseType + extends CreateOfferResponseGenType +{ + + @XmlElement(name = "Offertantwort", required = true) + protected OffertSachPrivatType offertantwort; + + /** + * Ruft den Wert der offertantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link OffertSachPrivatType } + * + */ + public OffertSachPrivatType getOffertantwort() { + return offertantwort; + } + + /** + * Legt den Wert der offertantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OffertSachPrivatType } + * + */ + public void setOffertantwort(OffertSachPrivatType value) { + this.offertantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java new file mode 100644 index 00000000..5a9291c9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java @@ -0,0 +1,38 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird + * + *

Java-Klasse für ElementarproduktGebaeude_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ElementarproduktGebaeude_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktGebaeude_Type") +@XmlSeeAlso({ + GenElementarproduktGebaeudeType.class +}) +public class ElementarproduktGebaeudeType + extends ElementarproduktSachPrivatType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java new file mode 100644 index 00000000..28fdaba7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java @@ -0,0 +1,38 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird + * + *

Java-Klasse für ElementarproduktHaushalt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ElementarproduktHaushalt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktHaushalt_Type") +@XmlSeeAlso({ + GenElementarproduktHaushaltType.class +}) +public class ElementarproduktHaushaltType + extends ElementarproduktSachPrivatType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java new file mode 100644 index 00000000..a4d32e77 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java @@ -0,0 +1,281 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.KostenFixOderProzentType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen + * + *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ElementarproduktSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
+ *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
+ *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
+ *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { + "versObjekteRefLfnr", + "pauschalbetrag", + "selbstbehalt", + "unterversicherungsverzicht", + "prozentVersicherungssumme", + "nebenkosten", + "vorsorge", + "hoechsthaftungssumme" +}) +@XmlSeeAlso({ + ElementarproduktGebaeudeType.class, + ElementarproduktHaushaltType.class +}) +public class ElementarproduktSachPrivatType + extends ElementarproduktGenerischType +{ + + @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) + @XmlSchemaType(name = "unsignedShort") + protected List versObjekteRefLfnr; + @XmlElement(name = "Pauschalbetrag") + protected BigDecimal pauschalbetrag; + @XmlElement(name = "Selbstbehalt") + protected SelbstbehaltType selbstbehalt; + @XmlElement(name = "Unterversicherungsverzicht") + protected Boolean unterversicherungsverzicht; + @XmlElement(name = "ProzentVersicherungssumme") + @XmlSchemaType(name = "unsignedShort") + protected Integer prozentVersicherungssumme; + @XmlElement(name = "Nebenkosten") + protected KostenFixOderProzentType nebenkosten; + @XmlElement(name = "Vorsorge") + protected KostenFixOderProzentType vorsorge; + @XmlElement(name = "Hoechsthaftungssumme") + protected BigDecimal hoechsthaftungssumme; + + /** + * Gets the value of the versObjekteRefLfnr property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versObjekteRefLfnr property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersObjekteRefLfnr().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getVersObjekteRefLfnr() { + if (versObjekteRefLfnr == null) { + versObjekteRefLfnr = new ArrayList(); + } + return this.versObjekteRefLfnr; + } + + /** + * Ruft den Wert der pauschalbetrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPauschalbetrag() { + return pauschalbetrag; + } + + /** + * Legt den Wert der pauschalbetrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPauschalbetrag(BigDecimal value) { + this.pauschalbetrag = value; + } + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link SelbstbehaltType } + * + */ + public SelbstbehaltType getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SelbstbehaltType } + * + */ + public void setSelbstbehalt(SelbstbehaltType value) { + this.selbstbehalt = value; + } + + /** + * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isUnterversicherungsverzicht() { + return unterversicherungsverzicht; + } + + /** + * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setUnterversicherungsverzicht(Boolean value) { + this.unterversicherungsverzicht = value; + } + + /** + * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getProzentVersicherungssumme() { + return prozentVersicherungssumme; + } + + /** + * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setProzentVersicherungssumme(Integer value) { + this.prozentVersicherungssumme = value; + } + + /** + * Ruft den Wert der nebenkosten-Eigenschaft ab. + * + * @return + * possible object is + * {@link KostenFixOderProzentType } + * + */ + public KostenFixOderProzentType getNebenkosten() { + return nebenkosten; + } + + /** + * Legt den Wert der nebenkosten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KostenFixOderProzentType } + * + */ + public void setNebenkosten(KostenFixOderProzentType value) { + this.nebenkosten = value; + } + + /** + * Ruft den Wert der vorsorge-Eigenschaft ab. + * + * @return + * possible object is + * {@link KostenFixOderProzentType } + * + */ + public KostenFixOderProzentType getVorsorge() { + return vorsorge; + } + + /** + * Legt den Wert der vorsorge-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link KostenFixOderProzentType } + * + */ + public void setVorsorge(KostenFixOderProzentType value) { + this.vorsorge = value; + } + + /** + * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getHoechsthaftungssumme() { + return hoechsthaftungssumme; + } + + /** + * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setHoechsthaftungssumme(BigDecimal value) { + this.hoechsthaftungssumme = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java new file mode 100644 index 00000000..7ca7f850 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. + * + *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GenElementarproduktGebaeude_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
+ *       <sequence>
+ *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { + "sparte" +}) +public class GenElementarproduktGebaeudeType + extends ElementarproduktGebaeudeType +{ + + @XmlElement(name = "Sparte", required = true) + protected String sparte; + + /** + * Ruft den Wert der sparte-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSparte() { + return sparte; + } + + /** + * Legt den Wert der sparte-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSparte(String value) { + this.sparte = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java new file mode 100644 index 00000000..752107f0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java @@ -0,0 +1,66 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. + * + *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GenElementarproduktHaushalt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
+ *       <sequence>
+ *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { + "sparte" +}) +public class GenElementarproduktHaushaltType + extends ElementarproduktHaushaltType +{ + + @XmlElement(name = "Sparte", required = true) + protected String sparte; + + /** + * Ruft den Wert der sparte-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSparte() { + return sparte; + } + + /** + * Legt den Wert der sparte-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSparte(String value) { + this.sparte = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/NebengebaeudeType.java new file mode 100644 index 00000000..962c7ea7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/NebengebaeudeType.java @@ -0,0 +1,98 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Nebengebaeude_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="Nebengebaeude_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="Abstellgebaeude"/>
+ *     <enumeration value="Badehütte"/>
+ *     <enumeration value="Bootshaus"/>
+ *     <enumeration value="Carport"/>
+ *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
+ *     <enumeration value="Garage"/>
+ *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
+ *     <enumeration value="Holzhütte"/>
+ *     <enumeration value="Keller"/>
+ *     <enumeration value="Mobilheim (stationaer)"/>
+ *     <enumeration value="Nebengebaeude"/>
+ *     <enumeration value="Nebengebaeude mit Garage"/>
+ *     <enumeration value="Presshaus"/>
+ *     <enumeration value="Sauna"/>
+ *     <enumeration value="Scheune / Schuppen / Stadel"/>
+ *     <enumeration value="Werkstaette"/>
+ *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
+ *     <enumeration value="Wintergarten, Veranda"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "Nebengebaeude_Type") +@XmlEnum +public enum NebengebaeudeType { + + @XmlEnumValue("Abstellgebaeude") + ABSTELLGEBAEUDE("Abstellgebaeude"), + @XmlEnumValue("Badeh\u00fctte") + BADEHÜTTE("Badeh\u00fctte"), + @XmlEnumValue("Bootshaus") + BOOTSHAUS("Bootshaus"), + @XmlEnumValue("Carport") + CARPORT("Carport"), + @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") + EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), + @XmlEnumValue("Garage") + GARAGE("Garage"), + @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") + GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), + @XmlEnumValue("Holzh\u00fctte") + HOLZHÜTTE("Holzh\u00fctte"), + @XmlEnumValue("Keller") + KELLER("Keller"), + @XmlEnumValue("Mobilheim (stationaer)") + MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), + @XmlEnumValue("Nebengebaeude") + NEBENGEBAEUDE("Nebengebaeude"), + @XmlEnumValue("Nebengebaeude mit Garage") + NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), + @XmlEnumValue("Presshaus") + PRESSHAUS("Presshaus"), + @XmlEnumValue("Sauna") + SAUNA("Sauna"), + @XmlEnumValue("Scheune / Schuppen / Stadel") + SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), + @XmlEnumValue("Werkstaette") + WERKSTAETTE("Werkstaette"), + @XmlEnumValue("Werkzeug- und Geraeteschuppen") + WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), + @XmlEnumValue("Wintergarten, Veranda") + WINTERGARTEN_VERANDA("Wintergarten, Veranda"); + private final String value; + + NebengebaeudeType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static NebengebaeudeType fromValue(String v) { + for (NebengebaeudeType c: NebengebaeudeType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ObjectFactory.java new file mode 100644 index 00000000..bba612de --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ObjectFactory.java @@ -0,0 +1,407 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); + private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); + private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); + private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); + private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); + private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); + private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); + private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); + private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); + private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link ProduktGebaeudeversicherungType } + * + */ + public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { + return new ProduktGebaeudeversicherungType(); + } + + /** + * Create an instance of {@link ProduktHaushaltsversicherungType } + * + */ + public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { + return new ProduktHaushaltsversicherungType(); + } + + /** + * Create an instance of {@link CalculateSachPrivatRequestType } + * + */ + public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { + return new CalculateSachPrivatRequestType(); + } + + /** + * Create an instance of {@link CalculateSachPrivatResponseType } + * + */ + public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { + return new CalculateSachPrivatResponseType(); + } + + /** + * Create an instance of {@link CreateOfferSachPrivatRequestType } + * + */ + public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { + return new CreateOfferSachPrivatRequestType(); + } + + /** + * Create an instance of {@link CreateOfferSachPrivatResponseType } + * + */ + public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { + return new CreateOfferSachPrivatResponseType(); + } + + /** + * Create an instance of {@link CreateApplicationSachPrivatRequestType } + * + */ + public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { + return new CreateApplicationSachPrivatRequestType(); + } + + /** + * Create an instance of {@link CreateApplicationSachPrivatResponseType } + * + */ + public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { + return new CreateApplicationSachPrivatResponseType(); + } + + /** + * Create an instance of {@link SubmitApplicationSachPrivatRequestType } + * + */ + public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { + return new SubmitApplicationSachPrivatRequestType(); + } + + /** + * Create an instance of {@link SubmitApplicationSachPrivatResponseType } + * + */ + public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { + return new SubmitApplicationSachPrivatResponseType(); + } + + /** + * Create an instance of {@link VersichertesObjektSachPrivatType } + * + */ + public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { + return new VersichertesObjektSachPrivatType(); + } + + /** + * Create an instance of {@link RisikoAdresseType } + * + */ + public RisikoAdresseType createRisikoAdresseType() { + return new RisikoAdresseType(); + } + + /** + * Create an instance of {@link RisikoHaushaltType } + * + */ + public RisikoHaushaltType createRisikoHaushaltType() { + return new RisikoHaushaltType(); + } + + /** + * Create an instance of {@link RisikoGebaeudeType } + * + */ + public RisikoGebaeudeType createRisikoGebaeudeType() { + return new RisikoGebaeudeType(); + } + + /** + * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } + * + */ + public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { + return new ZusaetzlicheGebaeudedatenWintergartenType(); + } + + /** + * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } + * + */ + public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { + return new ZusaetzlicheGebaeudedatenSolarthermieType(); + } + + /** + * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } + * + */ + public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { + return new ZusaetzlicheGebaeudedatenSchwimmbadType(); + } + + /** + * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } + * + */ + public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { + return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); + } + + /** + * Create an instance of {@link VerkaufsproduktSachPrivatType } + * + */ + public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { + return new VerkaufsproduktSachPrivatType(); + } + + /** + * Create an instance of {@link ProduktSachPrivatType } + * + */ + public ProduktSachPrivatType createProduktSachPrivatType() { + return new ProduktSachPrivatType(); + } + + /** + * Create an instance of {@link ElementarproduktSachPrivatType } + * + */ + public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { + return new ElementarproduktSachPrivatType(); + } + + /** + * Create an instance of {@link ElementarproduktGebaeudeType } + * + */ + public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { + return new ElementarproduktGebaeudeType(); + } + + /** + * Create an instance of {@link ElementarproduktHaushaltType } + * + */ + public ElementarproduktHaushaltType createElementarproduktHaushaltType() { + return new ElementarproduktHaushaltType(); + } + + /** + * Create an instance of {@link GenElementarproduktGebaeudeType } + * + */ + public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { + return new GenElementarproduktGebaeudeType(); + } + + /** + * Create an instance of {@link GenElementarproduktHaushaltType } + * + */ + public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { + return new GenElementarproduktHaushaltType(); + } + + /** + * Create an instance of {@link BerechnungSachPrivatType } + * + */ + public BerechnungSachPrivatType createBerechnungSachPrivatType() { + return new BerechnungSachPrivatType(); + } + + /** + * Create an instance of {@link OffertSachPrivatType } + * + */ + public OffertSachPrivatType createOffertSachPrivatType() { + return new OffertSachPrivatType(); + } + + /** + * Create an instance of {@link AntragSachPrivatType } + * + */ + public AntragSachPrivatType createAntragSachPrivatType() { + return new AntragSachPrivatType(); + } + + /** + * Create an instance of {@link UpsellingSachPrivatResponseType } + * + */ + public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { + return new UpsellingSachPrivatResponseType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") + public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { + return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") + public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { + return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") + public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { + return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") + public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { + return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") + public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { + return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") + public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { + return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") + public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { + return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") + public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { + return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") + public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { + return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") + public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { + return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/OffertSachPrivatType.java new file mode 100644 index 00000000..8c3f7efa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/OffertSachPrivatType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezOffertType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird + * + *

Java-Klasse für OffertSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OffertSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OffertSachPrivat_Type", propOrder = { + "verkaufsprodukt" +}) +public class OffertSachPrivatType + extends SpezOffertType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktSachPrivatType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktSachPrivatType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java new file mode 100644 index 00000000..37f13e43 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifischerer Typ für Gebaeudeversicherungs-Produkte + * + *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktGebaeudeversicherung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
+ *       <sequence>
+ *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { + "deckungen" +}) +public class ProduktGebaeudeversicherungType + extends ProduktSachPrivatType +{ + + @XmlElement(name = "Deckungen") + protected List deckungen; + + /** + * Gets the value of the deckungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the deckungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDeckungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ElementarproduktGebaeudeType } + * + * + */ + public List getDeckungen() { + if (deckungen == null) { + deckungen = new ArrayList(); + } + return this.deckungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java new file mode 100644 index 00000000..c6aef118 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte + * + *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktHaushaltsversicherung_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
+ *       <sequence>
+ *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { + "deckungen" +}) +public class ProduktHaushaltsversicherungType + extends ProduktSachPrivatType +{ + + @XmlElement(name = "Deckungen") + protected List deckungen; + + /** + * Gets the value of the deckungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the deckungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDeckungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ElementarproduktHaushaltType } + * + * + */ + public List getDeckungen() { + if (deckungen == null) { + deckungen = new ArrayList(); + } + return this.deckungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktSachPrivatType.java new file mode 100644 index 00000000..577c7392 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ProduktSachPrivatType.java @@ -0,0 +1,115 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen + * + *

Java-Klasse für ProduktSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktSachPrivat_Type", propOrder = { + "versObjekteRefLfnr", + "selbstbehalt" +}) +@XmlSeeAlso({ + ProduktGebaeudeversicherungType.class, + ProduktHaushaltsversicherungType.class +}) +public class ProduktSachPrivatType + extends ProduktGenerischType +{ + + @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) + @XmlSchemaType(name = "unsignedShort") + protected List versObjekteRefLfnr; + @XmlElement(name = "Selbstbehalt") + protected List selbstbehalt; + + /** + * Gets the value of the versObjekteRefLfnr property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versObjekteRefLfnr property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersObjekteRefLfnr().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getVersObjekteRefLfnr() { + if (versObjekteRefLfnr == null) { + versObjekteRefLfnr = new ArrayList(); + } + return this.versObjekteRefLfnr; + } + + /** + * Gets the value of the selbstbehalt property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the selbstbehalt property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSelbstbehalt().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SelbstbehaltType } + * + * + */ + public List getSelbstbehalt() { + if (selbstbehalt == null) { + selbstbehalt = new ArrayList(); + } + return this.selbstbehalt; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoAdresseType.java new file mode 100644 index 00000000..0feb6e42 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoAdresseType.java @@ -0,0 +1,181 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds2Types.v2_16.ADRESSEType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type zur Beschreibung einer Risikoadresse + * + *

Java-Klasse für RisikoAdresse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RisikoAdresse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds20}ADRESSE_Type">
+ *       <sequence>
+ *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
+ *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RisikoAdresse_Type", propOrder = { + "horazone", + "imVerbautenOrt", + "ausserhalbDesOrtsgebiets", + "erreichbarkeitFuerLoeschfahrzeuge", + "tarifzone" +}) +public class RisikoAdresseType + extends ADRESSEType +{ + + @XmlElement(name = "Horazone") + @XmlSchemaType(name = "unsignedByte") + protected Short horazone; + @XmlElement(name = "ImVerbautenOrt") + protected Boolean imVerbautenOrt; + @XmlElement(name = "AusserhalbDesOrtsgebiets") + protected Boolean ausserhalbDesOrtsgebiets; + @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") + protected Boolean erreichbarkeitFuerLoeschfahrzeuge; + @XmlElement(name = "Tarifzone") + protected String tarifzone; + + /** + * Ruft den Wert der horazone-Eigenschaft ab. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getHorazone() { + return horazone; + } + + /** + * Legt den Wert der horazone-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setHorazone(Short value) { + this.horazone = value; + } + + /** + * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isImVerbautenOrt() { + return imVerbautenOrt; + } + + /** + * Legt den Wert der imVerbautenOrt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setImVerbautenOrt(Boolean value) { + this.imVerbautenOrt = value; + } + + /** + * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAusserhalbDesOrtsgebiets() { + return ausserhalbDesOrtsgebiets; + } + + /** + * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAusserhalbDesOrtsgebiets(Boolean value) { + this.ausserhalbDesOrtsgebiets = value; + } + + /** + * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { + return erreichbarkeitFuerLoeschfahrzeuge; + } + + /** + * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { + this.erreichbarkeitFuerLoeschfahrzeuge = value; + } + + /** + * Ruft den Wert der tarifzone-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTarifzone() { + return tarifzone; + } + + /** + * Legt den Wert der tarifzone-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTarifzone(String value) { + this.tarifzone = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoGebaeudeType.java new file mode 100644 index 00000000..2dfb5d6d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoGebaeudeType.java @@ -0,0 +1,427 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.ELFlaecheType; +import at.vvo.omds.types.omds2Types.v2_16.Entsch2Type; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseMitAttributMetadatenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type zur Risikobeschreibung Gebäude + * + *

Java-Klasse für RisikoGebaeude_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RisikoGebaeude_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
+ *       <sequence>
+ *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
+ *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
+ *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
+ *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
+ *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
+ *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
+ *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
+ *         <element name="PreisProQm" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RisikoGebaeude_Type", propOrder = { + "gebaeudeArtCd", + "gebaeudeBez", + "nutzungCd", + "bauartCd", + "dachungCd", + "gebaeudeHoeheCd", + "baujahrGebaeude", + "elFlaeche", + "vorschaeden", + "ausstattungCd", + "sichergKz", + "preisProQm", + "zusaetzlicheGebaeudedaten" +}) +public class RisikoGebaeudeType + extends VersichertesInteresseMitAttributMetadatenType +{ + + @XmlElement(name = "GebaeudeArtCd", required = true) + protected String gebaeudeArtCd; + @XmlElement(name = "GebaeudeBez", required = true) + protected String gebaeudeBez; + @XmlElement(name = "NutzungCd") + protected String nutzungCd; + @XmlElement(name = "BauartCd") + protected String bauartCd; + @XmlElement(name = "DachungCd") + protected String dachungCd; + @XmlElement(name = "GebaeudeHoeheCd") + protected String gebaeudeHoeheCd; + @XmlElement(name = "BaujahrGebaeude") + protected BigInteger baujahrGebaeude; + @XmlElement(name = "EL-Flaeche") + protected List elFlaeche; + @XmlElement(name = "Vorschaeden") + @XmlSchemaType(name = "string") + protected List vorschaeden; + @XmlElement(name = "AusstattungCd") + protected String ausstattungCd; + @XmlElement(name = "SichergKz") + @XmlSchemaType(name = "string") + protected Entsch2Type sichergKz; + @XmlElement(name = "PreisProQm") + protected BigDecimal preisProQm; + @XmlElement(name = "ZusaetzlicheGebaeudedaten") + protected List zusaetzlicheGebaeudedaten; + + /** + * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeArtCd() { + return gebaeudeArtCd; + } + + /** + * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeArtCd(String value) { + this.gebaeudeArtCd = value; + } + + /** + * Ruft den Wert der gebaeudeBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeBez() { + return gebaeudeBez; + } + + /** + * Legt den Wert der gebaeudeBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeBez(String value) { + this.gebaeudeBez = value; + } + + /** + * Ruft den Wert der nutzungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNutzungCd() { + return nutzungCd; + } + + /** + * Legt den Wert der nutzungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNutzungCd(String value) { + this.nutzungCd = value; + } + + /** + * Ruft den Wert der bauartCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBauartCd() { + return bauartCd; + } + + /** + * Legt den Wert der bauartCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBauartCd(String value) { + this.bauartCd = value; + } + + /** + * Ruft den Wert der dachungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDachungCd() { + return dachungCd; + } + + /** + * Legt den Wert der dachungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDachungCd(String value) { + this.dachungCd = value; + } + + /** + * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeHoeheCd() { + return gebaeudeHoeheCd; + } + + /** + * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeHoeheCd(String value) { + this.gebaeudeHoeheCd = value; + } + + /** + * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getBaujahrGebaeude() { + return baujahrGebaeude; + } + + /** + * Legt den Wert der baujahrGebaeude-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setBaujahrGebaeude(BigInteger value) { + this.baujahrGebaeude = value; + } + + /** + * Gets the value of the elFlaeche property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elFlaeche property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELFlaeche().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELFlaecheType } + * + * + */ + public List getELFlaeche() { + if (elFlaeche == null) { + elFlaeche = new ArrayList(); + } + return this.elFlaeche; + } + + /** + * Gets the value of the vorschaeden property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vorschaeden property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVorschaeden().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RisikoVorschaedenType } + * + * + */ + public List getVorschaeden() { + if (vorschaeden == null) { + vorschaeden = new ArrayList(); + } + return this.vorschaeden; + } + + /** + * Ruft den Wert der ausstattungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAusstattungCd() { + return ausstattungCd; + } + + /** + * Legt den Wert der ausstattungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAusstattungCd(String value) { + this.ausstattungCd = value; + } + + /** + * Ruft den Wert der sichergKz-Eigenschaft ab. + * + * @return + * possible object is + * {@link Entsch2Type } + * + */ + public Entsch2Type getSichergKz() { + return sichergKz; + } + + /** + * Legt den Wert der sichergKz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Entsch2Type } + * + */ + public void setSichergKz(Entsch2Type value) { + this.sichergKz = value; + } + + /** + * Ruft den Wert der preisProQm-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPreisProQm() { + return preisProQm; + } + + /** + * Legt den Wert der preisProQm-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPreisProQm(BigDecimal value) { + this.preisProQm = value; + } + + /** + * Gets the value of the zusaetzlicheGebaeudedaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheGebaeudedaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheGebaeudedaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheGebaeudedatenType } + * + * + */ + public List getZusaetzlicheGebaeudedaten() { + if (zusaetzlicheGebaeudedaten == null) { + zusaetzlicheGebaeudedaten = new ArrayList(); + } + return this.zusaetzlicheGebaeudedaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoHaushaltType.java new file mode 100644 index 00000000..60e46130 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoHaushaltType.java @@ -0,0 +1,152 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseMitAttributMetadatenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type zur Risikobeschreibung Haushalt + * + *

Java-Klasse für RisikoHaushalt_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RisikoHaushalt_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
+ *       <sequence>
+ *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
+ *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
+ *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RisikoHaushalt_Type", propOrder = { + "wohnflaeche", + "ausstattungCd", + "nutzungCd", + "zusaetzlicheHaushaltDaten" +}) +public class RisikoHaushaltType + extends VersichertesInteresseMitAttributMetadatenType +{ + + @XmlElement(name = "Wohnflaeche") + @XmlSchemaType(name = "unsignedShort") + protected int wohnflaeche; + @XmlElement(name = "AusstattungCd", required = true) + protected String ausstattungCd; + @XmlElement(name = "NutzungCd") + protected String nutzungCd; + @XmlElement(name = "ZusaetzlicheHaushaltDaten") + protected List zusaetzlicheHaushaltDaten; + + /** + * Ruft den Wert der wohnflaeche-Eigenschaft ab. + * + */ + public int getWohnflaeche() { + return wohnflaeche; + } + + /** + * Legt den Wert der wohnflaeche-Eigenschaft fest. + * + */ + public void setWohnflaeche(int value) { + this.wohnflaeche = value; + } + + /** + * Ruft den Wert der ausstattungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAusstattungCd() { + return ausstattungCd; + } + + /** + * Legt den Wert der ausstattungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAusstattungCd(String value) { + this.ausstattungCd = value; + } + + /** + * Ruft den Wert der nutzungCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNutzungCd() { + return nutzungCd; + } + + /** + * Legt den Wert der nutzungCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNutzungCd(String value) { + this.nutzungCd = value; + } + + /** + * Gets the value of the zusaetzlicheHaushaltDaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheHaushaltDaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheHaushaltDaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheHaushaltsdatenType } + * + * + */ + public List getZusaetzlicheHaushaltDaten() { + if (zusaetzlicheHaushaltDaten == null) { + zusaetzlicheHaushaltDaten = new ArrayList(); + } + return this.zusaetzlicheHaushaltDaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoVorschaedenType.java new file mode 100644 index 00000000..24815386 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/RisikoVorschaedenType.java @@ -0,0 +1,53 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für RisikoVorschaeden_Type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="RisikoVorschaeden_Type">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="keine Vorschaeden"/>
+ *     <enumeration value="ein Vorschaden"/>
+ *     <enumeration value="mehr als ein Vorschaden"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "RisikoVorschaeden_Type") +@XmlEnum +public enum RisikoVorschaedenType { + + @XmlEnumValue("keine Vorschaeden") + KEINE_VORSCHAEDEN("keine Vorschaeden"), + @XmlEnumValue("ein Vorschaden") + EIN_VORSCHADEN("ein Vorschaden"), + @XmlEnumValue("mehr als ein Vorschaden") + MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); + private final String value; + + RisikoVorschaedenType(String v) { + value = v; + } + + public String value() { + return value; + } + + public static RisikoVorschaedenType fromValue(String v) { + for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java new file mode 100644 index 00000000..8e8e9560 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requests, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationSachPrivatRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { + "antragsanfrage" +}) +public class SubmitApplicationSachPrivatRequestType + extends SubmitApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage") + protected AntragSachPrivatType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link AntragSachPrivatType } + * + */ + public AntragSachPrivatType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AntragSachPrivatType } + * + */ + public void setAntragsanfrage(AntragSachPrivatType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java new file mode 100644 index 00000000..2bf05d1e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Response, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationSachPrivatResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { + "antragsantwort" +}) +public class SubmitApplicationSachPrivatResponseType + extends SubmitApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected AntragSachPrivatType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link AntragSachPrivatType } + * + */ + public AntragSachPrivatType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AntragSachPrivatType } + * + */ + public void setAntragsantwort(AntragSachPrivatType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java new file mode 100644 index 00000000..b5a4f5c3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response Upselling Sach-Privat + * + *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="UpsellingSachPrivatResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UpsellingSachPrivatResponse_Type") +public class UpsellingSachPrivatResponseType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java new file mode 100644 index 00000000..48fda3ef --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java @@ -0,0 +1,142 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht + * + *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
+ *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { + "produkte", + "zusatzprodukte", + "versicherteObjekte" +}) +public class VerkaufsproduktSachPrivatType + extends VerkaufsproduktGenerischType +{ + + @XmlElement(name = "Produkte", required = true) + protected List produkte; + @XmlElement(name = "Zusatzprodukte") + protected List zusatzprodukte; + @XmlElement(name = "VersicherteObjekte", required = true) + protected List versicherteObjekte; + + /** + * Gets the value of the produkte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the produkte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getProdukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktSachPrivatType } + * + * + */ + public List getProdukte() { + if (produkte == null) { + produkte = new ArrayList(); + } + return this.produkte; + } + + /** + * Gets the value of the zusatzprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusatzprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusatzprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktGenerischType } + * + * + */ + public List getZusatzprodukte() { + if (zusatzprodukte == null) { + zusatzprodukte = new ArrayList(); + } + return this.zusatzprodukte; + } + + /** + * Gets the value of the versicherteObjekte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versicherteObjekte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersicherteObjekte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VersichertesInteresseType } + * + * + */ + public List getVersicherteObjekte() { + if (versicherteObjekte == null) { + versicherteObjekte = new ArrayList(); + } + return this.versicherteObjekte; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java new file mode 100644 index 00000000..ea0f5c1c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java @@ -0,0 +1,159 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseMitAttributMetadatenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type für ein versichertes Objekt in der Sach-Privat-Versicherung + * + *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VersichertesObjektSachPrivat_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
+ *       <sequence>
+ *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
+ *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { + "objektId", + "risikoAdresse", + "risikoGebaeude", + "risikoHaushalt" +}) +public class VersichertesObjektSachPrivatType + extends VersichertesInteresseMitAttributMetadatenType +{ + + @XmlElement(name = "ObjektId") + protected ObjektIdType objektId; + @XmlElement(name = "RisikoAdresse", required = true) + protected RisikoAdresseType risikoAdresse; + @XmlElement(name = "RisikoGebaeude") + protected List risikoGebaeude; + @XmlElement(name = "RisikoHaushalt") + protected RisikoHaushaltType risikoHaushalt; + + /** + * 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 risikoAdresse-Eigenschaft ab. + * + * @return + * possible object is + * {@link RisikoAdresseType } + * + */ + public RisikoAdresseType getRisikoAdresse() { + return risikoAdresse; + } + + /** + * Legt den Wert der risikoAdresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RisikoAdresseType } + * + */ + public void setRisikoAdresse(RisikoAdresseType value) { + this.risikoAdresse = value; + } + + /** + * Gets the value of the risikoGebaeude property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the risikoGebaeude property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRisikoGebaeude().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RisikoGebaeudeType } + * + * + */ + public List getRisikoGebaeude() { + if (risikoGebaeude == null) { + risikoGebaeude = new ArrayList(); + } + return this.risikoGebaeude; + } + + /** + * Ruft den Wert der risikoHaushalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link RisikoHaushaltType } + * + */ + public RisikoHaushaltType getRisikoHaushalt() { + return risikoHaushalt; + } + + /** + * Legt den Wert der risikoHaushalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RisikoHaushaltType } + * + */ + public void setRisikoHaushalt(RisikoHaushaltType value) { + this.risikoHaushalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java new file mode 100644 index 00000000..dede6463 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type + * + *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
+ *       <sequence>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") +public class ZusaetzlicheGebaeudedatenPhotovoltaikType + extends ZusaetzlicheGebaeudedatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java new file mode 100644 index 00000000..7c6ca3ca --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardbaustein Schwimmbad + * + *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
+ *       <sequence>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") +public class ZusaetzlicheGebaeudedatenSchwimmbadType + extends ZusaetzlicheGebaeudedatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java new file mode 100644 index 00000000..44e96441 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Strandardbaustein Solarthermie + * + *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
+ *       <sequence>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") +public class ZusaetzlicheGebaeudedatenSolarthermieType + extends ZusaetzlicheGebaeudedatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java new file mode 100644 index 00000000..300e00bc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java @@ -0,0 +1,39 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp zur Definition zusätzlicher Gebäudedaten + * + *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheGebaeudedaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") +@XmlSeeAlso({ + ZusaetzlicheGebaeudedatenWintergartenType.class, + ZusaetzlicheGebaeudedatenSolarthermieType.class, + ZusaetzlicheGebaeudedatenSchwimmbadType.class, + ZusaetzlicheGebaeudedatenPhotovoltaikType.class +}) +public abstract class ZusaetzlicheGebaeudedatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java new file mode 100644 index 00000000..f330bfd9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java @@ -0,0 +1,36 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Standardbaustein Wintergarten + * + *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
+ *       <sequence>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") +public class ZusaetzlicheGebaeudedatenWintergartenType + extends ZusaetzlicheGebaeudedatenType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java new file mode 100644 index 00000000..c6840afa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten + * + *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") +public abstract class ZusaetzlicheHaushaltsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/package-info.java new file mode 100644 index 00000000..68db88ef --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/sachPrivat/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallRequestType.java new file mode 100644 index 00000000..8edc0de7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Berechnung Unfall + * + *

Java-Klasse für CalculateUnfallRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateUnfallRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateUnfallRequest_Type", propOrder = { + "berechnungsanfrage" +}) +public class CalculateUnfallRequestType + extends CalculateRequestGenType +{ + + @XmlElement(name = "Berechnungsanfrage", required = true) + protected SpezBerechnungUnfallType berechnungsanfrage; + + /** + * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungUnfallType } + * + */ + public SpezBerechnungUnfallType getBerechnungsanfrage() { + return berechnungsanfrage; + } + + /** + * Legt den Wert der berechnungsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungUnfallType } + * + */ + public void setBerechnungsanfrage(SpezBerechnungUnfallType value) { + this.berechnungsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallResponseType.java new file mode 100644 index 00000000..6b99f8b4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CalculateUnfallResponseType.java @@ -0,0 +1,102 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Responseobjekts für eine Unfall-Berechnung + * + *

Java-Klasse für CalculateUnfallResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CalculateUnfallResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
+ *       <sequence>
+ *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
+ *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CalculateUnfallResponse_Type", propOrder = { + "berechnungsantwort", + "upsellingvarianten" +}) +public class CalculateUnfallResponseType + extends CalculateResponseGenType +{ + + @XmlElement(name = "Berechnungsantwort", required = true) + protected SpezBerechnungUnfallType berechnungsantwort; + @XmlElement(name = "Upsellingvarianten") + protected List upsellingvarianten; + + /** + * Ruft den Wert der berechnungsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezBerechnungUnfallType } + * + */ + public SpezBerechnungUnfallType getBerechnungsantwort() { + return berechnungsantwort; + } + + /** + * Legt den Wert der berechnungsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezBerechnungUnfallType } + * + */ + public void setBerechnungsantwort(SpezBerechnungUnfallType value) { + this.berechnungsantwort = value; + } + + /** + * Gets the value of the upsellingvarianten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the upsellingvarianten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getUpsellingvarianten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SpezBerechnungUnfallType } + * + * + */ + public List getUpsellingvarianten() { + if (upsellingvarianten == null) { + upsellingvarianten = new ArrayList(); + } + return this.upsellingvarianten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java new file mode 100644 index 00000000..f8bad8cd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requestobjekts für die Erstellung eines Unfallantrags + * + *

Java-Klasse für CreateApplicationUnfallRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationUnfallRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = { + "antragsanfrage" +}) +public class CreateApplicationUnfallRequestType + extends CreateApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage", required = true) + protected SpezAntragUnfallType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragUnfallType } + * + */ + public SpezAntragUnfallType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragUnfallType } + * + */ + public void setAntragsanfrage(SpezAntragUnfallType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java new file mode 100644 index 00000000..8a392869 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für die Erstellung eines Unfallantrags + * + *

Java-Klasse für CreateApplicationUnfallResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateApplicationUnfallResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = { + "antragsantwort" +}) +public class CreateApplicationUnfallResponseType + extends CreateApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragUnfallType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragUnfallType } + * + */ + public SpezAntragUnfallType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragUnfallType } + * + */ + public void setAntragsantwort(SpezAntragUnfallType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallRequestType.java new file mode 100644 index 00000000..e7818d94 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts + * + *

Java-Klasse für CreateOfferUnfallRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferUnfallRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
+ *       <sequence>
+ *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = { + "offertanfrage" +}) +public class CreateOfferUnfallRequestType + extends CreateOfferRequestGenType +{ + + @XmlElement(name = "Offertanfrage", required = true) + protected SpezOffertUnfallType offertanfrage; + + /** + * Ruft den Wert der offertanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertUnfallType } + * + */ + public SpezOffertUnfallType getOffertanfrage() { + return offertanfrage; + } + + /** + * Legt den Wert der offertanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertUnfallType } + * + */ + public void setOffertanfrage(SpezOffertUnfallType value) { + this.offertanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallResponseType.java new file mode 100644 index 00000000..a8d5e32c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/CreateOfferUnfallResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Responseobjekts für eine Erstellung eines Unfall-Offerts + * + *

Java-Klasse für CreateOfferUnfallResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CreateOfferUnfallResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
+ *       <sequence>
+ *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = { + "offertantwort" +}) +public class CreateOfferUnfallResponseType + extends CreateOfferResponseGenType +{ + + @XmlElement(name = "Offertantwort", required = true) + protected SpezOffertUnfallType offertantwort; + + /** + * Ruft den Wert der offertantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezOffertUnfallType } + * + */ + public SpezOffertUnfallType getOffertantwort() { + return offertantwort; + } + + /** + * Legt den Wert der offertantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezOffertUnfallType } + * + */ + public void setOffertantwort(SpezOffertUnfallType value) { + this.offertantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/LeistungsartUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/LeistungsartUnfallType.java new file mode 100644 index 00000000..d462a422 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/LeistungsartUnfallType.java @@ -0,0 +1,68 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. + * + *

Java-Klasse für LeistungsartUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="LeistungsartUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LeistungsartUnfall_Type", propOrder = { + "selbstbehalt" +}) +public class LeistungsartUnfallType + extends ElementarproduktGenerischType +{ + + @XmlElement(name = "Selbstbehalt") + protected SelbstbehaltType selbstbehalt; + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link SelbstbehaltType } + * + */ + public SelbstbehaltType getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SelbstbehaltType } + * + */ + public void setSelbstbehalt(SelbstbehaltType value) { + this.selbstbehalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ObjectFactory.java new file mode 100644 index 00000000..4d646c71 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ObjectFactory.java @@ -0,0 +1,259 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest"); + private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse"); + private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest"); + private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse"); + private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest"); + private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse"); + private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest"); + private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CalculateUnfallRequestType } + * + */ + public CalculateUnfallRequestType createCalculateUnfallRequestType() { + return new CalculateUnfallRequestType(); + } + + /** + * Create an instance of {@link CalculateUnfallResponseType } + * + */ + public CalculateUnfallResponseType createCalculateUnfallResponseType() { + return new CalculateUnfallResponseType(); + } + + /** + * Create an instance of {@link CreateOfferUnfallRequestType } + * + */ + public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() { + return new CreateOfferUnfallRequestType(); + } + + /** + * Create an instance of {@link CreateOfferUnfallResponseType } + * + */ + public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() { + return new CreateOfferUnfallResponseType(); + } + + /** + * Create an instance of {@link CreateApplicationUnfallRequestType } + * + */ + public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() { + return new CreateApplicationUnfallRequestType(); + } + + /** + * Create an instance of {@link CreateApplicationUnfallResponseType } + * + */ + public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() { + return new CreateApplicationUnfallResponseType(); + } + + /** + * Create an instance of {@link SubmitApplicationUnfallRequestType } + * + */ + public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() { + return new SubmitApplicationUnfallRequestType(); + } + + /** + * Create an instance of {@link SubmitApplicationUnfallResponseType } + * + */ + public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() { + return new SubmitApplicationUnfallResponseType(); + } + + /** + * Create an instance of {@link VerkaufsproduktUnfallType } + * + */ + public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() { + return new VerkaufsproduktUnfallType(); + } + + /** + * Create an instance of {@link ProduktUnfallType } + * + */ + public ProduktUnfallType createProduktUnfallType() { + return new ProduktUnfallType(); + } + + /** + * Create an instance of {@link LeistungsartUnfallType } + * + */ + public LeistungsartUnfallType createLeistungsartUnfallType() { + return new LeistungsartUnfallType(); + } + + /** + * Create an instance of {@link SpezBerechnungUnfallType } + * + */ + public SpezBerechnungUnfallType createSpezBerechnungUnfallType() { + return new SpezBerechnungUnfallType(); + } + + /** + * Create an instance of {@link SpezOffertUnfallType } + * + */ + public SpezOffertUnfallType createSpezOffertUnfallType() { + return new SpezOffertUnfallType(); + } + + /** + * Create an instance of {@link SpezAntragUnfallType } + * + */ + public SpezAntragUnfallType createSpezAntragUnfallType() { + return new SpezAntragUnfallType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest") + public JAXBElement createCalculateUnfallRequest(CalculateUnfallRequestType value) { + return new JAXBElement(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse") + public JAXBElement createCalculateUnfallResponse(CalculateUnfallResponseType value) { + return new JAXBElement(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest") + public JAXBElement createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) { + return new JAXBElement(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse") + public JAXBElement createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) { + return new JAXBElement(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest") + public JAXBElement createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) { + return new JAXBElement(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse") + public JAXBElement createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) { + return new JAXBElement(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest") + public JAXBElement createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) { + return new JAXBElement(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse") + public JAXBElement createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) { + return new JAXBElement(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ProduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ProduktUnfallType.java new file mode 100644 index 00000000..f50b9706 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/ProduktUnfallType.java @@ -0,0 +1,103 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktMitVpType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.SelbstbehaltType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. + * + *

Java-Klasse für ProduktUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ProduktUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
+ *       <sequence>
+ *         <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProduktUnfall_Type", propOrder = { + "leistungsarten", + "selbstbehalt" +}) +public class ProduktUnfallType + extends ProduktMitVpType +{ + + @XmlElement(name = "Leistungsarten") + protected List leistungsarten; + @XmlElement(name = "Selbstbehalt") + protected SelbstbehaltType selbstbehalt; + + /** + * Gets the value of the leistungsarten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the leistungsarten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getLeistungsarten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link LeistungsartUnfallType } + * + * + */ + public List getLeistungsarten() { + if (leistungsarten == null) { + leistungsarten = new ArrayList(); + } + return this.leistungsarten; + } + + /** + * Ruft den Wert der selbstbehalt-Eigenschaft ab. + * + * @return + * possible object is + * {@link SelbstbehaltType } + * + */ + public SelbstbehaltType getSelbstbehalt() { + return selbstbehalt; + } + + /** + * Legt den Wert der selbstbehalt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SelbstbehaltType } + * + */ + public void setSelbstbehalt(SelbstbehaltType value) { + this.selbstbehalt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezAntragUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezAntragUnfallType.java new file mode 100644 index 00000000..00558ec1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezAntragUnfallType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezAntragType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Antrags-Erzeugung + * + *

Java-Klasse für SpezAntragUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezAntragUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezAntragUnfall_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezAntragUnfallType + extends SpezAntragType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktUnfallType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktUnfallType } + * + */ + public VerkaufsproduktUnfallType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktUnfallType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezBerechnungUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezBerechnungUnfallType.java new file mode 100644 index 00000000..77c46262 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezBerechnungUnfallType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezBerechnungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Berechnung + * + *

Java-Klasse für SpezBerechnungUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezBerechnungUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezBerechnungUnfallType + extends SpezBerechnungType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktUnfallType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktUnfallType } + * + */ + public VerkaufsproduktUnfallType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktUnfallType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezOffertUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezOffertUnfallType.java new file mode 100644 index 00000000..e4d5c050 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SpezOffertUnfallType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SpezOffertType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schritt Offert-Erzeugung + * + *

Java-Klasse für SpezOffertUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpezOffertUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
+ *       <sequence>
+ *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpezOffertUnfall_Type", propOrder = { + "verkaufsprodukt" +}) +public class SpezOffertUnfallType + extends SpezOffertType +{ + + @XmlElement(name = "Verkaufsprodukt", required = true) + protected VerkaufsproduktUnfallType verkaufsprodukt; + + /** + * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. + * + * @return + * possible object is + * {@link VerkaufsproduktUnfallType } + * + */ + public VerkaufsproduktUnfallType getVerkaufsprodukt() { + return verkaufsprodukt; + } + + /** + * Legt den Wert der verkaufsprodukt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VerkaufsproduktUnfallType } + * + */ + public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { + this.verkaufsprodukt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java new file mode 100644 index 00000000..2b707a43 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequestGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Requests, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationUnfallRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationUnfallRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
+ *       <sequence>
+ *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = { + "antragsanfrage" +}) +public class SubmitApplicationUnfallRequestType + extends SubmitApplicationRequestGenType +{ + + @XmlElement(name = "Antragsanfrage") + protected SpezAntragUnfallType antragsanfrage; + + /** + * Ruft den Wert der antragsanfrage-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragUnfallType } + * + */ + public SpezAntragUnfallType getAntragsanfrage() { + return antragsanfrage; + } + + /** + * Legt den Wert der antragsanfrage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragUnfallType } + * + */ + public void setAntragsanfrage(SpezAntragUnfallType value) { + this.antragsanfrage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java new file mode 100644 index 00000000..7fb5a11b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponseGenType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Type des Response, um den Antrag einzureichen + * + *

Java-Klasse für SubmitApplicationUnfallResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitApplicationUnfallResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
+ *       <sequence>
+ *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = { + "antragsantwort" +}) +public class SubmitApplicationUnfallResponseType + extends SubmitApplicationResponseGenType +{ + + @XmlElement(name = "Antragsantwort", required = true) + protected SpezAntragUnfallType antragsantwort; + + /** + * Ruft den Wert der antragsantwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpezAntragUnfallType } + * + */ + public SpezAntragUnfallType getAntragsantwort() { + return antragsantwort; + } + + /** + * Legt den Wert der antragsantwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpezAntragUnfallType } + * + */ + public void setAntragsantwort(SpezAntragUnfallType value) { + this.antragsantwort = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/VerkaufsproduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/VerkaufsproduktUnfallType.java new file mode 100644 index 00000000..9d18ab61 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/VerkaufsproduktUnfallType.java @@ -0,0 +1,142 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktGenerischType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertePersonType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für ein Verkaufsprodukt in der Sparte Unfall + * + *

Java-Klasse für VerkaufsproduktUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="VerkaufsproduktUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
+ *       <sequence>
+ *         <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ProduktUnfall_Type" maxOccurs="unbounded"/>
+ *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { + "unfallprodukte", + "zusatzprodukte", + "versichertePersonen" +}) +public class VerkaufsproduktUnfallType + extends VerkaufsproduktGenerischType +{ + + @XmlElement(name = "Unfallprodukte", required = true) + protected List unfallprodukte; + @XmlElement(name = "Zusatzprodukte") + protected List zusatzprodukte; + @XmlElement(name = "VersichertePersonen", required = true) + protected List versichertePersonen; + + /** + * Gets the value of the unfallprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the unfallprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getUnfallprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktUnfallType } + * + * + */ + public List getUnfallprodukte() { + if (unfallprodukte == null) { + unfallprodukte = new ArrayList(); + } + return this.unfallprodukte; + } + + /** + * Gets the value of the zusatzprodukte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusatzprodukte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusatzprodukte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ProduktGenerischType } + * + * + */ + public List getZusatzprodukte() { + if (zusatzprodukte == null) { + zusatzprodukte = new ArrayList(); + } + return this.zusatzprodukte; + } + + /** + * Gets the value of the versichertePersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versichertePersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersichertePersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link VersichertePersonType } + * + * + */ + public List getVersichertePersonen() { + if (versichertePersonen == null) { + versichertePersonen = new ArrayList(); + } + return this.versichertePersonen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/package-info.java new file mode 100644 index 00000000..6f8a62bf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on2antrag/unfall/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimRequest.java new file mode 100644 index 00000000..3340d7fa --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimRequest.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ergaenzungSchadenereignis" +}) +@XmlRootElement(name = "AddInformationToClaimRequest") +public class AddInformationToClaimRequest + extends CommonRequestType +{ + + @XmlElement(name = "ErgaenzungSchadenereignis", required = true) + protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; + + /** + * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link ErgaenzungSchadenereignisType } + * + */ + public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { + return ergaenzungSchadenereignis; + } + + /** + * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ErgaenzungSchadenereignisType } + * + */ + public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { + this.ergaenzungSchadenereignis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimResponse.java new file mode 100644 index 00000000..1fe20f38 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/AddInformationToClaimResponse.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "ergaenzungSchadenereignis" +}) +@XmlRootElement(name = "AddInformationToClaimResponse") +public class AddInformationToClaimResponse + extends CommonResponseType +{ + + @XmlElement(name = "ErgaenzungSchadenereignis", required = true) + protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; + + /** + * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link ErgaenzungSchadenereignisType } + * + */ + public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { + return ergaenzungSchadenereignis; + } + + /** + * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ErgaenzungSchadenereignisType } + * + */ + public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { + this.ergaenzungSchadenereignis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenType.java new file mode 100644 index 00000000..f2d76622 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenType.java @@ -0,0 +1,395 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light + * + *

Java-Klasse für BasisSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BasisSchaden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
+ *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
+ *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
+ *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
+ *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BasisSchaden_Type", propOrder = { + "geschaeftsfallSchadenanlage", + "schadennr", + "bearbStandSeit", + "vormaligeSchadennr", + "nachfolgendeSchadennr", + "sachbearbVU", + "polizzennr", + "vertragsID", + "erledDat", + "deepLink", + "zusaetzlicheSchadensdaten", + "meldungen" +}) +@XmlSeeAlso({ + SchadenType.class, + SchadenLightType.class +}) +public class BasisSchadenType { + + @XmlElement(name = "GeschaeftsfallSchadenanlage") + protected ObjektIdType geschaeftsfallSchadenanlage; + @XmlElement(name = "Schadennr") + protected String schadennr; + @XmlElement(name = "BearbStandSeit") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar bearbStandSeit; + @XmlElement(name = "VormaligeSchadennr") + protected List vormaligeSchadennr; + @XmlElement(name = "NachfolgendeSchadennr") + protected String nachfolgendeSchadennr; + @XmlElement(name = "SachbearbVU") + protected SachbearbVUType sachbearbVU; + @XmlElement(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "ErledDat") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar erledDat; + @XmlElement(name = "DeepLink") + protected String deepLink; + @XmlElement(name = "ZusaetzlicheSchadensdaten") + protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; + @XmlElement(name = "Meldungen") + protected List meldungen; + + /** + * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getGeschaeftsfallSchadenanlage() { + return geschaeftsfallSchadenanlage; + } + + /** + * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { + this.geschaeftsfallSchadenanlage = value; + } + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + + /** + * Ruft den Wert der bearbStandSeit-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBearbStandSeit() { + return bearbStandSeit; + } + + /** + * Legt den Wert der bearbStandSeit-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBearbStandSeit(XMLGregorianCalendar value) { + this.bearbStandSeit = value; + } + + /** + * Gets the value of the vormaligeSchadennr property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vormaligeSchadennr property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVormaligeSchadennr().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getVormaligeSchadennr() { + if (vormaligeSchadennr == null) { + vormaligeSchadennr = new ArrayList(); + } + return this.vormaligeSchadennr; + } + + /** + * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNachfolgendeSchadennr() { + return nachfolgendeSchadennr; + } + + /** + * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNachfolgendeSchadennr(String value) { + this.nachfolgendeSchadennr = value; + } + + /** + * Ruft den Wert der sachbearbVU-Eigenschaft ab. + * + * @return + * possible object is + * {@link SachbearbVUType } + * + */ + public SachbearbVUType getSachbearbVU() { + return sachbearbVU; + } + + /** + * Legt den Wert der sachbearbVU-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SachbearbVUType } + * + */ + public void setSachbearbVU(SachbearbVUType value) { + this.sachbearbVU = value; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der erledDat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getErledDat() { + return erledDat; + } + + /** + * Legt den Wert der erledDat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setErledDat(XMLGregorianCalendar value) { + this.erledDat = value; + } + + /** + * Ruft den Wert der deepLink-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeepLink() { + return deepLink; + } + + /** + * Legt den Wert der deepLink-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeepLink(String value) { + this.deepLink = value; + } + + /** + * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheSchadensdatenType } + * + */ + public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { + return zusaetzlicheSchadensdaten; + } + + /** + * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheSchadensdatenType } + * + */ + public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { + this.zusaetzlicheSchadensdaten = value; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenereignisType.java new file mode 100644 index 00000000..dd8ddf38 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BasisSchadenereignisType.java @@ -0,0 +1,339 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light + * + *

Java-Klasse für BasisSchadenereignis_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BasisSchadenereignis_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
+ *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
+ *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
+ *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BasisSchadenereignis_Type", propOrder = { + "vuNr", + "geschaeftsfallSchadenereignis", + "nachfolgendeSchadenmeldung", + "vorherigeSchadenmeldungen", + "ereigniszpkt", + "ereignisbeschrTxt", + "meldedat", + "deepLink", + "zusaetzlicheSchadensereignisdaten", + "meldungen" +}) +@XmlSeeAlso({ + SchadenereignisType.class, + SchadenereignisLightType.class +}) +public abstract class BasisSchadenereignisType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "GeschaeftsfallSchadenereignis") + protected ObjektIdType geschaeftsfallSchadenereignis; + @XmlElement(name = "NachfolgendeSchadenmeldung") + protected ObjektIdType nachfolgendeSchadenmeldung; + @XmlElement(name = "VorherigeSchadenmeldungen") + protected List vorherigeSchadenmeldungen; + @XmlElement(name = "Ereigniszpkt", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar ereigniszpkt; + @XmlElement(name = "EreignisbeschrTxt", required = true) + protected String ereignisbeschrTxt; + @XmlElement(name = "Meldedat", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar meldedat; + @XmlElement(name = "DeepLink") + protected String deepLink; + @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") + protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; + @XmlElement(name = "Meldungen") + protected List meldungen; + + /** + * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getGeschaeftsfallSchadenereignis() { + return geschaeftsfallSchadenereignis; + } + + /** + * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { + this.geschaeftsfallSchadenereignis = value; + } + + /** + * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getNachfolgendeSchadenmeldung() { + return nachfolgendeSchadenmeldung; + } + + /** + * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setNachfolgendeSchadenmeldung(ObjektIdType value) { + this.nachfolgendeSchadenmeldung = value; + } + + /** + * Gets the value of the vorherigeSchadenmeldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the vorherigeSchadenmeldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVorherigeSchadenmeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ObjektIdType } + * + * + */ + public List getVorherigeSchadenmeldungen() { + if (vorherigeSchadenmeldungen == null) { + vorherigeSchadenmeldungen = new ArrayList(); + } + return this.vorherigeSchadenmeldungen; + } + + /** + * Ruft den Wert der ereigniszpkt-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEreigniszpkt() { + return ereigniszpkt; + } + + /** + * Legt den Wert der ereigniszpkt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEreigniszpkt(XMLGregorianCalendar value) { + this.ereigniszpkt = value; + } + + /** + * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEreignisbeschrTxt() { + return ereignisbeschrTxt; + } + + /** + * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEreignisbeschrTxt(String value) { + this.ereignisbeschrTxt = value; + } + + /** + * Ruft den Wert der meldedat-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMeldedat() { + return meldedat; + } + + /** + * Legt den Wert der meldedat-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMeldedat(XMLGregorianCalendar value) { + this.meldedat = value; + } + + /** + * Ruft den Wert der deepLink-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeepLink() { + return deepLink; + } + + /** + * Legt den Wert der deepLink-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeepLink(String value) { + this.deepLink = value; + } + + /** + * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheSchadensereignisdatenType } + * + */ + public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { + return zusaetzlicheSchadensereignisdaten; + } + + /** + * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheSchadensereignisdatenType } + * + */ + public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { + this.zusaetzlicheSchadensereignisdaten = value; + } + + /** + * Gets the value of the meldungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the meldungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMeldungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getMeldungen() { + if (meldungen == null) { + meldungen = new ArrayList(); + } + return this.meldungen; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BeteiligtePersonType.java new file mode 100644 index 00000000..2ed88227 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/BeteiligtePersonType.java @@ -0,0 +1,87 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.PersonType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind + * + *

Java-Klasse für BeteiligtePerson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="BeteiligtePerson_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
+ *       </sequence>
+ *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BeteiligtePerson_Type", propOrder = { + "person" +}) +public class BeteiligtePersonType { + + @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) + protected PersonType person; + @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int lfnr; + + /** + * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld + * + * @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 lfnr-Eigenschaft ab. + * + */ + public int getLfnr() { + return lfnr; + } + + /** + * Legt den Wert der lfnr-Eigenschaft fest. + * + */ + public void setLfnr(int value) { + this.lfnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimRequestType.java new file mode 100644 index 00000000..8e690e2f --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimRequestType.java @@ -0,0 +1,103 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.UploadDokumentType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die probeweise Anlage einer Schadenmeldung + * + *

Java-Klasse für CheckClaimRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CheckClaimRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CheckClaimRequest_Type", propOrder = { + "schadenereignis", + "dokumente" +}) +public class CheckClaimRequestType + extends CommonRequestType +{ + + @XmlElement(name = "Schadenereignis", required = true) + protected SchadenereignisType schadenereignis; + @XmlElement(name = "Dokumente") + protected List dokumente; + + /** + * Ruft den Wert der schadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenereignisType } + * + */ + public SchadenereignisType getSchadenereignis() { + return schadenereignis; + } + + /** + * Legt den Wert der schadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenereignisType } + * + */ + public void setSchadenereignis(SchadenereignisType value) { + this.schadenereignis = value; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link UploadDokumentType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimResponseType.java new file mode 100644 index 00000000..d622fc39 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckClaimResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Anworttyp beim Erzeugen einer Schadenmeldung + * + *

Java-Klasse für CheckClaimResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="CheckClaimResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CheckClaimResponse_Type", propOrder = { + "schadenereignis" +}) +public class CheckClaimResponseType + extends CommonResponseType +{ + + @XmlElement(name = "Schadenereignis") + protected SchadenereignisType schadenereignis; + + /** + * Ruft den Wert der schadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenereignisType } + * + */ + public SchadenereignisType getSchadenereignis() { + return schadenereignis; + } + + /** + * Legt den Wert der schadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenereignisType } + * + */ + public void setSchadenereignis(SchadenereignisType value) { + this.schadenereignis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageRequest.java new file mode 100644 index 00000000..81dc7ccd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageRequest.java @@ -0,0 +1,226 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PersonType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
+ *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "versicherungsnehmer", + "polizzennr", + "vertragsID", + "versInteresse", + "eigenschaftCd", + "zusaetzlicheDeckungsauskunftsdaten" +}) +@XmlRootElement(name = "CheckCoverageRequest") +public class CheckCoverageRequest + extends CommonRequestType +{ + + @XmlElement(name = "Versicherungsnehmer") + protected List versicherungsnehmer; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "VersInteresse") + protected VersichertesInteresseType versInteresse; + @XmlElement(name = "EigenschaftCd") + protected List eigenschaftCd; + @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") + protected List zusaetzlicheDeckungsauskunftsdaten; + + /** + * Gets the value of the versicherungsnehmer property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versicherungsnehmer property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersicherungsnehmer().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersonType } + * + * + */ + public List getVersicherungsnehmer() { + if (versicherungsnehmer == null) { + versicherungsnehmer = new ArrayList(); + } + return this.versicherungsnehmer; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der versInteresse-Eigenschaft ab. + * + * @return + * possible object is + * {@link VersichertesInteresseType } + * + */ + public VersichertesInteresseType getVersInteresse() { + return versInteresse; + } + + /** + * Legt den Wert der versInteresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VersichertesInteresseType } + * + */ + public void setVersInteresse(VersichertesInteresseType value) { + this.versInteresse = value; + } + + /** + * Gets the value of the eigenschaftCd property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the eigenschaftCd property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEigenschaftCd().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getEigenschaftCd() { + if (eigenschaftCd == null) { + eigenschaftCd = new ArrayList(); + } + return this.eigenschaftCd; + } + + /** + * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheDeckungsauskunftsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheDeckungsauskunftsdatenType } + * + * + */ + public List getZusaetzlicheDeckungsauskunftsdaten() { + if (zusaetzlicheDeckungsauskunftsdaten == null) { + zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); + } + return this.zusaetzlicheDeckungsauskunftsdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageResponse.java new file mode 100644 index 00000000..af551e6a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/CheckCoverageResponse.java @@ -0,0 +1,320 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PersonType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.VersichertesInteresseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
+ *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Auskuenfte" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "versicherungsnehmer", + "polizzennr", + "vertragsID", + "versInteresse", + "zusaetzlicheDeckungsauskunftsdaten", + "auskuenfte" +}) +@XmlRootElement(name = "CheckCoverageResponse") +public class CheckCoverageResponse + extends CommonResponseType +{ + + @XmlElement(name = "Versicherungsnehmer") + protected List versicherungsnehmer; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "VersInteresse") + protected VersichertesInteresseType versInteresse; + @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") + protected List zusaetzlicheDeckungsauskunftsdaten; + @XmlElement(name = "Auskuenfte") + protected List auskuenfte; + + /** + * Gets the value of the versicherungsnehmer property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the versicherungsnehmer property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVersicherungsnehmer().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersonType } + * + * + */ + public List getVersicherungsnehmer() { + if (versicherungsnehmer == null) { + versicherungsnehmer = new ArrayList(); + } + return this.versicherungsnehmer; + } + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der versInteresse-Eigenschaft ab. + * + * @return + * possible object is + * {@link VersichertesInteresseType } + * + */ + public VersichertesInteresseType getVersInteresse() { + return versInteresse; + } + + /** + * Legt den Wert der versInteresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VersichertesInteresseType } + * + */ + public void setVersInteresse(VersichertesInteresseType value) { + this.versInteresse = value; + } + + /** + * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheDeckungsauskunftsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheDeckungsauskunftsdatenType } + * + * + */ + public List getZusaetzlicheDeckungsauskunftsdaten() { + if (zusaetzlicheDeckungsauskunftsdaten == null) { + zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); + } + return this.zusaetzlicheDeckungsauskunftsdaten; + } + + /** + * Gets the value of the auskuenfte property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the auskuenfte property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAuskuenfte().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CheckCoverageResponse.Auskuenfte } + * + * + */ + public List getAuskuenfte() { + if (auskuenfte == null) { + auskuenfte = new ArrayList(); + } + return this.auskuenfte; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "eigenschaftCd", + "antwort" + }) + public static class Auskuenfte { + + @XmlElement(name = "EigenschaftCd", required = true) + protected String eigenschaftCd; + @XmlElement(name = "Antwort", required = true) + protected String antwort; + + /** + * Ruft den Wert der eigenschaftCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEigenschaftCd() { + return eigenschaftCd; + } + + /** + * Legt den Wert der eigenschaftCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEigenschaftCd(String value) { + this.eigenschaftCd = value; + } + + /** + * Ruft den Wert der antwort-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAntwort() { + return antwort; + } + + /** + * Legt den Wert der antwort-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAntwort(String value) { + this.antwort = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenType.java new file mode 100644 index 00000000..50396798 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenType.java @@ -0,0 +1,268 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentDataType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Objekt Nachmeldung Schaden + * + *

Java-Klasse für ErgaenzungSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ErgaenzungSchaden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
+ *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="Betreff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ErgaenzungSchaden_Type", propOrder = { + "schadennr", + "id", + "polizzennr", + "vertragsID", + "betreff", + "schadenTxt", + "belege", + "zusaetzlicheSchadensdaten" +}) +public class ErgaenzungSchadenType { + + @XmlElement(name = "Schadennr", required = true) + protected String schadennr; + @XmlElement(name = "Id") + protected String id; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "Betreff") + protected String betreff; + @XmlElement(name = "SchadenTxt") + protected String schadenTxt; + @XmlElement(name = "Belege") + protected List belege; + @XmlElement(name = "ZusaetzlicheSchadensdaten") + protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + + /** + * 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 polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der betreff-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetreff() { + return betreff; + } + + /** + * Legt den Wert der betreff-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetreff(String value) { + this.betreff = value; + } + + /** + * Ruft den Wert der schadenTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadenTxt() { + return schadenTxt; + } + + /** + * Legt den Wert der schadenTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadenTxt(String value) { + this.schadenTxt = value; + } + + /** + * Gets the value of the belege property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the belege property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBelege().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentDataType } + * + * + */ + public List getBelege() { + if (belege == null) { + belege = new ArrayList(); + } + return this.belege; + } + + /** + * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheSchadensdatenType } + * + */ + public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { + return zusaetzlicheSchadensdaten; + } + + /** + * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheSchadensdatenType } + * + */ + public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { + this.zusaetzlicheSchadensdaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenereignisType.java new file mode 100644 index 00000000..3e050a7b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ErgaenzungSchadenereignisType.java @@ -0,0 +1,184 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Objekt Nachmeldung zu Schadenereignis + * + *

Java-Klasse für ErgaenzungSchadenereignis_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ErgaenzungSchadenereignis_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="AnforderungsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
+ *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
+ *         <element name="ErgaenzungSchaden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchaden_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ErgaenzungSchadenereignis_Type", propOrder = { + "anforderungsId", + "id", + "geschaeftsfallSchadenereignis", + "zusaetzlicheSchadensereignisdaten", + "ergaenzungSchaden" +}) +public class ErgaenzungSchadenereignisType { + + @XmlElement(name = "AnforderungsId") + protected String anforderungsId; + @XmlElement(name = "Id") + protected String id; + @XmlElement(name = "GeschaeftsfallSchadenereignis") + protected ObjektIdType geschaeftsfallSchadenereignis; + @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") + protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; + @XmlElement(name = "ErgaenzungSchaden", required = true) + protected List ergaenzungSchaden; + + /** + * Ruft den Wert der anforderungsId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAnforderungsId() { + return anforderungsId; + } + + /** + * Legt den Wert der anforderungsId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAnforderungsId(String value) { + this.anforderungsId = value; + } + + /** + * 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; + } + + /** + * GeschäftsfallId der Anlage des ursprünglichen Schadenereignis-Objektes + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getGeschaeftsfallSchadenereignis() { + return geschaeftsfallSchadenereignis; + } + + /** + * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { + this.geschaeftsfallSchadenereignis = value; + } + + /** + * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZusaetzlicheSchadensereignisdatenType } + * + */ + public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { + return zusaetzlicheSchadensereignisdaten; + } + + /** + * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZusaetzlicheSchadensereignisdatenType } + * + */ + public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { + this.zusaetzlicheSchadensereignisdaten = value; + } + + /** + * Gets the value of the ergaenzungSchaden property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the ergaenzungSchaden property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getErgaenzungSchaden().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ErgaenzungSchadenType } + * + * + */ + public List getErgaenzungSchaden() { + if (ergaenzungSchaden == null) { + ergaenzungSchaden = new ArrayList(); + } + return this.ergaenzungSchaden; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeokoordinatenType.java new file mode 100644 index 00000000..16a93a08 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeokoordinatenType.java @@ -0,0 +1,87 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Geokoordinaten im Dezimalsystem + * + *

Java-Klasse für Geokoordinaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Geokoordinaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
+ *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Geokoordinaten_Type") +public class GeokoordinatenType { + + @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + protected Double breite; + @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + protected Double laenge; + + /** + * Ruft den Wert der breite-Eigenschaft ab. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getBreite() { + return breite; + } + + /** + * Legt den Wert der breite-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setBreite(Double value) { + this.breite = value; + } + + /** + * Ruft den Wert der laenge-Eigenschaft ab. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getLaenge() { + return laenge; + } + + /** + * Legt den Wert der laenge-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setLaenge(Double value) { + this.laenge = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesInteresseType.java new file mode 100644 index 00000000..ef53d1dc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesInteresseType.java @@ -0,0 +1,97 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz + * + *

Java-Klasse für GeschaedigtesInteresse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaedigtesInteresse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ *         <element name="SchadenBeschreibung">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="100"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { + "lfnr", + "schadenBeschreibung" +}) +@XmlSeeAlso({ + GeschaedigtesObjektKfzType.class, + GeschaedigtesObjektImmobilieType.class +}) +public class GeschaedigtesInteresseType { + + @XmlElement(name = "Lfnr") + @XmlSchemaType(name = "unsignedShort") + protected int lfnr; + @XmlElement(name = "SchadenBeschreibung", required = true) + protected String schadenBeschreibung; + + /** + * 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; + } + + /** + * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadenBeschreibung() { + return schadenBeschreibung; + } + + /** + * Legt den Wert der schadenBeschreibung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadenBeschreibung(String value) { + this.schadenBeschreibung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektImmobilieType.java new file mode 100644 index 00000000..7491bf05 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektImmobilieType.java @@ -0,0 +1,128 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie + * + *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaedigtesObjektImmobilie_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
+ *       <sequence>
+ *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
+ *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
+ *         <element name="GebauedeBez" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="60"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { + "gebaeudeArtCd", + "ordnungsbegriffZuordFremd", + "gebauedeBez" +}) +public class GeschaedigtesObjektImmobilieType + extends GeschaedigtesInteresseType +{ + + @XmlElement(name = "GebaeudeArtCd") + protected String gebaeudeArtCd; + @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") + protected String ordnungsbegriffZuordFremd; + @XmlElement(name = "GebauedeBez") + protected String gebauedeBez; + + /** + * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebaeudeArtCd() { + return gebaeudeArtCd; + } + + /** + * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebaeudeArtCd(String value) { + this.gebaeudeArtCd = value; + } + + /** + * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrdnungsbegriffZuordFremd() { + return ordnungsbegriffZuordFremd; + } + + /** + * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrdnungsbegriffZuordFremd(String value) { + this.ordnungsbegriffZuordFremd = value; + } + + /** + * Ruft den Wert der gebauedeBez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGebauedeBez() { + return gebauedeBez; + } + + /** + * Legt den Wert der gebauedeBez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGebauedeBez(String value) { + this.gebauedeBez = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektKfzType.java new file mode 100644 index 00000000..8861d543 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GeschaedigtesObjektKfzType.java @@ -0,0 +1,351 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz + * + *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GeschaedigtesObjektKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
+ *       <sequence>
+ *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
+ *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
+ *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
+ *         <element name="Kennz_GeschKfz">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="12"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Marke" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="40"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Handelsbez" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="30"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Fahrgestnr" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="20"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="TypVarVer" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="20"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { + "vuNrGesch", + "vuNameGesch", + "polNrGesch", + "schadennrGesch", + "landesCdGeschKfz", + "kennzGeschKfz", + "marke", + "handelsbez", + "fahrgestnr", + "typVarVer" +}) +public class GeschaedigtesObjektKfzType + extends GeschaedigtesInteresseType +{ + + @XmlElement(name = "VUNrGesch") + protected String vuNrGesch; + @XmlElement(name = "VUNameGesch", required = true) + protected String vuNameGesch; + @XmlElement(name = "PolNrGesch", required = true) + protected String polNrGesch; + @XmlElement(name = "SchadennrGesch") + protected String schadennrGesch; + @XmlElement(name = "LandesCd_GeschKfz") + protected String landesCdGeschKfz; + @XmlElement(name = "Kennz_GeschKfz", required = true) + protected String kennzGeschKfz; + @XmlElement(name = "Marke") + protected String marke; + @XmlElement(name = "Handelsbez") + protected String handelsbez; + @XmlElement(name = "Fahrgestnr") + protected String fahrgestnr; + @XmlElement(name = "TypVarVer") + protected String typVarVer; + + /** + * Ruft den Wert der vuNrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUNrGesch() { + return vuNrGesch; + } + + /** + * Legt den Wert der vuNrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUNrGesch(String value) { + this.vuNrGesch = value; + } + + /** + * Ruft den Wert der vuNameGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVUNameGesch() { + return vuNameGesch; + } + + /** + * Legt den Wert der vuNameGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVUNameGesch(String value) { + this.vuNameGesch = value; + } + + /** + * Ruft den Wert der polNrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolNrGesch() { + return polNrGesch; + } + + /** + * Legt den Wert der polNrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolNrGesch(String value) { + this.polNrGesch = value; + } + + /** + * Ruft den Wert der schadennrGesch-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennrGesch() { + return schadennrGesch; + } + + /** + * Legt den Wert der schadennrGesch-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennrGesch(String value) { + this.schadennrGesch = value; + } + + /** + * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLandesCdGeschKfz() { + return landesCdGeschKfz; + } + + /** + * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLandesCdGeschKfz(String value) { + this.landesCdGeschKfz = value; + } + + /** + * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennzGeschKfz() { + return kennzGeschKfz; + } + + /** + * Legt den Wert der kennzGeschKfz-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennzGeschKfz(String value) { + this.kennzGeschKfz = value; + } + + /** + * Ruft den Wert der marke-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMarke() { + return marke; + } + + /** + * Legt den Wert der marke-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMarke(String value) { + this.marke = value; + } + + /** + * Ruft den Wert der handelsbez-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHandelsbez() { + return handelsbez; + } + + /** + * Legt den Wert der handelsbez-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHandelsbez(String value) { + this.handelsbez = value; + } + + /** + * Ruft den Wert der fahrgestnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFahrgestnr() { + return fahrgestnr; + } + + /** + * Legt den Wert der fahrgestnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFahrgestnr(String value) { + this.fahrgestnr = value; + } + + /** + * Ruft den Wert der typVarVer-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypVarVer() { + return typVarVer; + } + + /** + * Legt den Wert der typVarVer-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypVarVer(String value) { + this.typVarVer = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimRequestType.java new file mode 100644 index 00000000..2451fed7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimRequestType.java @@ -0,0 +1,155 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId + * + *

Java-Klasse für GetClaimRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetClaimRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <choice>
+ *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
+ *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
+ *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
+ *         </choice>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetClaimRequest_Type", propOrder = { + "authFilter", + "geschaeftsfallSchadenereignis", + "geschaeftsfallSchadenanlage", + "schadennr" +}) +public class GetClaimRequestType + extends CommonRequestType +{ + + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "GeschaeftsfallSchadenereignis") + protected ObjektIdType geschaeftsfallSchadenereignis; + @XmlElement(name = "GeschaeftsfallSchadenanlage") + protected ObjektIdType geschaeftsfallSchadenanlage; + @XmlElement(name = "Schadennr") + protected String schadennr; + + /** + * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getGeschaeftsfallSchadenereignis() { + return geschaeftsfallSchadenereignis; + } + + /** + * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { + this.geschaeftsfallSchadenereignis = value; + } + + /** + * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. + * + * @return + * possible object is + * {@link ObjektIdType } + * + */ + public ObjektIdType getGeschaeftsfallSchadenanlage() { + return geschaeftsfallSchadenanlage; + } + + /** + * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ObjektIdType } + * + */ + public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { + this.geschaeftsfallSchadenanlage = value; + } + + /** + * Ruft den Wert der schadennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadennr() { + return schadennr; + } + + /** + * Legt den Wert der schadennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadennr(String value) { + this.schadennr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimResponseType.java new file mode 100644 index 00000000..f05ce6e8 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/GetClaimResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response-Objekt für Schadenereignisse + * + *

Java-Klasse für GetClaimResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="GetClaimResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetClaimResponse_Type", propOrder = { + "schadenereignis" +}) +public class GetClaimResponseType + extends CommonResponseType +{ + + @XmlElement(name = "Schadenereignis") + protected SchadenereignisType schadenereignis; + + /** + * Ruft den Wert der schadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenereignisType } + * + */ + public SchadenereignisType getSchadenereignis() { + return schadenereignis; + } + + /** + * Legt den Wert der schadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenereignisType } + * + */ + public void setSchadenereignis(SchadenereignisType value) { + this.schadenereignis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/NatPersonType.java new file mode 100644 index 00000000..405f7116 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/NatPersonType.java @@ -0,0 +1,117 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Natuerliche Person + * + *

Java-Klasse für NatPerson_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="NatPerson_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NatPerson_Type") +public class NatPersonType { + + @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) + @XmlSchemaType(name = "anySimpleType") + protected String familienname; + @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + @XmlSchemaType(name = "anySimpleType") + protected String vorname; + @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) + protected String geschlechtCd; + + /** + * Ruft den Wert der familienname-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFamilienname() { + return familienname; + } + + /** + * Legt den Wert der familienname-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFamilienname(String value) { + this.familienname = value; + } + + /** + * Ruft den Wert der vorname-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVorname() { + return vorname; + } + + /** + * Legt den Wert der vorname-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVorname(String value) { + this.vorname = value; + } + + /** + * Ruft den Wert der geschlechtCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeschlechtCd() { + return geschlechtCd; + } + + /** + * Legt den Wert der geschlechtCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeschlechtCd(String value) { + this.geschlechtCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ObjectFactory.java new file mode 100644 index 00000000..3ac1ab75 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ObjectFactory.java @@ -0,0 +1,502 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import javax.xml.namespace.QName; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektIdType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.on7schaden package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); + private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); + private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); + private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); + private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); + private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); + private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); + private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); + private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); + private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); + private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.on7schaden + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CheckCoverageResponse } + * + */ + public CheckCoverageResponse createCheckCoverageResponse() { + return new CheckCoverageResponse(); + } + + /** + * Create an instance of {@link SpartendetailSchadenKrankenType } + * + */ + public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { + return new SpartendetailSchadenKrankenType(); + } + + /** + * Create an instance of {@link SchadenType } + * + */ + public SchadenType createSchadenType() { + return new SchadenType(); + } + + /** + * Create an instance of {@link CheckClaimRequestType } + * + */ + public CheckClaimRequestType createCheckClaimRequestType() { + return new CheckClaimRequestType(); + } + + /** + * Create an instance of {@link CheckClaimResponseType } + * + */ + public CheckClaimResponseType createCheckClaimResponseType() { + return new CheckClaimResponseType(); + } + + /** + * Create an instance of {@link SubmitClaimRequestType } + * + */ + public SubmitClaimRequestType createSubmitClaimRequestType() { + return new SubmitClaimRequestType(); + } + + /** + * Create an instance of {@link SubmitClaimResponseType } + * + */ + public SubmitClaimResponseType createSubmitClaimResponseType() { + return new SubmitClaimResponseType(); + } + + /** + * Create an instance of {@link GetClaimRequestType } + * + */ + public GetClaimRequestType createGetClaimRequestType() { + return new GetClaimRequestType(); + } + + /** + * Create an instance of {@link GetClaimResponseType } + * + */ + public GetClaimResponseType createGetClaimResponseType() { + return new GetClaimResponseType(); + } + + /** + * Create an instance of {@link SearchClaimRequestType } + * + */ + public SearchClaimRequestType createSearchClaimRequestType() { + return new SearchClaimRequestType(); + } + + /** + * Create an instance of {@link SearchClaimResponseType } + * + */ + public SearchClaimResponseType createSearchClaimResponseType() { + return new SearchClaimResponseType(); + } + + /** + * Create an instance of {@link SchadenzuordnungType } + * + */ + public SchadenzuordnungType createSchadenzuordnungType() { + return new SchadenzuordnungType(); + } + + /** + * Create an instance of {@link CheckCoverageRequest } + * + */ + public CheckCoverageRequest createCheckCoverageRequest() { + return new CheckCoverageRequest(); + } + + /** + * Create an instance of {@link CheckCoverageResponse.Auskuenfte } + * + */ + public CheckCoverageResponse.Auskuenfte createCheckCoverageResponseAuskuenfte() { + return new CheckCoverageResponse.Auskuenfte(); + } + + /** + * Create an instance of {@link SubmitReceiptRequest } + * + */ + public SubmitReceiptRequest createSubmitReceiptRequest() { + return new SubmitReceiptRequest(); + } + + /** + * Create an instance of {@link SubmitReceiptResponse } + * + */ + public SubmitReceiptResponse createSubmitReceiptResponse() { + return new SubmitReceiptResponse(); + } + + /** + * Create an instance of {@link AddInformationToClaimRequest } + * + */ + public AddInformationToClaimRequest createAddInformationToClaimRequest() { + return new AddInformationToClaimRequest(); + } + + /** + * Create an instance of {@link ErgaenzungSchadenereignisType } + * + */ + public ErgaenzungSchadenereignisType createErgaenzungSchadenereignisType() { + return new ErgaenzungSchadenereignisType(); + } + + /** + * Create an instance of {@link AddInformationToClaimResponse } + * + */ + public AddInformationToClaimResponse createAddInformationToClaimResponse() { + return new AddInformationToClaimResponse(); + } + + /** + * Create an instance of {@link SearchClaimResponseResultType } + * + */ + public SearchClaimResponseResultType createSearchClaimResponseResultType() { + return new SearchClaimResponseResultType(); + } + + /** + * Create an instance of {@link SchadenereignisType } + * + */ + public SchadenereignisType createSchadenereignisType() { + return new SchadenereignisType(); + } + + /** + * Create an instance of {@link SchadenereignisLightType } + * + */ + public SchadenereignisLightType createSchadenereignisLightType() { + return new SchadenereignisLightType(); + } + + /** + * Create an instance of {@link SchadenLightType } + * + */ + public SchadenLightType createSchadenLightType() { + return new SchadenLightType(); + } + + /** + * Create an instance of {@link BasisSchadenType } + * + */ + public BasisSchadenType createBasisSchadenType() { + return new BasisSchadenType(); + } + + /** + * Create an instance of {@link BeteiligtePersonType } + * + */ + public BeteiligtePersonType createBeteiligtePersonType() { + return new BeteiligtePersonType(); + } + + /** + * Create an instance of {@link SpartendetailSchadenKfzType } + * + */ + public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { + return new SpartendetailSchadenKfzType(); + } + + /** + * Create an instance of {@link SpartendetailSchadenUnfallType } + * + */ + public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { + return new SpartendetailSchadenUnfallType(); + } + + /** + * Create an instance of {@link OrtType } + * + */ + public OrtType createOrtType() { + return new OrtType(); + } + + /** + * Create an instance of {@link GeokoordinatenType } + * + */ + public GeokoordinatenType createGeokoordinatenType() { + return new GeokoordinatenType(); + } + + /** + * Create an instance of {@link GeschaedigtesInteresseType } + * + */ + public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { + return new GeschaedigtesInteresseType(); + } + + /** + * Create an instance of {@link GeschaedigtesObjektKfzType } + * + */ + public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { + return new GeschaedigtesObjektKfzType(); + } + + /** + * Create an instance of {@link GeschaedigtesObjektImmobilieType } + * + */ + public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { + return new GeschaedigtesObjektImmobilieType(); + } + + /** + * Create an instance of {@link SchadenmelderVermittlerType } + * + */ + public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { + return new SchadenmelderVermittlerType(); + } + + /** + * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } + * + */ + public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { + return new ReferenzAufBeteiligtePersonSchadenType(); + } + + /** + * Create an instance of {@link SachbearbVUType } + * + */ + public SachbearbVUType createSachbearbVUType() { + return new SachbearbVUType(); + } + + /** + * Create an instance of {@link NatPersonType } + * + */ + public NatPersonType createNatPersonType() { + return new NatPersonType(); + } + + /** + * Create an instance of {@link ErgaenzungSchadenType } + * + */ + public ErgaenzungSchadenType createErgaenzungSchadenType() { + return new ErgaenzungSchadenType(); + } + + /** + * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } + * + */ + public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { + return new SpartendetailSchadenKrankenType.Behandlungen(); + } + + /** + * Create an instance of {@link SchadenType.BeteiligtePersonen } + * + */ + public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { + return new SchadenType.BeteiligtePersonen(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") + public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { + return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") + public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { + return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") + public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { + return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") + public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { + return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") + public JAXBElement createGetClaimRequest(GetClaimRequestType value) { + return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") + public JAXBElement createGetClaimResponse(GetClaimResponseType value) { + return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") + public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { + return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") + public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { + return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") + public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { + return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") + public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { + return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} + */ + @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") + public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { + return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/OrtType.java new file mode 100644 index 00000000..493e8a36 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/OrtType.java @@ -0,0 +1,121 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds2Types.v2_16.ADRESSEType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für den Schadenort + * + *

Java-Klasse für Ort_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Ort_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
+ *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Ort_Type", propOrder = { + "adresse", + "beschreibung", + "geokoordinaten" +}) +public class OrtType { + + @XmlElement(name = "Adresse") + protected ADRESSEType adresse; + @XmlElement(name = "Beschreibung") + protected String beschreibung; + @XmlElement(name = "Geokoordinaten") + protected GeokoordinatenType geokoordinaten; + + /** + * Ruft den Wert der adresse-Eigenschaft ab. + * + * @return + * possible object is + * {@link ADRESSEType } + * + */ + public ADRESSEType getAdresse() { + return adresse; + } + + /** + * Legt den Wert der adresse-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ADRESSEType } + * + */ + public void setAdresse(ADRESSEType value) { + this.adresse = value; + } + + /** + * 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; + } + + /** + * Ruft den Wert der geokoordinaten-Eigenschaft ab. + * + * @return + * possible object is + * {@link GeokoordinatenType } + * + */ + public GeokoordinatenType getGeokoordinaten() { + return geokoordinaten; + } + + /** + * Legt den Wert der geokoordinaten-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link GeokoordinatenType } + * + */ + public void setGeokoordinaten(GeokoordinatenType value) { + this.geokoordinaten = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java new file mode 100644 index 00000000..c17c92b1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java @@ -0,0 +1,91 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht + * + *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
+ *       <attribute name="BetTxt">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *             <maxLength value="100"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") +@XmlSeeAlso({ + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SchadenType.BeteiligtePersonen.class +}) +public class ReferenzAufBeteiligtePersonSchadenType { + + @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) + @XmlSchemaType(name = "unsignedShort") + protected int betLfnr; + @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + protected String betTxt; + + /** + * Ruft den Wert der betLfnr-Eigenschaft ab. + * + */ + public int getBetLfnr() { + return betLfnr; + } + + /** + * Legt den Wert der betLfnr-Eigenschaft fest. + * + */ + public void setBetLfnr(int value) { + this.betLfnr = value; + } + + /** + * Ruft den Wert der betTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetTxt() { + return betTxt; + } + + /** + * Legt den Wert der betTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetTxt(String value) { + this.betTxt = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SachbearbVUType.java new file mode 100644 index 00000000..b38d8bfd --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SachbearbVUType.java @@ -0,0 +1,100 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.ELKommunikationType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters + * + *

Java-Klasse für SachbearbVUType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SachbearbVUType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
+ *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SachbearbVUType", propOrder = { + "person", + "elKommunikation" +}) +public class SachbearbVUType { + + @XmlElement(name = "Person", required = true) + protected NatPersonType person; + @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) + protected List elKommunikation; + + /** + * Ruft den Wert der person-Eigenschaft ab. + * + * @return + * possible object is + * {@link NatPersonType } + * + */ + public NatPersonType getPerson() { + return person; + } + + /** + * Legt den Wert der person-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link NatPersonType } + * + */ + public void setPerson(NatPersonType value) { + this.person = value; + } + + /** + * Gets the value of the elKommunikation property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the elKommunikation property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getELKommunikation().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ELKommunikationType } + * + * + */ + public List getELKommunikation() { + if (elKommunikation == null) { + elKommunikation = new ArrayList(); + } + return this.elKommunikation; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenLightType.java new file mode 100644 index 00000000..1f15de9c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenLightType.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur leichtgewichtigen Abbildung von Schadenobjekten + * + *

Java-Klasse für SchadenLight_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenLight_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
+ *       <sequence>
+ *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenLight_Type", propOrder = { + "bearbStandCd", + "schadenzuordnung" +}) +public class SchadenLightType + extends BasisSchadenType +{ + + @XmlElement(name = "BearbStandCd", required = true) + protected String bearbStandCd; + @XmlElement(name = "Schadenzuordnung") + protected SchadenzuordnungType schadenzuordnung; + + /** + * Ruft den Wert der bearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStandCd() { + return bearbStandCd; + } + + /** + * Legt den Wert der bearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStandCd(String value) { + this.bearbStandCd = value; + } + + /** + * Ruft den Wert der schadenzuordnung-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenzuordnungType } + * + */ + public SchadenzuordnungType getSchadenzuordnung() { + return schadenzuordnung; + } + + /** + * Legt den Wert der schadenzuordnung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenzuordnungType } + * + */ + public void setSchadenzuordnung(SchadenzuordnungType value) { + this.schadenzuordnung = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenType.java new file mode 100644 index 00000000..70931024 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenType.java @@ -0,0 +1,415 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.VtgRolleCdType; +import at.vvo.omds.types.omds2Types.v2_16.WaehrungsCdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) + * + *

Java-Klasse für Schaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Schaden_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
+ *       <sequence>
+ *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
+ *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
+ *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
+ *                 <sequence>
+ *                   <choice>
+ *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
+ *                     <sequence>
+ *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
+ *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *                     </sequence>
+ *                   </choice>
+ *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *                 </sequence>
+ *               </extension>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
+ *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
+ *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Schaden_Type", propOrder = { + "bearbStandCd", + "schadenzuordnung", + "schadenTxt", + "beteiligtePersonen", + "leistungGeschaetzt", + "waehrungsCd", + "spartendetails" +}) +public class SchadenType + extends BasisSchadenType +{ + + @XmlElement(name = "BearbStandCd") + protected String bearbStandCd; + @XmlElement(name = "Schadenzuordnung", required = true) + protected SchadenzuordnungType schadenzuordnung; + @XmlElement(name = "SchadenTxt") + protected String schadenTxt; + @XmlElement(name = "BeteiligtePersonen") + protected List beteiligtePersonen; + @XmlElement(name = "LeistungGeschaetzt") + protected BigDecimal leistungGeschaetzt; + @XmlElement(name = "WaehrungsCd") + @XmlSchemaType(name = "string") + protected WaehrungsCdType waehrungsCd; + @XmlElement(name = "Spartendetails") + protected SpartendetailSchadenType spartendetails; + + /** + * Ruft den Wert der bearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStandCd() { + return bearbStandCd; + } + + /** + * Legt den Wert der bearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStandCd(String value) { + this.bearbStandCd = value; + } + + /** + * Ruft den Wert der schadenzuordnung-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenzuordnungType } + * + */ + public SchadenzuordnungType getSchadenzuordnung() { + return schadenzuordnung; + } + + /** + * Legt den Wert der schadenzuordnung-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenzuordnungType } + * + */ + public void setSchadenzuordnung(SchadenzuordnungType value) { + this.schadenzuordnung = value; + } + + /** + * Ruft den Wert der schadenTxt-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadenTxt() { + return schadenTxt; + } + + /** + * Legt den Wert der schadenTxt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadenTxt(String value) { + this.schadenTxt = value; + } + + /** + * Gets the value of the beteiligtePersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the beteiligtePersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBeteiligtePersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SchadenType.BeteiligtePersonen } + * + * + */ + public List getBeteiligtePersonen() { + if (beteiligtePersonen == null) { + beteiligtePersonen = new ArrayList(); + } + return this.beteiligtePersonen; + } + + /** + * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLeistungGeschaetzt() { + return leistungGeschaetzt; + } + + /** + * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLeistungGeschaetzt(BigDecimal value) { + this.leistungGeschaetzt = value; + } + + /** + * Ruft den Wert der waehrungsCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link WaehrungsCdType } + * + */ + public WaehrungsCdType getWaehrungsCd() { + return waehrungsCd; + } + + /** + * Legt den Wert der waehrungsCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link WaehrungsCdType } + * + */ + public void setWaehrungsCd(WaehrungsCdType value) { + this.waehrungsCd = value; + } + + /** + * Ruft den Wert der spartendetails-Eigenschaft ab. + * + * @return + * possible object is + * {@link SpartendetailSchadenType } + * + */ + public SpartendetailSchadenType getSpartendetails() { + return spartendetails; + } + + /** + * Legt den Wert der spartendetails-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SpartendetailSchadenType } + * + */ + public void setSpartendetails(SpartendetailSchadenType value) { + this.spartendetails = value; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
+     *       <sequence>
+     *         <choice>
+     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
+     *           <sequence>
+     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
+     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+     *           </sequence>
+     *         </choice>
+     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+     *       </sequence>
+     *     </extension>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "vertragsrolle", + "schadensrolle", + "geschInteresseLfnr", + "zusaetzlicheRollendaten" + }) + public static class BeteiligtePersonen + extends ReferenzAufBeteiligtePersonSchadenType + { + + @XmlElement(name = "Vertragsrolle") + @XmlSchemaType(name = "string") + protected VtgRolleCdType vertragsrolle; + @XmlElement(name = "Schadensrolle") + protected String schadensrolle; + @XmlElement(name = "GeschInteresseLfnr") + @XmlSchemaType(name = "unsignedShort") + protected Integer geschInteresseLfnr; + @XmlElement(name = "ZusaetzlicheRollendaten") + protected List zusaetzlicheRollendaten; + + /** + * Ruft den Wert der vertragsrolle-Eigenschaft ab. + * + * @return + * possible object is + * {@link VtgRolleCdType } + * + */ + public VtgRolleCdType getVertragsrolle() { + return vertragsrolle; + } + + /** + * Legt den Wert der vertragsrolle-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link VtgRolleCdType } + * + */ + public void setVertragsrolle(VtgRolleCdType value) { + this.vertragsrolle = value; + } + + /** + * Ruft den Wert der schadensrolle-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadensrolle() { + return schadensrolle; + } + + /** + * Legt den Wert der schadensrolle-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadensrolle(String value) { + this.schadensrolle = value; + } + + /** + * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGeschInteresseLfnr() { + return geschInteresseLfnr; + } + + /** + * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGeschInteresseLfnr(Integer value) { + this.geschInteresseLfnr = value; + } + + /** + * Gets the value of the zusaetzlicheRollendaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheRollendaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getZusaetzlicheRollendaten().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheRollendatenType } + * + * + */ + public List getZusaetzlicheRollendaten() { + if (zusaetzlicheRollendaten == null) { + zusaetzlicheRollendaten = new ArrayList(); + } + return this.zusaetzlicheRollendaten; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisLightType.java new file mode 100644 index 00000000..4f377915 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisLightType.java @@ -0,0 +1,73 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur leichtgewichtigen Abbildung von Schadenereignis-Objekten + * + *

Java-Klasse für SchadenereignisLight_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenereignisLight_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
+ *       <sequence>
+ *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenereignisLight_Type", propOrder = { + "schaeden" +}) +public class SchadenereignisLightType + extends BasisSchadenereignisType +{ + + @XmlElement(name = "Schaeden", required = true) + protected List schaeden; + + /** + * Gets the value of the schaeden property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schaeden property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSchaeden().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SchadenLightType } + * + * + */ + public List getSchaeden() { + if (schaeden == null) { + schaeden = new ArrayList(); + } + return this.schaeden; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisType.java new file mode 100644 index 00000000..875b2dbc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenereignisType.java @@ -0,0 +1,263 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentenReferenzType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PersBankverbindungType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. + * + *

Java-Klasse für Schadenereignis_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Schadenereignis_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
+ *       <sequence>
+ *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
+ *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
+ *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Schadenereignis_Type", propOrder = { + "schadOrt", + "beteiligtePersonen", + "geschaedigteInteressen", + "dokumente", + "schadenmelder", + "bankverbindung", + "schaeden" +}) +public class SchadenereignisType + extends BasisSchadenereignisType +{ + + @XmlElement(name = "SchadOrt", required = true) + protected OrtType schadOrt; + @XmlElement(name = "BeteiligtePersonen") + protected List beteiligtePersonen; + @XmlElement(name = "GeschaedigteInteressen") + protected List geschaedigteInteressen; + @XmlElement(name = "Dokumente") + protected List dokumente; + @XmlElement(name = "Schadenmelder") + protected SchadenmelderType schadenmelder; + @XmlElement(name = "Bankverbindung") + protected List bankverbindung; + @XmlElement(name = "Schaeden", required = true) + protected List schaeden; + + /** + * Ruft den Wert der schadOrt-Eigenschaft ab. + * + * @return + * possible object is + * {@link OrtType } + * + */ + public OrtType getSchadOrt() { + return schadOrt; + } + + /** + * Legt den Wert der schadOrt-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OrtType } + * + */ + public void setSchadOrt(OrtType value) { + this.schadOrt = value; + } + + /** + * Gets the value of the beteiligtePersonen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the beteiligtePersonen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBeteiligtePersonen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BeteiligtePersonType } + * + * + */ + public List getBeteiligtePersonen() { + if (beteiligtePersonen == null) { + beteiligtePersonen = new ArrayList(); + } + return this.beteiligtePersonen; + } + + /** + * Gets the value of the geschaedigteInteressen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the geschaedigteInteressen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getGeschaedigteInteressen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GeschaedigtesInteresseType } + * + * + */ + public List getGeschaedigteInteressen() { + if (geschaedigteInteressen == null) { + geschaedigteInteressen = new ArrayList(); + } + return this.geschaedigteInteressen; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentenReferenzType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + + /** + * Ruft den Wert der schadenmelder-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenmelderType } + * + */ + public SchadenmelderType getSchadenmelder() { + return schadenmelder; + } + + /** + * Legt den Wert der schadenmelder-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenmelderType } + * + */ + public void setSchadenmelder(SchadenmelderType value) { + this.schadenmelder = value; + } + + /** + * Gets the value of the bankverbindung property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the bankverbindung property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBankverbindung().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersBankverbindungType } + * + * + */ + public List getBankverbindung() { + if (bankverbindung == null) { + bankverbindung = new ArrayList(); + } + return this.bankverbindung; + } + + /** + * Gets the value of the schaeden property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schaeden property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSchaeden().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SchadenType } + * + * + */ + public List getSchaeden() { + if (schaeden == null) { + schaeden = new ArrayList(); + } + return this.schaeden; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderType.java new file mode 100644 index 00000000..f9f56ee5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln + * + *

Java-Klasse für Schadenmelder_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="Schadenmelder_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Schadenmelder_Type") +public abstract class SchadenmelderType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderVermittlerType.java new file mode 100644 index 00000000..7f03d6bf --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenmelderVermittlerType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ObjektSpezifikationType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ zur Angabe eines Vermittlers als Schadenmelder + * + *

Java-Klasse für SchadenmelderVermittler_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenmelderVermittler_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
+ *       <sequence>
+ *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { + "vermnr" +}) +public class SchadenmelderVermittlerType + extends ObjektSpezifikationType +{ + + @XmlElement(name = "Vermnr", required = true) + protected String vermnr; + + /** + * Ruft den Wert der vermnr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermnr() { + return vermnr; + } + + /** + * Legt den Wert der vermnr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermnr(String value) { + this.vermnr = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenzuordnungType.java new file mode 100644 index 00000000..8a2987ad --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SchadenzuordnungType.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind + * + *

Java-Klasse für SchadenzuordnungType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SchadenzuordnungType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SchadenzuordnungType", propOrder = { + "schadenSparteCd", + "ursacheCd", + "spezifikationCd", + "artGeschaedigtesObjCd" +}) +public class SchadenzuordnungType { + + @XmlElement(name = "SchadenSparteCd", required = true) + protected String schadenSparteCd; + @XmlElement(name = "UrsacheCd") + protected String ursacheCd; + @XmlElement(name = "SpezifikationCd") + protected String spezifikationCd; + @XmlElement(name = "ArtGeschaedigtesObjCd") + protected String artGeschaedigtesObjCd; + + /** + * Ruft den Wert der schadenSparteCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSchadenSparteCd() { + return schadenSparteCd; + } + + /** + * Legt den Wert der schadenSparteCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSchadenSparteCd(String value) { + this.schadenSparteCd = value; + } + + /** + * Ruft den Wert der ursacheCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrsacheCd() { + return ursacheCd; + } + + /** + * Legt den Wert der ursacheCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrsacheCd(String value) { + this.ursacheCd = value; + } + + /** + * Ruft den Wert der spezifikationCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpezifikationCd() { + return spezifikationCd; + } + + /** + * Legt den Wert der spezifikationCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpezifikationCd(String value) { + this.spezifikationCd = value; + } + + /** + * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArtGeschaedigtesObjCd() { + return artGeschaedigtesObjCd; + } + + /** + * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArtGeschaedigtesObjCd(String value) { + this.artGeschaedigtesObjCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimRequestType.java new file mode 100644 index 00000000..6294e2f3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimRequestType.java @@ -0,0 +1,311 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZeitraumType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Request-Type für die Suche nach einem Schaden + * + *

Java-Klasse für SearchClaimRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SearchClaimRequest_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
+ *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
+ *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
+ *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SearchClaimRequest_Type", propOrder = { + "vuNr", + "authFilter", + "suchbegriff", + "polizzennr", + "personennr", + "zeitraum", + "bearbStandCd", + "maxResults", + "offset", + "orderBy" +}) +public class SearchClaimRequestType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "Suchbegriff") + protected String suchbegriff; + @XmlElement(name = "Polizzennr") + protected String polizzennr; + @XmlElement(name = "Personennr") + protected String personennr; + @XmlElement(name = "Zeitraum") + protected ZeitraumType zeitraum; + @XmlElement(name = "BearbStandCd") + protected String bearbStandCd; + @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 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 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 polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der personennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonennr() { + return personennr; + } + + /** + * Legt den Wert der personennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonennr(String value) { + this.personennr = value; + } + + /** + * Ruft den Wert der zeitraum-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZeitraumType } + * + */ + public ZeitraumType getZeitraum() { + return zeitraum; + } + + /** + * Legt den Wert der zeitraum-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZeitraumType } + * + */ + public void setZeitraum(ZeitraumType value) { + this.zeitraum = value; + } + + /** + * Ruft den Wert der bearbStandCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBearbStandCd() { + return bearbStandCd; + } + + /** + * Legt den Wert der bearbStandCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBearbStandCd(String value) { + this.bearbStandCd = 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseResultType.java new file mode 100644 index 00000000..acd40d88 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseResultType.java @@ -0,0 +1,135 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Das Ergebnisobjekt der Schadensuche + * + *

Java-Klasse für SearchClaimResponseResult_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SearchClaimResponseResult_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <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"/>
+ *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { + "actualOffset", + "actualMaxResults", + "totalResults", + "schadenereignisse" +}) +public class SearchClaimResponseResultType { + + @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; + @XmlElement(name = "Schadenereignisse") + protected List schadenereignisse; + + /** + * 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; + } + + /** + * Gets the value of the schadenereignisse property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the schadenereignisse property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getSchadenereignisse().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SchadenereignisLightType } + * + * + */ + public List getSchadenereignisse() { + if (schadenereignisse == null) { + schadenereignisse = new ArrayList(); + } + return this.schadenereignisse; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseType.java new file mode 100644 index 00000000..dc142c82 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SearchClaimResponseType.java @@ -0,0 +1,100 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response-Type der Suche nach einem Schaden + * + *

Java-Klasse für SearchClaimResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SearchClaimResponse_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SearchClaimResponse_Type", propOrder = { + "result", + "serviceFault" +}) +public class SearchClaimResponseType { + + @XmlElement(name = "Result") + protected SearchClaimResponseResultType result; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Ruft den Wert der result-Eigenschaft ab. + * + * @return + * possible object is + * {@link SearchClaimResponseResultType } + * + */ + public SearchClaimResponseResultType getResult() { + return result; + } + + /** + * Legt den Wert der result-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SearchClaimResponseResultType } + * + */ + public void setResult(SearchClaimResponseResultType value) { + this.result = value; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKfzType.java new file mode 100644 index 00000000..cf30d7e0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKfzType.java @@ -0,0 +1,122 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spartenerweiterung der Schadenmeldung für Kfz + * + *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpartendetailSchadenKfz_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
+ *       <sequence>
+ *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { + "behoerdlichAufgenommen", + "kennzeichen", + "verschuldenCd" +}) +public class SpartendetailSchadenKfzType + extends SpartendetailSchadenType +{ + + @XmlElement(name = "BehoerdlichAufgenommen") + protected Boolean behoerdlichAufgenommen; + @XmlElement(name = "Kennzeichen", required = true) + protected String kennzeichen; + @XmlElement(name = "VerschuldenCd") + protected String verschuldenCd; + + /** + * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isBehoerdlichAufgenommen() { + return behoerdlichAufgenommen; + } + + /** + * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setBehoerdlichAufgenommen(Boolean value) { + this.behoerdlichAufgenommen = value; + } + + /** + * Ruft den Wert der kennzeichen-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKennzeichen() { + return kennzeichen; + } + + /** + * Legt den Wert der kennzeichen-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKennzeichen(String value) { + this.kennzeichen = value; + } + + /** + * Ruft den Wert der verschuldenCd-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerschuldenCd() { + return verschuldenCd; + } + + /** + * Legt den Wert der verschuldenCd-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerschuldenCd(String value) { + this.verschuldenCd = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKrankenType.java new file mode 100644 index 00000000..851bbd56 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenKrankenType.java @@ -0,0 +1,199 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spartenerweiterung der Schadenmeldung für Kranken + * + *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpartendetailSchadenKranken_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
+ *       <sequence>
+ *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
+ *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { + "behandlerName", + "behandlungen" +}) +public class SpartendetailSchadenKrankenType + extends SpartendetailSchadenType +{ + + @XmlElement(name = "BehandlerName", required = true) + protected String behandlerName; + @XmlElement(name = "Behandlungen") + protected List behandlungen; + + /** + * Ruft den Wert der behandlerName-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBehandlerName() { + return behandlerName; + } + + /** + * Legt den Wert der behandlerName-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBehandlerName(String value) { + this.behandlerName = value; + } + + /** + * Gets the value of the behandlungen property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the behandlungen property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBehandlungen().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SpartendetailSchadenKrankenType.Behandlungen } + * + * + */ + public List getBehandlungen() { + if (behandlungen == null) { + behandlungen = new ArrayList(); + } + return this.behandlungen; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
+     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "behandlungVon", + "behandlungBis" + }) + public static class Behandlungen { + + @XmlElement(name = "BehandlungVon", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar behandlungVon; + @XmlElement(name = "BehandlungBis") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar behandlungBis; + + /** + * Ruft den Wert der behandlungVon-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBehandlungVon() { + return behandlungVon; + } + + /** + * Legt den Wert der behandlungVon-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBehandlungVon(XMLGregorianCalendar value) { + this.behandlungVon = value; + } + + /** + * Ruft den Wert der behandlungBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBehandlungBis() { + return behandlungBis; + } + + /** + * Legt den Wert der behandlungBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBehandlungBis(XMLGregorianCalendar value) { + this.behandlungBis = value; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenType.java new file mode 100644 index 00000000..ef893f71 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenType.java @@ -0,0 +1,38 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten + * + *

Java-Klasse für SpartendetailSchaden_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpartendetailSchaden_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpartendetailSchaden_Type") +@XmlSeeAlso({ + SpartendetailSchadenKfzType.class, + SpartendetailSchadenUnfallType.class, + SpartendetailSchadenKrankenType.class +}) +public abstract class SpartendetailSchadenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenUnfallType.java new file mode 100644 index 00000000..d0f677fe --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SpartendetailSchadenUnfallType.java @@ -0,0 +1,254 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Spartenerweiterung der Schadenmeldung für Unfall + * + *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SpartendetailSchadenUnfall_Type">
+ *   <complexContent>
+ *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
+ *       <sequence>
+ *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
+ *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Koerperhaelfte" minOccurs="0">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}byte">
+ *               <enumeration value="0"/>
+ *               <enumeration value="1"/>
+ *               <enumeration value="2"/>
+ *               <enumeration value="3"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="Koerperteil" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="BehoerdlicheAufnahme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { + "arbeitsunfaehigVon", + "arbeitsunfaehigBis", + "diagnose", + "behandlerName", + "koerperhaelfte", + "koerperteil", + "behoerdlicheAufnahme" +}) +public class SpartendetailSchadenUnfallType + extends SpartendetailSchadenType +{ + + @XmlElement(name = "ArbeitsunfaehigVon") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar arbeitsunfaehigVon; + @XmlElement(name = "ArbeitsunfaehigBis") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar arbeitsunfaehigBis; + @XmlElement(name = "Diagnose", required = true) + protected String diagnose; + @XmlElement(name = "BehandlerName") + protected String behandlerName; + @XmlElement(name = "Koerperhaelfte") + protected Byte koerperhaelfte; + @XmlElement(name = "Koerperteil") + protected List koerperteil; + @XmlElement(name = "BehoerdlicheAufnahme") + protected String behoerdlicheAufnahme; + + /** + * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getArbeitsunfaehigVon() { + return arbeitsunfaehigVon; + } + + /** + * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { + this.arbeitsunfaehigVon = value; + } + + /** + * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getArbeitsunfaehigBis() { + return arbeitsunfaehigBis; + } + + /** + * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { + this.arbeitsunfaehigBis = value; + } + + /** + * Ruft den Wert der diagnose-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDiagnose() { + return diagnose; + } + + /** + * Legt den Wert der diagnose-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDiagnose(String value) { + this.diagnose = value; + } + + /** + * Ruft den Wert der behandlerName-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBehandlerName() { + return behandlerName; + } + + /** + * Legt den Wert der behandlerName-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBehandlerName(String value) { + this.behandlerName = value; + } + + /** + * Ruft den Wert der koerperhaelfte-Eigenschaft ab. + * + * @return + * possible object is + * {@link Byte } + * + */ + public Byte getKoerperhaelfte() { + return koerperhaelfte; + } + + /** + * Legt den Wert der koerperhaelfte-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Byte } + * + */ + public void setKoerperhaelfte(Byte value) { + this.koerperhaelfte = value; + } + + /** + * Gets the value of the koerperteil property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the koerperteil property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getKoerperteil().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getKoerperteil() { + if (koerperteil == null) { + koerperteil = new ArrayList(); + } + return this.koerperteil; + } + + /** + * Ruft den Wert der behoerdlicheAufnahme-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBehoerdlicheAufnahme() { + return behoerdlicheAufnahme; + } + + /** + * Legt den Wert der behoerdlicheAufnahme-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBehoerdlicheAufnahme(String value) { + this.behoerdlicheAufnahme = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimRequestType.java new file mode 100644 index 00000000..b97dd823 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimRequestType.java @@ -0,0 +1,103 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.UploadDokumentType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ für die Durchführung einer Schadenmeldung + * + *

Java-Klasse für SubmitClaimRequest_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitClaimRequest_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
+ *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitClaimRequest_Type", propOrder = { + "schadenereignis", + "dokumente" +}) +public class SubmitClaimRequestType + extends CommonRequestType +{ + + @XmlElement(name = "Schadenereignis") + protected SchadenereignisType schadenereignis; + @XmlElement(name = "Dokumente") + protected List dokumente; + + /** + * Ruft den Wert der schadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenereignisType } + * + */ + public SchadenereignisType getSchadenereignis() { + return schadenereignis; + } + + /** + * Legt den Wert der schadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenereignisType } + * + */ + public void setSchadenereignis(SchadenereignisType value) { + this.schadenereignis = value; + } + + /** + * Gets the value of the dokumente property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the dokumente property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDokumente().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link UploadDokumentType } + * + * + */ + public List getDokumente() { + if (dokumente == null) { + dokumente = new ArrayList(); + } + return this.dokumente; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimResponseType.java new file mode 100644 index 00000000..b5ba718d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitClaimResponseType.java @@ -0,0 +1,67 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Anworttyp beim Erzeugen einer Schadenmeldung + * + *

Java-Klasse für SubmitClaimResponse_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="SubmitClaimResponse_Type">
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *       <sequence>
+ *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SubmitClaimResponse_Type", propOrder = { + "schadenereignis" +}) +public class SubmitClaimResponseType + extends CommonResponseType +{ + + @XmlElement(name = "Schadenereignis") + protected SchadenereignisType schadenereignis; + + /** + * Ruft den Wert der schadenereignis-Eigenschaft ab. + * + * @return + * possible object is + * {@link SchadenereignisType } + * + */ + public SchadenereignisType getSchadenereignis() { + return schadenereignis; + } + + /** + * Legt den Wert der schadenereignis-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link SchadenereignisType } + * + */ + public void setSchadenereignis(SchadenereignisType value) { + this.schadenereignis = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptRequest.java new file mode 100644 index 00000000..858f6c19 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptRequest.java @@ -0,0 +1,250 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonRequestType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.DokumentDataType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ZahlwegType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
+ *       <sequence>
+ *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
+ *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
+ *         <element name="Betrag" type="{urn:omds20}decimal"/>
+ *         <element name="Grund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Zahlweg" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type"/>
+ *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded"/>
+ *         <element name="ZusaetzlicheBelegeinreichungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheBelegeinreichungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "polizzennr", + "vertragsID", + "betrag", + "grund", + "zahlweg", + "belege", + "zusaetzlicheBelegeinreichungsdaten" +}) +@XmlRootElement(name = "SubmitReceiptRequest") +public class SubmitReceiptRequest + extends CommonRequestType +{ + + @XmlElement(name = "Polizzennr", required = true) + protected String polizzennr; + @XmlElement(name = "VertragsID") + protected String vertragsID; + @XmlElement(name = "Betrag", required = true) + protected BigDecimal betrag; + @XmlElement(name = "Grund") + protected String grund; + @XmlElement(name = "Zahlweg", required = true) + protected ZahlwegType zahlweg; + @XmlElement(name = "Belege", required = true) + protected List belege; + @XmlElement(name = "ZusaetzlicheBelegeinreichungsdaten") + protected List zusaetzlicheBelegeinreichungsdaten; + + /** + * Ruft den Wert der polizzennr-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolizzennr() { + return polizzennr; + } + + /** + * Legt den Wert der polizzennr-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolizzennr(String value) { + this.polizzennr = value; + } + + /** + * Ruft den Wert der vertragsID-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVertragsID() { + return vertragsID; + } + + /** + * Legt den Wert der vertragsID-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVertragsID(String value) { + this.vertragsID = value; + } + + /** + * Ruft den Wert der betrag-Eigenschaft ab. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBetrag() { + return betrag; + } + + /** + * Legt den Wert der betrag-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBetrag(BigDecimal value) { + this.betrag = value; + } + + /** + * Ruft den Wert der grund-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGrund() { + return grund; + } + + /** + * Legt den Wert der grund-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGrund(String value) { + this.grund = value; + } + + /** + * Ruft den Wert der zahlweg-Eigenschaft ab. + * + * @return + * possible object is + * {@link ZahlwegType } + * + */ + public ZahlwegType getZahlweg() { + return zahlweg; + } + + /** + * Legt den Wert der zahlweg-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ZahlwegType } + * + */ + public void setZahlweg(ZahlwegType value) { + this.zahlweg = value; + } + + /** + * Gets the value of the belege property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the belege property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getBelege().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DokumentDataType } + * + * + */ + public List getBelege() { + if (belege == null) { + belege = new ArrayList(); + } + return this.belege; + } + + /** + * Gets the value of the zusaetzlicheBelegeinreichungsdaten property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the zusaetzlicheBelegeinreichungsdaten property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZusaetzlicheBelegeinreichungsdaten().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ZusaetzlicheBelegeinreichungsdatenType } + * + * + */ + public List getZusaetzlicheBelegeinreichungsdaten() { + if (zusaetzlicheBelegeinreichungsdaten == null) { + zusaetzlicheBelegeinreichungsdaten = new ArrayList(); + } + return this.zusaetzlicheBelegeinreichungsdaten; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptResponse.java new file mode 100644 index 00000000..dc1ab79d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/SubmitReceiptResponse.java @@ -0,0 +1,35 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.CommonResponseType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "SubmitReceiptResponse") +public class SubmitReceiptResponse + extends CommonResponseType +{ + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java new file mode 100644 index 00000000..d4c2dab3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung des Service zur Belegeinreichung mit Datentypen, die nicht im Standard halten sind + * + *

Java-Klasse für ZusaetzlicheBelegeinreichungsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheBelegeinreichungsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheBelegeinreichungsdaten_Type") +public abstract class ZusaetzlicheBelegeinreichungsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java new file mode 100644 index 00000000..738066df --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung von Anfragen zu Deckungsauskünften mit Datentypen, die nicht im Standard halten sind + * + *

Java-Klasse für ZusaetzlicheDeckungsauskunftsdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheDeckungsauskunftsdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheDeckungsauskunftsdaten_Type") +public abstract class ZusaetzlicheDeckungsauskunftsdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheRollendatenType.java new file mode 100644 index 00000000..5862a714 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheRollendatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind + * + *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheRollendaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheRollendaten_Type") +public abstract class ZusaetzlicheRollendatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensdatenType.java new file mode 100644 index 00000000..daa3a3d5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind + * + *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheSchadensdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheSchadensdaten_Type") +public abstract class ZusaetzlicheSchadensdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java new file mode 100644 index 00000000..93cb03fe --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java @@ -0,0 +1,32 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind + * + *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") +public abstract class ZusaetzlicheSchadensereignisdatenType { + + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/package-info.java new file mode 100644 index 00000000..ebb825c4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/on7schaden/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsService.java new file mode 100644 index 00000000..7b792b07 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsService.java @@ -0,0 +1,87 @@ +package at.vvo.omds.types.omds3Types.r1_11_0.service; + +import java.net.MalformedURLException; +import java.net.URL; +import javax.xml.namespace.QName; +import jakarta.xml.ws.WebEndpoint; +import jakarta.xml.ws.WebServiceClient; +import jakarta.xml.ws.WebServiceFeature; +import jakarta.xml.ws.Service; + +/** + * This class was generated by Apache CXF 4.0.3 + * 2024-05-09T17:02:10.827+02:00 + * Generated source version: 4.0.3 + * + */ +@WebServiceClient(name = "omdsService", + wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl", + targetNamespace = "urn:omds3Services-1-4-0") +public class OmdsService extends Service { + + public final static URL WSDL_LOCATION; + + public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); + public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); + static { + URL url = null; + try { + url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl"); + } catch (MalformedURLException e) { + java.util.logging.Logger.getLogger(OmdsService.class.getName()) + .log(java.util.logging.Level.INFO, + "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl"); + } + WSDL_LOCATION = url; + } + + public OmdsService(URL wsdlLocation) { + super(wsdlLocation, SERVICE); + } + + public OmdsService(URL wsdlLocation, QName serviceName) { + super(wsdlLocation, serviceName); + } + + public OmdsService() { + super(WSDL_LOCATION, SERVICE); + } + + public OmdsService(WebServiceFeature ... features) { + super(WSDL_LOCATION, SERVICE, features); + } + + public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { + super(wsdlLocation, SERVICE, features); + } + + public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { + super(wsdlLocation, serviceName, features); + } + + + + + /** + * + * @return + * returns OmdsServicePortType + */ + @WebEndpoint(name = "omdsServicePort") + public OmdsServicePortType getOmdsServicePort() { + return super.getPort(OmdsServicePort, OmdsServicePortType.class); + } + + /** + * + * @param features + * A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. + * @return + * returns OmdsServicePortType + */ + @WebEndpoint(name = "omdsServicePort") + public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { + return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortImpl.java new file mode 100644 index 00000000..96f69cdc --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortImpl.java @@ -0,0 +1,772 @@ + +/** + * Please modify this class to meet your needs + * This class is not complete + */ + +package at.vvo.omds.types.omds3Types.r1_11_0.service; + +import java.util.logging.Logger; +import jakarta.jws.WebMethod; +import jakarta.jws.WebParam; +import jakarta.jws.WebResult; +import jakarta.jws.WebService; +import jakarta.jws.soap.SOAPBinding; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.ws.soap.MTOM; + +/** + * This class was generated by Apache CXF 4.0.3 + * 2024-05-09T17:02:10.783+02:00 + * Generated source version: 4.0.3 + * + */ + +@jakarta.jws.WebService( + serviceName = "omdsService", + portName = "omdsServicePort", + targetNamespace = "urn:omds3Services-1-4-0", + wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl", + endpointInterface = "at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType") +@MTOM(enabled = true, threshold = 1024) +public class OmdsServicePortImpl implements OmdsServicePortType { + + private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation getOMDSPackageList"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation calculateLeben"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation addDocToBusinessCase"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation createApplicationKranken"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation calculateSachPrivat"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createApplicationKfz"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitReceipt(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse submitReceipt(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation submitReceipt"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createOfferKfz"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPartnerRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation deepLinkPartner"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation submitApplicationLeben"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPolicyRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation deepLinkPolicy"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation searchClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getStateChanges(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType getStateChanges(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation getStateChanges"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation getUserData"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkClaimRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkClaimRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation deepLinkClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#checkCoverage(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse checkCoverage(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation checkCoverage"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation submitClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation submitApplicationKranken"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation getNumberOfDocuments"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation getOMDSPackage"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkOfferRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation deepLinkOffer"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation calculateUnfall"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createVB(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse createVB(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation createVB"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation submitApplicationUnfall"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation getDocumentsOfPeriod"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#conversionProposal(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse conversionProposal(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation conversionProposal"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation getDocumentsOfObject"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation calculateKfz"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOfferKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation createOfferKranken"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createApplicationUnfall"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation calculateKranken"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createOfferSachPrivat"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation checkClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createApplicationSachPrivat"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#conversionScope(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse conversionScope(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation conversionScope"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation getClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation getArcImage"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createApplicationLeben"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#addInformationToClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse addInformationToClaim(at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation addInformationToClaim"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#acknowledgeDocuments(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse acknowledgeDocuments(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation acknowledgeDocuments"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createOfferUnfall"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation createOfferLeben"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.LoginRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.LoginRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation login"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation submitApplicationKfz"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param) throws ServiceFaultMsg { + LOG.info("Executing operation submitApplicationSachPrivat"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + + /* (non-Javadoc) + * @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosRequest param)* + */ + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg { + LOG.info("Executing operation getArcImageInfos"); + System.out.println(param); + try { + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse _return = null; + return _return; + } catch (java.lang.Exception ex) { + ex.printStackTrace(); + throw new RuntimeException(ex); + } + //throw new ServiceFaultMsg("ServiceFaultMsg..."); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortType.java new file mode 100644 index 00000000..efa3f537 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/OmdsServicePortType.java @@ -0,0 +1,388 @@ +package at.vvo.omds.types.omds3Types.r1_11_0.service; + +import jakarta.jws.WebMethod; +import jakarta.jws.WebParam; +import jakarta.jws.WebResult; +import jakarta.jws.WebService; +import jakarta.jws.soap.SOAPBinding; +import jakarta.xml.bind.annotation.XmlSeeAlso; + +/** + * This class was generated by Apache CXF 4.0.3 + * 2024-05-09T17:02:10.819+02:00 + * Generated source version: 4.0.3 + * + */ +@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") +@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_16.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.ObjectFactory.class}) +@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) +public interface OmdsServicePortType { + + @WebMethod(action = "urn:getOMDSPackageList") + @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( + + @WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:calculateLeben") + @WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType calculateLeben( + + @WebParam(partName = "param", name = "CalculateLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:addDocToBusinessCase") + @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( + + @WebParam(partName = "param", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createApplicationKranken") + @WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken( + + @WebParam(partName = "param", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:calculateSachPrivat") + @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( + + @WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createApplicationKfz") + @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( + + @WebParam(partName = "param", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitReceipt") + @WebResult(name = "SubmitReceiptResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse submitReceipt( + + @WebParam(partName = "param", name = "SubmitReceiptRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createOfferKfz") + @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( + + @WebParam(partName = "param", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:deepLinkPartner") + @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( + + @WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPartnerRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitApplicationLeben") + @WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben( + + @WebParam(partName = "param", name = "SubmitApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:deepLinkPolicy") + @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( + + @WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkPolicyRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:searchClaim") + @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType searchClaim( + + @WebParam(partName = "param", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getStateChanges") + @WebResult(name = "GetStateChangesResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType getStateChanges( + + @WebParam(partName = "param", name = "GetStateChangesRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getUserData") + @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse getUserData( + + @WebParam(partName = "param", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:deepLinkClaim") + @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( + + @WebParam(partName = "param", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkClaimRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:checkCoverage") + @WebResult(name = "CheckCoverageResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse checkCoverage( + + @WebParam(partName = "param", name = "CheckCoverageRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitClaim") + @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType submitClaim( + + @WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitApplicationKranken") + @WebResult(name = "SubmitApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken( + + @WebParam(partName = "param", name = "SubmitApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getNumberOfDocuments") + @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( + + @WebParam(partName = "param", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getOMDSPackage") + @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse getOMDSPackage( + + @WebParam(partName = "param", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:deepLinkOffer") + @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( + + @WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkOfferRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:calculateUnfall") + @WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall( + + @WebParam(partName = "param", name = "CalculateUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createVB") + @WebResult(name = "CreateVBResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse createVB( + + @WebParam(partName = "param", name = "CreateVBRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitApplicationUnfall") + @WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall( + + @WebParam(partName = "param", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getDocumentsOfPeriod") + @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( + + @WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:conversionProposal") + @WebResult(name = "ConversionProposalResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse conversionProposal( + + @WebParam(partName = "param", name = "ConversionProposalRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getDocumentsOfObject") + @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( + + @WebParam(partName = "param", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:calculateKfz") + @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( + + @WebParam(partName = "param", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createOfferKranken") + @WebResult(name = "CreateOfferKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken( + + @WebParam(partName = "param", name = "CreateOfferKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createApplicationUnfall") + @WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall( + + @WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:calculateKranken") + @WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken( + + @WebParam(partName = "param", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createOfferSachPrivat") + @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( + + @WebParam(partName = "param", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:checkClaim") + @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType checkClaim( + + @WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createApplicationSachPrivat") + @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( + + @WebParam(partName = "param", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:conversionScope") + @WebResult(name = "ConversionScopeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse conversionScope( + + @WebParam(partName = "param", name = "ConversionScopeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getClaim") + @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType getClaim( + + @WebParam(partName = "param", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getArcImage") + @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse getArcImage( + + @WebParam(partName = "param", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createApplicationLeben") + @WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben( + + @WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:addInformationToClaim") + @WebResult(name = "AddInformationToClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse addInformationToClaim( + + @WebParam(partName = "param", name = "AddInformationToClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") + at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:acknowledgeDocuments") + @WebResult(name = "AcknowledgeDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse acknowledgeDocuments( + + @WebParam(partName = "param", name = "AcknowledgeDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") + at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsRequest param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createOfferUnfall") + @WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall( + + @WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:createOfferLeben") + @WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben( + + @WebParam(partName = "param", name = "CreateOfferLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:login") + @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse login( + + @WebParam(partName = "param", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.LoginRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitApplicationKfz") + @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( + + @WebParam(partName = "param", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:submitApplicationSachPrivat") + @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( + + @WebParam(partName = "param", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") + at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param + ) throws ServiceFaultMsg; + + @WebMethod(action = "urn:getArcImageInfos") + @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") + public at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse getArcImageInfos( + + @WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") + at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosRequest param + ) throws ServiceFaultMsg; +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/ServiceFaultMsg.java new file mode 100644 index 00000000..3f04512d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/service/ServiceFaultMsg.java @@ -0,0 +1,43 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.service; + +import jakarta.xml.ws.WebFault; + + +/** + * This class was generated by Apache CXF 4.0.3 + * 2024-05-09T17:02:10.755+02:00 + * Generated source version: 4.0.3 + */ + +@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") +public class ServiceFaultMsg extends Exception { + + private at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault faultInfo; + + public ServiceFaultMsg() { + super(); + } + + public ServiceFaultMsg(String message) { + super(message); + } + + public ServiceFaultMsg(String message, java.lang.Throwable cause) { + super(message, cause); + } + + public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault serviceFault) { + super(message); + this.faultInfo = serviceFault; + } + + public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault serviceFault, java.lang.Throwable cause) { + super(message, cause); + this.faultInfo = serviceFault; + } + + public at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault getFaultInfo() { + return this.faultInfo; + } +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcContent.java new file mode 100644 index 00000000..34fc8fc1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcContent.java @@ -0,0 +1,94 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Informationen zu einem Dokument und das Dokument base64encoded + * + *

Java-Klasse für ArcContent complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcContent">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" minOccurs="0"/>
+ *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcContent", propOrder = { + "arcImageInfo", + "arcImage" +}) +public class ArcContent { + + protected ArcImageInfo arcImageInfo; + @XmlElement(required = true) + @XmlMimeType("application/octet-stream") + protected DataHandler arcImage; + + /** + * Ruft den Wert der arcImageInfo-Eigenschaft ab. + * + * @return + * possible object is + * {@link ArcImageInfo } + * + */ + public ArcImageInfo getArcImageInfo() { + return arcImageInfo; + } + + /** + * Legt den Wert der arcImageInfo-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ArcImageInfo } + * + */ + public void setArcImageInfo(ArcImageInfo value) { + this.arcImageInfo = value; + } + + /** + * Ruft den Wert der arcImage-Eigenschaft ab. + * + * @return + * possible object is + * {@link DataHandler } + * + */ + public DataHandler getArcImage() { + return arcImage; + } + + /** + * Legt den Wert der arcImage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link DataHandler } + * + */ + public void setArcImage(DataHandler value) { + this.arcImage = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfo.java new file mode 100644 index 00000000..3a856298 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfo.java @@ -0,0 +1,231 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Information zu einem einzelnen Dokument + * + *

Java-Klasse für ArcImageInfo complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcImageInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcImageInfo", propOrder = { + "arcImageIdDetails", + "name", + "documentType", + "arcContentType", + "arcContentLength", + "date", + "docReference" +}) +public class ArcImageInfo { + + @XmlElement(required = true) + protected ElementIdType arcImageIdDetails; + @XmlElement(required = true) + protected String name; + protected int documentType; + protected String arcContentType; + protected Long arcContentLength; + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + protected List docReference; + + /** + * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. + * + * @return + * possible object is + * {@link ElementIdType } + * + */ + public ElementIdType getArcImageIdDetails() { + return arcImageIdDetails; + } + + /** + * Legt den Wert der arcImageIdDetails-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ElementIdType } + * + */ + public void setArcImageIdDetails(ElementIdType value) { + this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArcContentType() { + return arcContentType; + } + + /** + * Legt den Wert der arcContentType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArcContentType(String value) { + this.arcContentType = value; + } + + /** + * Ruft den Wert der arcContentLength-Eigenschaft ab. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getArcContentLength() { + return arcContentLength; + } + + /** + * Legt den Wert der arcContentLength-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setArcContentLength(Long value) { + this.arcContentLength = value; + } + + /** + * Ruft den Wert der date-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Legt den Wert der date-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the docReference property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the docReference property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDocReference().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ArcImageInfo } + * + * + */ + public List getDocReference() { + if (docReference == null) { + docReference = new ArrayList(); + } + return this.docReference; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosRequest.java new file mode 100644 index 00000000..60a26dae --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosRequest.java @@ -0,0 +1,273 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Anfragetyp Informationen zu vertragsbezogenen Dokumenten + * + *

Java-Klasse für ArcImageInfosRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcImageInfosRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
+ *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
+ *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcImageInfosRequest", propOrder = { + "vuNr", + "authFilter", + "policyNumber", + "policyType", + "policyPartnerRole", + "documentType", + "dateFrom", + "dateUntil" +}) +public class ArcImageInfosRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(required = true) + protected String policyNumber; + protected String policyType; + protected List policyPartnerRole; + @XmlElement(type = Integer.class) + protected List documentType; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * 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 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 policyNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolicyNumber() { + return policyNumber; + } + + /** + * Legt den Wert der policyNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolicyNumber(String value) { + this.policyNumber = value; + } + + /** + * Ruft den Wert der policyType-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolicyType() { + return policyType; + } + + /** + * Legt den Wert der policyType-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolicyType(String value) { + this.policyType = value; + } + + /** + * Gets the value of the policyPartnerRole property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the policyPartnerRole property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPolicyPartnerRole().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PolicyPartnerRole } + * + * + */ + public List getPolicyPartnerRole() { + if (policyPartnerRole == null) { + policyPartnerRole = new ArrayList(); + } + return this.policyPartnerRole; + } + + /** + * Gets the value of the documentType property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the documentType property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDocumentType().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getDocumentType() { + if (documentType == null) { + documentType = new ArrayList(); + } + return this.documentType; + } + + /** + * Ruft den Wert der dateFrom-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Legt den Wert der dateFrom-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Ruft den Wert der dateUntil-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Legt den Wert der dateUntil-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosResponse.java new file mode 100644 index 00000000..11aad0f9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageInfosResponse.java @@ -0,0 +1,99 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten + * + *

Java-Klasse für ArcImageInfosResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcImageInfosResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcImageInfosResponse", propOrder = { + "arcImageInfo", + "serviceFault" +}) +public class ArcImageInfosResponse { + + protected List arcImageInfo; + @XmlElement(name = "ServiceFault") + protected ServiceFault serviceFault; + + /** + * Gets the value of the arcImageInfo property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the arcImageInfo property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getArcImageInfo().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ArcImageInfo } + * + * + */ + public List getArcImageInfo() { + if (arcImageInfo == null) { + arcImageInfo = new ArrayList(); + } + return this.arcImageInfo; + } + + /** + * Ruft den Wert der serviceFault-Eigenschaft ab. + * + * @return + * possible object is + * {@link ServiceFault } + * + */ + public ServiceFault getServiceFault() { + return serviceFault; + } + + /** + * Legt den Wert der serviceFault-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ServiceFault } + * + */ + public void setServiceFault(ServiceFault value) { + this.serviceFault = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageRequest.java new file mode 100644 index 00000000..d16f7252 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageRequest.java @@ -0,0 +1,127 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Requesttyp zur Abholung eines einzelnen bekannten Dokuments + * + *

Java-Klasse für ArcImageRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcImageRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="ArcImageId">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="1024"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcImageRequest", propOrder = { + "vuNr", + "authFilter", + "arcImageId" +}) +public class ArcImageRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(name = "ArcImageId", required = true) + protected String arcImageId; + + /** + * 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 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 arcImageId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getArcImageId() { + return arcImageId; + } + + /** + * Legt den Wert der arcImageId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setArcImageId(String value) { + this.arcImageId = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageResponse.java new file mode 100644 index 00000000..559e8ee0 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ArcImageResponse.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Responsetyp zur Rückgabe eines einzelnen Dokumentes + * + *

Java-Klasse für ArcImageResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="ArcImageResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArcImageResponse", propOrder = { + "arcContent", + "serviceFault" +}) +public class ArcImageResponse { + + @XmlElement(name = "ArcContent") + protected ArcContent arcContent; + @XmlElement(name = "ServiceFault") + protected ServiceFault serviceFault; + + /** + * Ruft den Wert der arcContent-Eigenschaft ab. + * + * @return + * possible object is + * {@link ArcContent } + * + */ + public ArcContent getArcContent() { + return arcContent; + } + + /** + * Legt den Wert der arcContent-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ArcContent } + * + */ + public void setArcContent(ArcContent value) { + this.arcContent = value; + } + + /** + * Ruft den Wert der serviceFault-Eigenschaft ab. + * + * @return + * possible object is + * {@link ServiceFault } + * + */ + public ServiceFault getServiceFault() { + return serviceFault; + } + + /** + * Legt den Wert der serviceFault-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ServiceFault } + * + */ + public void setServiceFault(ServiceFault value) { + this.serviceFault = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkBusinessObjectResponse.java new file mode 100644 index 00000000..6a6b931b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkBusinessObjectResponse.java @@ -0,0 +1,102 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DeepLinkBusinessObjectResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { + "httpActionLink", + "serviceFault" +}) +public class DeepLinkBusinessObjectResponse { + + protected List httpActionLink; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Gets the value of the httpActionLink property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the httpActionLink property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getHttpActionLink().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link HttpActionLinkType } + * + * + */ + public List getHttpActionLink() { + if (httpActionLink == null) { + httpActionLink = new ArrayList(); + } + return this.httpActionLink; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkClaimRequest.java new file mode 100644 index 00000000..756156af --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkClaimRequest.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DeepLinkClaimRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DeepLinkClaimRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
+ *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeepLinkClaimRequest", propOrder = { + "vuNr", + "authFilter", + "claimNumber", + "withoutFrame" +}) +public class DeepLinkClaimRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(required = true) + protected String claimNumber; + protected Boolean withoutFrame; + + /** + * 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 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 claimNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClaimNumber() { + return claimNumber; + } + + /** + * Legt den Wert der claimNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClaimNumber(String value) { + this.claimNumber = value; + } + + /** + * Ruft den Wert der withoutFrame-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isWithoutFrame() { + return withoutFrame; + } + + /** + * Legt den Wert der withoutFrame-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setWithoutFrame(Boolean value) { + this.withoutFrame = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkOfferRequest.java new file mode 100644 index 00000000..4ff5aff3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkOfferRequest.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DeepLinkOfferRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DeepLinkOfferRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeepLinkOfferRequest", propOrder = { + "vuNr", + "authFilter", + "offerNumber", + "withoutFrame" +}) +public class DeepLinkOfferRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(required = true) + protected String offerNumber; + protected Boolean withoutFrame; + + /** + * 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 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 offerNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOfferNumber() { + return offerNumber; + } + + /** + * Legt den Wert der offerNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOfferNumber(String value) { + this.offerNumber = value; + } + + /** + * Ruft den Wert der withoutFrame-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isWithoutFrame() { + return withoutFrame; + } + + /** + * Legt den Wert der withoutFrame-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setWithoutFrame(Boolean value) { + this.withoutFrame = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPartnerRequest.java new file mode 100644 index 00000000..f2e854d7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPartnerRequest.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DeepLinkPartnerRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DeepLinkPartnerRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
+ *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeepLinkPartnerRequest", propOrder = { + "vuNr", + "authFilter", + "partnerNumber", + "withoutFrame" +}) +public class DeepLinkPartnerRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(required = true) + protected String partnerNumber; + protected Boolean withoutFrame; + + /** + * 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 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 partnerNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPartnerNumber() { + return partnerNumber; + } + + /** + * Legt den Wert der partnerNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPartnerNumber(String value) { + this.partnerNumber = value; + } + + /** + * Ruft den Wert der withoutFrame-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isWithoutFrame() { + return withoutFrame; + } + + /** + * Legt den Wert der withoutFrame-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setWithoutFrame(Boolean value) { + this.withoutFrame = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPolicyRequest.java new file mode 100644 index 00000000..a030c645 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/DeepLinkPolicyRequest.java @@ -0,0 +1,146 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für DeepLinkPolicyRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DeepLinkPolicyRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
+ *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeepLinkPolicyRequest", propOrder = { + "vuNr", + "authFilter", + "policyNumber", + "withoutFrame" +}) +public class DeepLinkPolicyRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + @XmlElement(required = true) + protected String policyNumber; + protected Boolean withoutFrame; + + /** + * 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 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 policyNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPolicyNumber() { + return policyNumber; + } + + /** + * Legt den Wert der policyNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPolicyNumber(String value) { + this.policyNumber = value; + } + + /** + * Ruft den Wert der withoutFrame-Eigenschaft ab. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isWithoutFrame() { + return withoutFrame; + } + + /** + * Legt den Wert der withoutFrame-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setWithoutFrame(Boolean value) { + this.withoutFrame = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/Geschaeftsvorfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/Geschaeftsvorfall.java new file mode 100644 index 00000000..c8564826 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/Geschaeftsvorfall.java @@ -0,0 +1,50 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import jakarta.xml.bind.annotation.XmlEnum; +import jakarta.xml.bind.annotation.XmlEnumValue; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für Geschaeftsvorfall. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + *

+ * <simpleType name="Geschaeftsvorfall">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="Neuantrag"/>
+ *     <enumeration value="Aenderungsantrag"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlType(name = "Geschaeftsvorfall") +@XmlEnum +public enum Geschaeftsvorfall { + + @XmlEnumValue("Neuantrag") + NEUANTRAG("Neuantrag"), + @XmlEnumValue("Aenderungsantrag") + AENDERUNGSANTRAG("Aenderungsantrag"); + private final String value; + + Geschaeftsvorfall(String v) { + value = v; + } + + public String value() { + return value; + } + + public static Geschaeftsvorfall fromValue(String v) { + for (Geschaeftsvorfall c: Geschaeftsvorfall.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/HttpActionLinkType.java new file mode 100644 index 00000000..f4eaab2a --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/HttpActionLinkType.java @@ -0,0 +1,142 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import javax.xml.datatype.XMLGregorianCalendar; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Definiert einen Deep-Link + * + *

Java-Klasse für HttpActionLinkType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="HttpActionLinkType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="url">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <maxLength value="1024"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="type">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
+ *               <enumeration value="1"/>
+ *               <enumeration value="2"/>
+ *               <enumeration value="3"/>
+ *               <enumeration value="4"/>
+ *               <enumeration value="5"/>
+ *               <enumeration value="6"/>
+ *               <enumeration value="7"/>
+ *               <enumeration value="8"/>
+ *               <enumeration value="9"/>
+ *               <enumeration value="10"/>
+ *               <enumeration value="11"/>
+ *               <enumeration value="12"/>
+ *               <enumeration value="13"/>
+ *               <enumeration value="14"/>
+ *               <enumeration value="15"/>
+ *               <enumeration value="16"/>
+ *               <enumeration value="17"/>
+ *               <enumeration value="18"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "HttpActionLinkType", propOrder = { + "url", + "type", + "validUntil" +}) +public class HttpActionLinkType { + + @XmlElement(required = true) + protected String url; + protected int type; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar validUntil; + + /** + * Ruft den Wert der url-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrl() { + return url; + } + + /** + * Legt den Wert der url-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrl(String value) { + this.url = value; + } + + /** + * Ruft den Wert der type-Eigenschaft ab. + * + */ + public int getType() { + return type; + } + + /** + * Legt den Wert der type-Eigenschaft fest. + * + */ + public void setType(int value) { + this.type = value; + } + + /** + * Ruft den Wert der validUntil-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getValidUntil() { + return validUntil; + } + + /** + * Legt den Wert der validUntil-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setValidUntil(XMLGregorianCalendar value) { + this.validUntil = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/LoginRequestType.java new file mode 100644 index 00000000..7eb75652 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/LoginRequestType.java @@ -0,0 +1,93 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import at.vvo.omds.types.omds3Types.r1_11_0.common.AuthorizationFilter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg + * + *

Java-Klasse für LoginRequestType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="LoginRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LoginRequestType", propOrder = { + "vuNr", + "authFilter" +}) +public class LoginRequestType { + + @XmlElement(name = "VUNr") + protected String vuNr; + @XmlElement(name = "AuthFilter") + protected AuthorizationFilter authFilter; + + /** + * 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 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageInfoType.java new file mode 100644 index 00000000..7ab16361 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageInfoType.java @@ -0,0 +1,238 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds2Types.v2_16.PaketInhCdType; +import at.vvo.omds.types.omds2Types.v2_16.PaketUmfCdType; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementIdType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package + * + *

Java-Klasse für OMDSPackageInfoType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OMDSPackageInfoType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr"/>
+ *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
+ *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
+ *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
+ *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
+ *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OMDSPackageInfoType", propOrder = { + "vuNr", + "maklerID", + "omdsPackageIdDetails", + "timeStamp", + "packageSize", + "packageExtent", + "packageContentCode" +}) +public class OMDSPackageInfoType { + + @XmlElement(name = "VUNr", required = true) + protected String vuNr; + @XmlElement(name = "MaklerID", required = true) + protected String maklerID; + @XmlElement(required = true) + protected ElementIdType omdsPackageIdDetails; + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar timeStamp; + protected int packageSize; + @XmlElement(required = true) + @XmlSchemaType(name = "string") + protected PaketUmfCdType packageExtent; + @XmlElement(required = true) + @XmlSchemaType(name = "string") + protected List packageContentCode; + + /** + * 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 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; + } + + /** + * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. + * + * @return + * possible object is + * {@link ElementIdType } + * + */ + public ElementIdType getOmdsPackageIdDetails() { + return omdsPackageIdDetails; + } + + /** + * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link ElementIdType } + * + */ + public void setOmdsPackageIdDetails(ElementIdType value) { + this.omdsPackageIdDetails = value; + } + + /** + * Ruft den Wert der timeStamp-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTimeStamp() { + return timeStamp; + } + + /** + * Legt den Wert der timeStamp-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTimeStamp(XMLGregorianCalendar value) { + this.timeStamp = value; + } + + /** + * Ruft den Wert der packageSize-Eigenschaft ab. + * + */ + public int getPackageSize() { + return packageSize; + } + + /** + * Legt den Wert der packageSize-Eigenschaft fest. + * + */ + public void setPackageSize(int value) { + this.packageSize = value; + } + + /** + * Ruft den Wert der packageExtent-Eigenschaft ab. + * + * @return + * possible object is + * {@link PaketUmfCdType } + * + */ + public PaketUmfCdType getPackageExtent() { + return packageExtent; + } + + /** + * Legt den Wert der packageExtent-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PaketUmfCdType } + * + */ + public void setPackageExtent(PaketUmfCdType value) { + this.packageExtent = value; + } + + /** + * Gets the value of the packageContentCode property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the packageContentCode property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPackageContentCode().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PaketInhCdType } + * + * + */ + public List getPackageContentCode() { + if (packageContentCode == null) { + packageContentCode = new ArrayList(); + } + return this.packageContentCode; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListRequest.java new file mode 100644 index 00000000..49e443c7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListRequest.java @@ -0,0 +1,148 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import javax.xml.datatype.XMLGregorianCalendar; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AgentFilterType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für OMDSPackageListRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OMDSPackageListRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
+ *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OMDSPackageListRequest", propOrder = { + "vuNr", + "agentFilter", + "dateFrom", + "dateUntil" +}) +public class OMDSPackageListRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + protected AgentFilterType agentFilter; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * 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 agentFilter-Eigenschaft ab. + * + * @return + * possible object is + * {@link AgentFilterType } + * + */ + public AgentFilterType getAgentFilter() { + return agentFilter; + } + + /** + * Legt den Wert der agentFilter-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AgentFilterType } + * + */ + public void setAgentFilter(AgentFilterType value) { + this.agentFilter = value; + } + + /** + * Ruft den Wert der dateFrom-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Legt den Wert der dateFrom-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Ruft den Wert der dateUntil-Eigenschaft ab. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Legt den Wert der dateUntil-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListResponse.java new file mode 100644 index 00000000..c2ad0335 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageListResponse.java @@ -0,0 +1,104 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Dieser Typ definiert eine Liste von OMDS-Datensaetzen + * + *

Java-Klasse für OMDSPackageListResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OMDSPackageListResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence minOccurs="0">
+ *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OMDSPackageListResponse", propOrder = { + "omdsPackageInfo", + "serviceFault" +}) +public class OMDSPackageListResponse { + + protected List omdsPackageInfo; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Gets the value of the omdsPackageInfo property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the omdsPackageInfo property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getOmdsPackageInfo().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link OMDSPackageInfoType } + * + * + */ + public List getOmdsPackageInfo() { + if (omdsPackageInfo == null) { + omdsPackageInfo = new ArrayList(); + } + return this.omdsPackageInfo; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageRequest.java new file mode 100644 index 00000000..f8571f5b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageRequest.java @@ -0,0 +1,125 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.AgentFilterType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für OMDSPackageRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OMDSPackageRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
+ *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OMDSPackageRequest", propOrder = { + "vuNr", + "agentFilter", + "omdsPackageId" +}) +public class OMDSPackageRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + protected AgentFilterType agentFilter; + @XmlElement(required = true) + protected List omdsPackageId; + + /** + * 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 agentFilter-Eigenschaft ab. + * + * @return + * possible object is + * {@link AgentFilterType } + * + */ + public AgentFilterType getAgentFilter() { + return agentFilter; + } + + /** + * Legt den Wert der agentFilter-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link AgentFilterType } + * + */ + public void setAgentFilter(AgentFilterType value) { + this.agentFilter = value; + } + + /** + * Gets the value of the omdsPackageId property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the omdsPackageId property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getOmdsPackageId().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getOmdsPackageId() { + if (omdsPackageId == null) { + omdsPackageId = new ArrayList(); + } + return this.omdsPackageId; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageResponse.java new file mode 100644 index 00000000..0854bc94 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/OMDSPackageResponse.java @@ -0,0 +1,102 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für OMDSPackageResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="OMDSPackageResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OMDSPackageResponse", propOrder = { + "requestedOmdsPackage", + "serviceFault" +}) +public class OMDSPackageResponse { + + protected List requestedOmdsPackage; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Gets the value of the requestedOmdsPackage property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the requestedOmdsPackage property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getRequestedOmdsPackage().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RequestedOMDSPackage } + * + * + */ + public List getRequestedOmdsPackage() { + if (requestedOmdsPackage == null) { + requestedOmdsPackage = new ArrayList(); + } + return this.requestedOmdsPackage; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ObjectFactory.java new file mode 100644 index 00000000..4f0a4c20 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/ObjectFactory.java @@ -0,0 +1,549 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.vvo.omds.types.omds3Types.r1_11_0.servicetypes package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); + private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); + private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); + private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); + private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); + private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); + private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); + private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); + private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); + private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); + private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); + private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); + private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); + private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); + private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); + private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); + private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); + private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); + private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); + private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); + private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); + private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); + private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_11_0.servicetypes + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link RequestedOMDSPackage } + * + */ + public RequestedOMDSPackage createRequestedOMDSPackage() { + return new RequestedOMDSPackage(); + } + + /** + * Create an instance of {@link UserDataResponse } + * + */ + public UserDataResponse createUserDataResponse() { + return new UserDataResponse(); + } + + /** + * Create an instance of {@link LoginRequestType } + * + */ + public LoginRequestType createLoginRequestType() { + return new LoginRequestType(); + } + + /** + * Create an instance of {@link DeepLinkBusinessObjectResponse } + * + */ + public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { + return new DeepLinkBusinessObjectResponse(); + } + + /** + * Create an instance of {@link UserDataRequest } + * + */ + public UserDataRequest createUserDataRequest() { + return new UserDataRequest(); + } + + /** + * Create an instance of {@link OMDSPackageListRequest } + * + */ + public OMDSPackageListRequest createOMDSPackageListRequest() { + return new OMDSPackageListRequest(); + } + + /** + * Create an instance of {@link OMDSPackageListResponse } + * + */ + public OMDSPackageListResponse createOMDSPackageListResponse() { + return new OMDSPackageListResponse(); + } + + /** + * Create an instance of {@link OMDSPackageRequest } + * + */ + public OMDSPackageRequest createOMDSPackageRequest() { + return new OMDSPackageRequest(); + } + + /** + * Create an instance of {@link OMDSPackageResponse } + * + */ + public OMDSPackageResponse createOMDSPackageResponse() { + return new OMDSPackageResponse(); + } + + /** + * Create an instance of {@link ArcImageInfosRequest } + * + */ + public ArcImageInfosRequest createArcImageInfosRequest() { + return new ArcImageInfosRequest(); + } + + /** + * Create an instance of {@link ArcImageInfosResponse } + * + */ + public ArcImageInfosResponse createArcImageInfosResponse() { + return new ArcImageInfosResponse(); + } + + /** + * Create an instance of {@link ArcImageRequest } + * + */ + public ArcImageRequest createArcImageRequest() { + return new ArcImageRequest(); + } + + /** + * Create an instance of {@link ArcImageResponse } + * + */ + public ArcImageResponse createArcImageResponse() { + return new ArcImageResponse(); + } + + /** + * Create an instance of {@link DeepLinkClaimRequest } + * + */ + public DeepLinkClaimRequest createDeepLinkClaimRequest() { + return new DeepLinkClaimRequest(); + } + + /** + * Create an instance of {@link DeepLinkPartnerRequest } + * + */ + public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { + return new DeepLinkPartnerRequest(); + } + + /** + * Create an instance of {@link DeepLinkOfferRequest } + * + */ + public DeepLinkOfferRequest createDeepLinkOfferRequest() { + return new DeepLinkOfferRequest(); + } + + /** + * Create an instance of {@link DeepLinkPolicyRequest } + * + */ + public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { + return new DeepLinkPolicyRequest(); + } + + /** + * Create an instance of {@link HttpActionLinkType } + * + */ + public HttpActionLinkType createHttpActionLinkType() { + return new HttpActionLinkType(); + } + + /** + * Create an instance of {@link OMDSPackageInfoType } + * + */ + public OMDSPackageInfoType createOMDSPackageInfoType() { + return new OMDSPackageInfoType(); + } + + /** + * Create an instance of {@link PolicyPartnerRole } + * + */ + public PolicyPartnerRole createPolicyPartnerRole() { + return new PolicyPartnerRole(); + } + + /** + * Create an instance of {@link ArcImageInfo } + * + */ + public ArcImageInfo createArcImageInfo() { + return new ArcImageInfo(); + } + + /** + * Create an instance of {@link ArcContent } + * + */ + public ArcContent createArcContent() { + return new ArcContent(); + } + + /** + * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } + * + */ + public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { + return new RequestedOMDSPackage.OmdsPackage(); + } + + /** + * Create an instance of {@link UserDataResponse.AvailableServices } + * + */ + public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { + return new UserDataResponse.AvailableServices(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") + public JAXBElement createLoginRequest(LoginRequestType value) { + return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") + public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") + public JAXBElement createGetUserDataRequest(UserDataRequest value) { + return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") + public JAXBElement createGetUserDataResponse(UserDataResponse value) { + return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") + public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { + return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") + public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { + return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") + public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { + return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") + public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { + return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") + public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { + return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") + public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { + return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") + public JAXBElement createGetArcImageRequest(ArcImageRequest value) { + return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") + public JAXBElement createGetArcImageResponse(ArcImageResponse value) { + return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") + public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { + return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") + public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") + public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { + return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") + public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") + public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { + return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") + public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") + public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { + return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") + public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") + public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { + return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") + public JAXBElement createWithoutFrame(Boolean value) { + return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} + */ + @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") + public JAXBElement createHttpActionLink(HttpActionLinkType value) { + return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/PolicyPartnerRole.java new file mode 100644 index 00000000..d53bfe9d --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/PolicyPartnerRole.java @@ -0,0 +1,101 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.PartnerRoleType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person + * + *

Java-Klasse für PolicyPartnerRole complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="PolicyPartnerRole">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
+ *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PolicyPartnerRole", propOrder = { + "partnerNumber", + "partnerRole" +}) +public class PolicyPartnerRole { + + @XmlElement(required = true) + protected String partnerNumber; + @XmlSchemaType(name = "string") + protected List partnerRole; + + /** + * Ruft den Wert der partnerNumber-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPartnerNumber() { + return partnerNumber; + } + + /** + * Legt den Wert der partnerNumber-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPartnerNumber(String value) { + this.partnerNumber = value; + } + + /** + * Gets the value of the partnerRole property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the partnerRole property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPartnerRole().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PartnerRoleType } + * + * + */ + public List getPartnerRole() { + if (partnerRole == null) { + partnerRole = new ArrayList(); + } + return this.partnerRole; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/RequestedOMDSPackage.java new file mode 100644 index 00000000..8dd2c959 --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/RequestedOMDSPackage.java @@ -0,0 +1,231 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds3Types.r1_11_0.common.ServiceFault; +import jakarta.activation.DataHandler; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlMimeType; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Typ fuer ein OMDS-Datensatz-Package + * + *

Java-Klasse für RequestedOMDSPackage complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="RequestedOMDSPackage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="requestedOmdsPackageId">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *               <maxLength value="1024"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="omdsPackage" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
+ *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RequestedOMDSPackage", propOrder = { + "requestedOmdsPackageId", + "omdsPackage", + "serviceFault" +}) +public class RequestedOMDSPackage { + + @XmlElement(required = true) + protected String requestedOmdsPackageId; + protected RequestedOMDSPackage.OmdsPackage omdsPackage; + @XmlElement(name = "ServiceFault") + protected List serviceFault; + + /** + * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRequestedOmdsPackageId() { + return requestedOmdsPackageId; + } + + /** + * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRequestedOmdsPackageId(String value) { + this.requestedOmdsPackageId = value; + } + + /** + * Ruft den Wert der omdsPackage-Eigenschaft ab. + * + * @return + * possible object is + * {@link RequestedOMDSPackage.OmdsPackage } + * + */ + public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { + return omdsPackage; + } + + /** + * Legt den Wert der omdsPackage-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link RequestedOMDSPackage.OmdsPackage } + * + */ + public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { + this.omdsPackage = value; + } + + /** + * Gets the value of the serviceFault property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the serviceFault property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getServiceFault().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ServiceFault } + * + * + */ + public List getServiceFault() { + if (serviceFault == null) { + serviceFault = new ArrayList(); + } + return this.serviceFault; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
+     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "omdsPackageInfo", + "content" + }) + public static class OmdsPackage { + + @XmlElement(required = true) + protected OMDSPackageInfoType omdsPackageInfo; + @XmlElement(required = true) + @XmlMimeType("application/zip") + protected DataHandler content; + + /** + * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. + * + * @return + * possible object is + * {@link OMDSPackageInfoType } + * + */ + public OMDSPackageInfoType getOmdsPackageInfo() { + return omdsPackageInfo; + } + + /** + * Legt den Wert der omdsPackageInfo-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link OMDSPackageInfoType } + * + */ + public void setOmdsPackageInfo(OMDSPackageInfoType value) { + this.omdsPackageInfo = value; + } + + /** + * 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; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataRequest.java new file mode 100644 index 00000000..bd8f213b --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataRequest.java @@ -0,0 +1,62 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für UserDataRequest complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="UserDataRequest">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserDataRequest", propOrder = { + "vuNr" +}) +public class UserDataRequest { + + @XmlElement(name = "VUNr") + protected String vuNr; + + /** + * 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; + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataResponse.java new file mode 100644 index 00000000..4fc8116e --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/UserDataResponse.java @@ -0,0 +1,200 @@ + +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; + +import java.util.ArrayList; +import java.util.List; +import at.vvo.omds.types.omds2Types.v2_16.PERSONType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; + + +/** + * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können + * + * + *

Java-Klasse für UserDataResponse complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="UserDataResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="userid">
+ *           <simpleType>
+ *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *               <minLength value="1"/>
+ *             </restriction>
+ *           </simpleType>
+ *         </element>
+ *         <element name="availableServices">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="person" type="{urn:omds20}PERSON_Type"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserDataResponse", propOrder = { + "userid", + "availableServices", + "person" +}) +public class UserDataResponse { + + @XmlElement(required = true) + protected String userid; + @XmlElement(required = true) + protected UserDataResponse.AvailableServices availableServices; + @XmlElement(required = true) + protected PERSONType person; + + /** + * Ruft den Wert der userid-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUserid() { + return userid; + } + + /** + * Legt den Wert der userid-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUserid(String value) { + this.userid = value; + } + + /** + * Ruft den Wert der availableServices-Eigenschaft ab. + * + * @return + * possible object is + * {@link UserDataResponse.AvailableServices } + * + */ + public UserDataResponse.AvailableServices getAvailableServices() { + return availableServices; + } + + /** + * Legt den Wert der availableServices-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link UserDataResponse.AvailableServices } + * + */ + public void setAvailableServices(UserDataResponse.AvailableServices value) { + this.availableServices = 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; + } + + + /** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "service" + }) + public static class AvailableServices { + + @XmlElement(required = true) + protected List service; + + /** + * Gets the value of the service property. + * + *

+ * 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 Jakarta XML Binding object. + * This is why there is not a set method for the service property. + * + *

+ * For example, to add a new item, do as follows: + *

+         *    getService().add(newItem);
+         * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getService() { + if (service == null) { + service = new ArrayList(); + } + return this.service; + } + + } + +} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/package-info.java new file mode 100644 index 00000000..d29a4d5c --- /dev/null +++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_11_0/servicetypes/package-info.java @@ -0,0 +1,2 @@ +@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) +package at.vvo.omds.types.omds3Types.r1_11_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AbstraktesEreignisStatusAenderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AbstraktesEreignisStatusAenderungType.java deleted file mode 100644 index a4a64134..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AbstraktesEreignisStatusAenderungType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; -import at.vvo.omds.types.omds3Types.r1_1_0.servicetypes.SchadenStatusType; - - -/** - * Abstraktes Ereignis einer Statusänderung - * - *

Java-Klasse für AbstraktesEreignisStatusAenderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstraktesEreignisStatusAenderung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstraktesEreignisStatusAenderung_Type") -@XmlSeeAlso({ - SchadenStatusType.class -}) -public abstract class AbstraktesEreignisStatusAenderungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseArtCdType.java deleted file mode 100644 index 1804542d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseType.java deleted file mode 100644 index 0bdff6b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AdresseType.java +++ /dev/null @@ -1,250 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AgentFilterType.java deleted file mode 100644 index 2bff4dc1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AntragsartType.java deleted file mode 100644 index 79ef1738..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AntragsartType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AuthorizationFilter.java deleted file mode 100644 index caea297a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BankverbindungType.java deleted file mode 100644 index 5d8ef09e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BankverbindungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * beschreibt eine Bankverbindug - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bankverbindung_Type", propOrder = { - "kontoinhaber", - "bank", - "bic", - "iban" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BerechnungsvarianteType.java deleted file mode 100644 index f7c1a6a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BezugsrechtType.java deleted file mode 100644 index f7e78c7e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BezugsrechtType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_9.PERSONType; - - -/** - * Type Bezugsrecht - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusSystemType.java deleted file mode 100644 index 98be049a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 7b1504a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessRequestType.java deleted file mode 100644 index 7a1f0bc1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on2antrag.common.CalculateRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateApplicationRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateOfferRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateRequestType.class, - CreateOfferRequestType.class, - CreateApplicationRequestType.class, - SubmitApplicationRequestType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessResponseType.java deleted file mode 100644 index 0ac63175..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on2antrag.common.CalculateResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateApplicationResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateOfferResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateResponseType.class, - CreateOfferResponseType.class, - CreateApplicationResponseType.class, - SubmitApplicationResponseType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonRequestType.java deleted file mode 100644 index 00bc6cc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonRequestType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on2antrag.common.GetApplicationDocumentRequestType; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "korrelationsId" -}) -@XmlSeeAlso({ - GetApplicationDocumentRequestType.class, - CommonProcessRequestType.class, - CommonSearchRequestType.class -}) -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ClientId") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - protected List technischeParameter; - @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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonResponseType.java deleted file mode 100644 index accec98a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonResponseType.java +++ /dev/null @@ -1,203 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.GetApplicationDocumentResponseType; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CommonResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Status">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *                   <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status" -}) -@XmlSeeAlso({ - GetApplicationDocumentResponseType.class, - CommonProcessResponseType.class, - CommonSearchResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected CommonResponseType.Status status; - - /** - * Ruft den Wert der status-Eigenschaft ab. - * - * @return - * possible object is - * {@link CommonResponseType.Status } - * - */ - public CommonResponseType.Status getStatus() { - return status; - } - - /** - * Legt den Wert der status-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CommonResponseType.Status } - * - */ - public void setStatus(CommonResponseType.Status value) { - this.status = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
-     *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen" - }) - public static class Status { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getMeldungen().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchRequestType.java deleted file mode 100644 index 331c7bd7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,205 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesRequestType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchResponseType.java deleted file mode 100644 index c9131161..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on1basis.GetStateChangesResponseType; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DateianhangType.java deleted file mode 100644 index 9b3c6722..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DateianhangType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann - * - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Dateianhang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DateiMimeType" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Dateianhang_Type", propOrder = { - "dateiMimeType", - "dateiType", - "dateiName", - "dateiData", - "dateiBeschreibung" -}) -public class DateianhangType { - - @XmlElement(name = "DateiMimeType", required = true) - protected String dateiMimeType; - @XmlElement(name = "DateiType") - protected Integer dateiType; - @XmlElement(name = "DateiName", required = true) - protected String dateiName; - @XmlElement(name = "DateiData", required = true) - protected byte[] dateiData; - @XmlElement(name = "DateiBeschreibung") - protected String dateiBeschreibung; - - /** - * Ruft den Wert der dateiMimeType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateiMimeType() { - return dateiMimeType; - } - - /** - * Legt den Wert der dateiMimeType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateiMimeType(String value) { - this.dateiMimeType = 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 - * byte[] - */ - public byte[] getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setDateiData(byte[] 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DatenverwendungType.java deleted file mode 100644 index f1b134ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungProzentType.java deleted file mode 100644 index 87e93a70..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungProzentType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Deckung Prozent - * - *

Java-Klasse für DeckungProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungProzent" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungProzent_Type", propOrder = { - "deckungActive", - "deckungProzent" -}) -public class DeckungProzentType { - - protected boolean deckungActive; - protected int deckungProzent; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungProzent-Eigenschaft ab. - * - */ - public int getDeckungProzent() { - return deckungProzent; - } - - /** - * Legt den Wert der deckungProzent-Eigenschaft fest. - * - */ - public void setDeckungProzent(int value) { - this.deckungProzent = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsType.java deleted file mode 100644 index 0a230f44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Deckung - * - *

Java-Klasse für DeckungVs_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVs_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVs_Type", propOrder = { - "versicherungssumme" -}) -public class DeckungVsType { - - @XmlElement(name = "Versicherungssumme") - protected int versicherungssumme; - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - */ - public int getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - */ - public void setVersicherungssumme(int value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsVIType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsVIType.java deleted file mode 100644 index f64bcdff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DeckungVsVIType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Deckung - * - *

Java-Klasse für DeckungVsVI_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVsVI_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungVs" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="VersichertesInteresse" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVsVI_Type", propOrder = { - "deckungActive", - "deckungVs", - "versichertesInteresse" -}) -public class DeckungVsVIType { - - protected boolean deckungActive; - protected int deckungVs; - @XmlElement(name = "VersichertesInteresse", required = true) - protected Object versichertesInteresse; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungVs-Eigenschaft ab. - * - */ - public int getDeckungVs() { - return deckungVs; - } - - /** - * Legt den Wert der deckungVs-Eigenschaft fest. - * - */ - public void setDeckungVs(int value) { - this.deckungVs = value; - } - - /** - * Ruft den Wert der versichertesInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getVersichertesInteresse() { - return versichertesInteresse; - } - - /** - * Legt den Wert der versichertesInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setVersichertesInteresse(Object value) { - this.versichertesInteresse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DirectionCdType.java deleted file mode 100644 index fe5fe064..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DirectionCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DokumentInfoType.java deleted file mode 100644 index 8917bd88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/DokumentInfoType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Informationen zu einem Dokument (kann auch das Dokument selbst enthalten) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente" -}) -public class DokumentInfoType { - - @XmlElement(name = "Content") - protected byte[] 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 referenzWeitereDokumente; - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementIdType.java deleted file mode 100644 index 8f12b74f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementarproduktType.java deleted file mode 100644 index 07e0767b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ElementarproduktType.java +++ /dev/null @@ -1,80 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Elementarprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.class -}) -public abstract class ElementarproduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "ZusaetzlicheElementarproduktdaten") - protected List zusaetzlicheElementarproduktdaten; - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ErsatzpolizzenType.java deleted file mode 100644 index 545c347f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/FahrzeugType.java deleted file mode 100644 index fc6539f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/FahrzeugType.java +++ /dev/null @@ -1,804 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type") -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index 2a271f08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Antrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KontierungType.java deleted file mode 100644 index eae78a91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KontierungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KreditkarteType.java deleted file mode 100644 index e0c75126..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjectFactory.java deleted file mode 100644 index 194d0e5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjectFactory.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_1_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _GeschaeftsfallId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "GeschaeftsfallId"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - private final static QName _ObjLfnr_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjLfnr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_1_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenType } - * - */ - public VorversicherungenType createVorversicherungenType() { - return new VorversicherungenType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link DeckungVsType } - * - */ - public DeckungVsType createDeckungVsType() { - return new DeckungVsType(); - } - - /** - * Create an instance of {@link DeckungVsVIType } - * - */ - public DeckungVsVIType createDeckungVsVIType() { - return new DeckungVsVIType(); - } - - /** - * Create an instance of {@link DeckungProzentType } - * - */ - public DeckungProzentType createDeckungProzentType() { - return new DeckungProzentType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link at.vvo.omds.types.omds3Types.r1_1_0.common.CommonResponseType.Status } - * - */ - public at.vvo.omds.types.omds3Types.r1_1_0.common.CommonResponseType.Status createCommonResponseTypeStatus() { - return new at.vvo.omds.types.omds3Types.r1_1_0.common.CommonResponseType.Status(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "GeschaeftsfallId") - public JAXBElement createGeschaeftsfallId(String value) { - return new JAXBElement(_GeschaeftsfallId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjLfnr") - public JAXBElement createObjLfnr(String value) { - return new JAXBElement(_ObjLfnr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjektIdType.java deleted file mode 100644 index d55cd0a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffeneSchaedenType.java deleted file mode 100644 index 6bf13f94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffenerSchadenType.java deleted file mode 100644 index 01077d3d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PartnerRoleType.java deleted file mode 100644 index a426f791..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PersonType.java deleted file mode 100644 index 014133b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PersonType.java +++ /dev/null @@ -1,246 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class PersonType { - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (Personennr) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PolizzenversandType.java deleted file mode 100644 index 014b1db9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PolizzenversandType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PraemieType.java deleted file mode 100644 index ec58ed93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/PraemieType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd" -}) -public class PraemieType { - - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktType.java deleted file mode 100644 index 88c3bcc4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_3_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class -}) -public abstract class ProduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "Produktgeneration", required = true) - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * Ruft den Wert der produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAntragsprozessType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAntragsprozessType.java deleted file mode 100644 index f813c19a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAntragsprozessType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für ProduktbausteinAntragsprozess_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinAntragsprozess_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="VtgEnde" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinAntragsprozess_Type", propOrder = { - "vtgBeg", - "vtgEnde", - "praemie" -}) -@XmlSeeAlso({ - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinAntragsprozessType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected PraemieType praemie; - - /** - * 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 vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Ruft den Wert der praemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemieType } - * - */ - public PraemieType getPraemie() { - return praemie; - } - - /** - * Legt den Wert der praemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemieType } - * - */ - public void setPraemie(PraemieType value) { - this.praemie = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAuskunftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAuskunftType.java deleted file mode 100644 index 5cae2013..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinAuskunftType.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Abstrakter Typ für alle Produktbausteine in Produktauskunftsservices - * - *

Java-Klasse für ProduktbausteinAuskunft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinAuskunft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="Verkaufsbeginn" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Verkaufsende" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinAuskunft_Type", propOrder = { - "verkaufsbeginn", - "verkaufsende" -}) -public abstract class ProduktbausteinAuskunftType - extends ProduktbausteinType -{ - - @XmlElement(name = "Verkaufsbeginn", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar verkaufsbeginn; - @XmlElement(name = "Verkaufsende") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar verkaufsende; - - /** - * Ruft den Wert der verkaufsbeginn-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVerkaufsbeginn() { - return verkaufsbeginn; - } - - /** - * Legt den Wert der verkaufsbeginn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVerkaufsbeginn(XMLGregorianCalendar value) { - this.verkaufsbeginn = value; - } - - /** - * Ruft den Wert der verkaufsende-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVerkaufsende() { - return verkaufsende; - } - - /** - * Legt den Wert der verkaufsende-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVerkaufsende(XMLGregorianCalendar value) { - this.verkaufsende = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinType.java deleted file mode 100644 index 8757919b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "id", - "bezeichnung", - "bedingungen", - "meldungen" -}) -@XmlSeeAlso({ - ProduktbausteinAuskunftType.class, - ProduktbausteinAntragsprozessType.class -}) -public abstract class ProduktbausteinType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - protected List bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ServiceFault.java deleted file mode 100644 index 141a72b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/StatusType.java deleted file mode 100644 index 862751c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="4"/>
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/TechnicalKeyValueType.java deleted file mode 100644 index db890c1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VarianteType.java deleted file mode 100644 index f868b418..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Variante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Variante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Premiumschutz"/>
- *     <enumeration value="Classicschutz"/>
- *     <enumeration value="Basisschutz"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Variante_Type") -@XmlEnum -public enum VarianteType { - - @XmlEnumValue("Premiumschutz") - PREMIUMSCHUTZ("Premiumschutz"), - @XmlEnumValue("Classicschutz") - CLASSICSCHUTZ("Classicschutz"), - @XmlEnumValue("Basisschutz") - BASISSCHUTZ("Basisschutz"); - private final String value; - - VarianteType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static VarianteType fromValue(String v) { - for (VarianteType c: VarianteType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VerkaufsproduktType.java deleted file mode 100644 index 6e76a666..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 at.vvo.omds.types.omds2Types.v2_9.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "verkaufsproduktgeneration", - "berechnungsvariante", - "elRahmenvereinbarung", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersichertesInteresseType.java deleted file mode 100644 index 7d042832..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Obertyp für versicherte Interessen, wird z.B. in Rechtsschutz verwendet - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjLfnr"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "objLfnr" -}) -@XmlSeeAlso({ - FahrzeugType.class -}) -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ObjLfnr", required = true) - protected String objLfnr; - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjLfnr(String value) { - this.objLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersicherungssteuerType.java deleted file mode 100644 index 8fe40e49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VertragspersonType.java deleted file mode 100644 index e9d818ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 at.vvo.omds.types.omds2Types.v2_9.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkularglaeubigerType.java deleted file mode 100644 index e59b29ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkulierungType.java deleted file mode 100644 index a296f3ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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_9.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenDetailType.java deleted file mode 100644 index 28575558..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Vorversicherungen Detail - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "versicherungsgesellschaft" -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenType.java deleted file mode 100644 index 6695e225..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/VorversicherungenType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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 Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VorversicherungKfz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenType { - - @XmlElement(name = "VorversicherungKfz") - protected VorversicherungenDetailType vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Ruft den Wert der vorversicherungKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungKfz() { - return vorversicherungKfz; - } - - /** - * Legt den Wert der vorversicherungKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungKfz(VorversicherungenDetailType value) { - this.vorversicherungKfz = value; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlungsdatenType.java deleted file mode 100644 index 7c3ce45c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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; - - -/** - * Beschreibt die Zahlungsdaten - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlwegType.java deleted file mode 100644 index 829e85d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_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.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index 16afb6d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 09d47d21..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 303834fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/package-info.java deleted file mode 100644 index de827310..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_1_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimRequestType.java deleted file mode 100644 index 85a5dc19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimRequestType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 des Requestobjekts, um Dokument zu Schaden hinzuzufügen - * - *

Java-Klasse für AddDocToClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *         <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimRequest_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "schadennr", - "dokument" -}) -public class AddDocToClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimResponseType.java deleted file mode 100644 index ccc8902f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/AddDocToClaimResponseType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Schadensdokument übergeben wurde - * - *

Java-Klasse für AddDocToClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="ArcImageId" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimResponse_Type", propOrder = { - "arcImageIdOrServiceFault" -}) -public class AddDocToClaimResponseType { - - @XmlElements({ - @XmlElement(name = "ArcImageId", type = ArcImageInfo.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List arcImageIdOrServiceFault; - - /** - * Gets the value of the arcImageIdOrServiceFault property. - * - *

- * 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 set method for the arcImageIdOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageIdOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * {@link ServiceFault } - * - * - */ - public List getArcImageIdOrServiceFault() { - if (arcImageIdOrServiceFault == null) { - arcImageIdOrServiceFault = new ArrayList(); - } - return this.arcImageIdOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcContent.java deleted file mode 100644 index 9c6637fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - protected byte[] arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setArcImage(byte[] value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index ad7a01ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 0a78c010..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 26d6cb43..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 2436a250..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 5e5b3f27..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonType.java deleted file mode 100644 index 23bfe8b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonType.java +++ /dev/null @@ -1,182 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "informationenPerson", - "geschInteresseLfnr" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - @XmlElement(name = "GeschInteresseLfnr", type = Long.class) - @XmlSchemaType(name = "unsignedInt") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonVertragType.java deleted file mode 100644 index 1d416775..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = { - "lfnr", - "informationenPerson" -}) -public class BeteiligtePersonVertragType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - - /** - * 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 InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListRequestType.java deleted file mode 100644 index 4f1be425..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListRequestType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Änderungen an Schäden zu erhalten - * - *

Java-Klasse für ChangedClaimsListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <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="Changed"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class ChangedClaimsListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType 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 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 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 zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListResponseType.java deleted file mode 100644 index 8fd9c9ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ChangedClaimsListResponseType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von geänderten Schäden für einen bestimmten Zeitraum - * - *

Java-Klasse für ChangedClaimsListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class ChangedClaimsListResponseType { - - @XmlElement(name = "Result") - protected ChangedClaimsListResponseType.Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link ChangedClaimsListResponseType.Result } - * - */ - public ChangedClaimsListResponseType.Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ChangedClaimsListResponseType.Result } - * - */ - public void setResult(ChangedClaimsListResponseType.Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "geaenderteObjekte" - }) - public static class Result { - - @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; - @XmlElement(name = "GeaenderteObjekte") - protected List geaenderteObjekte; - - /** - * 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; - } - - /** - * Gets the value of the geaenderteObjekte property. - * - *

- * 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 set method for the geaenderteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeaenderteObjekte().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenStatusType } - * - * - */ - public List getGeaenderteObjekte() { - if (geaenderteObjekte == null) { - geaenderteObjekte = new ArrayList(); - } - return this.geaenderteObjekte; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimRequestType.java deleted file mode 100644 index e5d62f67..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimRequestType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für CreateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzGeschaeftsfallId" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}MeldungSchaden_Type" maxOccurs="unbounded"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimRequest_Type", propOrder = { - "vuNr", - "referenzGeschaeftsfallId", - "ordnungsbegriffZuordFremd", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "schadenmelder" -}) -public class CreateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzGeschaeftsfallId") - protected String referenzGeschaeftsfallId; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzGeschaeftsfallId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzGeschaeftsfallId() { - return referenzGeschaeftsfallId; - } - - /** - * Legt den Wert der referenzGeschaeftsfallId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzGeschaeftsfallId(String value) { - this.referenzGeschaeftsfallId = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungSchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimResponseType.java deleted file mode 100644 index 377dfc47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CreateClaimResponseType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CreateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}Meldungszusammenfassung_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class CreateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CredentialsType.java deleted file mode 100644 index 031f451f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/CredentialsType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können. - * - *

Java-Klasse für Credentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Credentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Credentials_Type") -public abstract class CredentialsType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointRequestType.java deleted file mode 100644 index a30a83b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointRequestType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Typ für den DeclareEndpointRequest - * - *

Java-Klasse für DeclareEndpointRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="BasisUrlEndpoint">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}ArtAuthentifizierung"/>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *         <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointRequest_Type", propOrder = { - "vuNr", - "basisUrlEndpoint", - "artAuthentifizierung", - "credentials", - "authorizationFilter" -}) -public class DeclareEndpointRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "BasisUrlEndpoint", required = true) - protected String basisUrlEndpoint; - @XmlElement(name = "ArtAuthentifizierung", required = true) - protected String artAuthentifizierung; - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - @XmlElement(name = "AuthorizationFilter") - protected AuthorizationFilter authorizationFilter; - - /** - * 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 basisUrlEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBasisUrlEndpoint() { - return basisUrlEndpoint; - } - - /** - * Legt den Wert der basisUrlEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBasisUrlEndpoint(String value) { - this.basisUrlEndpoint = value; - } - - /** - * Ruft den Wert der artAuthentifizierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtAuthentifizierung() { - return artAuthentifizierung; - } - - /** - * Legt den Wert der artAuthentifizierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtAuthentifizierung(String value) { - this.artAuthentifizierung = value; - } - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - - /** - * Ruft den Wert der authorizationFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - public AuthorizationFilter getAuthorizationFilter() { - return authorizationFilter; - } - - /** - * Legt den Wert der authorizationFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - public void setAuthorizationFilter(AuthorizationFilter value) { - this.authorizationFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointResponseType.java deleted file mode 100644 index 32ad0833..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareEndpointResponseType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Response um als Makler der VU einen Endpoint bekannt zu geben - * - *

Java-Klasse für DeclareEndpointResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointResponse_Type", propOrder = { - "registrierteBasisUrlMaklerEndpoint", - "serviceFault" -}) -public class DeclareEndpointResponseType { - - @XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint") - protected String registrierteBasisUrlMaklerEndpoint; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrierteBasisUrlMaklerEndpoint() { - return registrierteBasisUrlMaklerEndpoint; - } - - /** - * Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrierteBasisUrlMaklerEndpoint(String value) { - this.registrierteBasisUrlMaklerEndpoint = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusRequestType.java deleted file mode 100644 index 67b677a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusRequestType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 des Request, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wird - * - *

Java-Klasse für DeclareNewClaimStatusRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="alt" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *         <element name="neu" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusRequest_Type", propOrder = { - "alt", - "neu" -}) -public class DeclareNewClaimStatusRequestType { - - @XmlElement(required = true) - protected SchadenStatusType alt; - @XmlElement(required = true) - protected SchadenStatusType neu; - - /** - * Ruft den Wert der alt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getAlt() { - return alt; - } - - /** - * Legt den Wert der alt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setAlt(SchadenStatusType value) { - this.alt = value; - } - - /** - * Ruft den Wert der neu-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getNeu() { - return neu; - } - - /** - * Legt den Wert der neu-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setNeu(SchadenStatusType value) { - this.neu = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusResponseType.java deleted file mode 100644 index cb9eb15d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeclareNewClaimStatusResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wurde - * - *

Java-Klasse für DeclareNewClaimStatusResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusResponse_Type") -public class DeclareNewClaimStatusResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index ad02a28b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 1581d0fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 054d981e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 038f0205..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 12a04d29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DokumentenReferenzType.java deleted file mode 100644 index e38468f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/DokumentenReferenzType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="ReferenzWeitereDokumente" type="{urn:omds3ServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesInteresseType.java deleted file mode 100644 index ca2f856e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "geschInteresseLfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int geschInteresseLfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - */ - public int getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - */ - public void setGeschInteresseLfnr(int value) { - this.geschInteresseLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index f932fcb7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 52c454b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseLightType.java deleted file mode 100644 index 5853c226..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseLightType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Leichtgewichtiges Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponseLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponseLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}SchadenereignisLight_Type" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponseLight_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseLightType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisLightType schadenereignis; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisLightType } - * - */ - public void setSchadenereignis(SchadenereignisLightType value) { - this.schadenereignis = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseType.java deleted file mode 100644 index 58307b58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosRequestType.java deleted file mode 100644 index 29a3debb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosRequestType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetDocumentInfosRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentInfosRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosResponseType.java deleted file mode 100644 index 42af1c49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetDocumentInfosResponseType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * ResponseTyp mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentInfosResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentInfosResponseType { - - @XmlElement(name = "Result") - protected GetDocumentInfosResponseType.Result result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link GetDocumentInfosResponseType.Result } - * - */ - public GetDocumentInfosResponseType.Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GetDocumentInfosResponseType.Result } - * - */ - public void setResult(GetDocumentInfosResponseType.Result value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos" - }) - public static class Result { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getDokumentInfos().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index f0978198..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,177 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 0f2d1267..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Typ für den Response einer Anzahl von Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 48f5f531..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InformationenPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InformationenPersonType.java deleted file mode 100644 index 833f537d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InformationenPersonType.java +++ /dev/null @@ -1,402 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Typ zur Übergabe personenbezogener Daten, entspricht weitgehend OMDS Datensatz PERSON_Type, die Personennr ist aber optional. Die Person kann eine Adresse enthalten. Die Adresse hat aber keine Id. - * - *

Java-Klasse für InformationenPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InformationenPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InformationenPerson_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class InformationenPersonType { - - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String personennr; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimRequestType.java deleted file mode 100644 index 5900c95f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimRequestType.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 für die Durchführung einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimRequest_Type", propOrder = { - "vuNr", - "referenzIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "polizzennr", - "vertragsID", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "dokumente", - "schadenmelder" -}) -public class InitiateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzIdGeschaeftsfall") - protected String referenzIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzIdGeschaeftsfall() { - return referenzIdGeschaeftsfall; - } - - /** - * Legt den Wert der referenzIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzIdGeschaeftsfall(String value) { - this.referenzIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimResponseType.java deleted file mode 100644 index b018d56f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/InitiateClaimResponseType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}MeldungszusammenfassungInitiateClaim_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class InitiateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungInitiateClaimType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungInitiateClaimType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 59c5d1b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListRequestType.java deleted file mode 100644 index 458a6e7d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListRequestType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Schadens-Events zu erhalten - * - *

Java-Klasse für LossEventListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <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="Ereigniszeitpunkt"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "polizzennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class LossEventListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Polizzennr") - protected List polizzennr; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType 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 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 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; - } - - /** - * Gets the value of the polizzennr property. - * - *

- * 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 set method for the polizzennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolizzennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getPolizzennr() { - if (polizzennr == null) { - polizzennr = new ArrayList(); - } - return this.polizzennr; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListResponseType.java deleted file mode 100644 index 6e985ae3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventListResponseType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von Schadensevents für einen bestimmten Zeitraum - * - *

Java-Klasse für LossEventListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class LossEventListResponseType { - - @XmlElement(name = "Result") - protected LossEventListResponseType.Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link LossEventListResponseType.Result } - * - */ - public LossEventListResponseType.Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LossEventListResponseType.Result } - * - */ - public void setResult(LossEventListResponseType.Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "lossEvents" - }) - public static class Result { - - @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; - @XmlElement(name = "LossEvents") - protected List lossEvents; - - /** - * 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; - } - - /** - * Gets the value of the lossEvents property. - * - *

- * 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 set method for the lossEvents property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getLossEvents().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LossEventType } - * - * - */ - public List getLossEvents() { - if (lossEvents == null) { - lossEvents = new ArrayList(); - } - return this.lossEvents; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventRegisteredResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventRegisteredResponseType.java deleted file mode 100644 index 95351373..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventRegisteredResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn der Eintritt eines Schadenereignisses kommuniziert wurde - * - *

Java-Klasse für LossEventRegisteredResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventRegisteredResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventRegisteredResponse_Type") -public class LossEventRegisteredResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventType.java deleted file mode 100644 index 69b90265..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/LossEventType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; - - -/** - * Objekttyp mit welchem der Eintritt eines Schadenereignisses kommuniziert wird - * - *

Java-Klasse für LossEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEvent_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "ereigniszpkt", - "ereignisbeschrTxt" -}) -public class LossEventType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungSchadenType.java deleted file mode 100644 index 018c50b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungSchadenType.java +++ /dev/null @@ -1,432 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Typ um ein Schadenobjekt in der Schadenmeldung abzubilden - * - *

Java-Klasse für MeldungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungSchaden_Type", propOrder = { - "schadenzuordnung", - "polizzennr", - "vertragsID", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class MeldungSchadenType { - - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungSchadenType.Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java deleted file mode 100644 index 90fc5222..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java +++ /dev/null @@ -1,436 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für MeldungszusammenfassungInitiateClaim_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungszusammenfassungInitiateClaim_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungszusammenfassungInitiateClaim_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "schaeden" -}) -public class MeldungszusammenfassungInitiateClaimType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungszusammenfassungInitiateClaimType.Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr", required = true) - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungType.java deleted file mode 100644 index 26537e58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/MeldungszusammenfassungType.java +++ /dev/null @@ -1,629 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für Meldungszusammenfassung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Meldungszusammenfassung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ErgebnisSchaeden" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *                   <choice>
- *                     <element name="Schadenanlage">
- *                       <complexType>
- *                         <complexContent>
- *                           <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                             <sequence>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *                               <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                               <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                               <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                             </sequence>
- *                           </restriction>
- *                         </complexContent>
- *                       </complexType>
- *                     </element>
- *                     <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Meldungszusammenfassung_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "ergebnisSchaeden" -}) -public class MeldungszusammenfassungType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "ErgebnisSchaeden", required = true) - protected List ergebnisSchaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungszusammenfassungType.ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the ergebnisSchaeden property. - * - *

- * 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 set method for the ergebnisSchaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungszusammenfassungType.ErgebnisSchaeden } - * - * - */ - public List getErgebnisSchaeden() { - if (ergebnisSchaeden == null) { - ergebnisSchaeden = new ArrayList(); - } - return this.ergebnisSchaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
-     *         <choice>
-     *           <element name="Schadenanlage">
-     *             <complexType>
-     *               <complexContent>
-     *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *                   <sequence>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-     *                     <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *                     <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *                     <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *                   </sequence>
-     *                 </restriction>
-     *               </complexContent>
-     *             </complexType>
-     *           </element>
-     *           <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "schadenanlage", - "fehlerSchadenanlage" - }) - public static class ErgebnisSchaeden { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Schadenanlage") - protected MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage schadenanlage; - @XmlElement(name = "FehlerSchadenanlage") - protected ServiceFault fehlerSchadenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der schadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage getSchadenanlage() { - return schadenanlage; - } - - /** - * Legt den Wert der schadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage } - * - */ - public void setSchadenanlage(MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage value) { - this.schadenanlage = value; - } - - /** - * Ruft den Wert der fehlerSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerSchadenanlage() { - return fehlerSchadenanlage; - } - - /** - * Legt den Wert der fehlerSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerSchadenanlage(ServiceFault value) { - this.fehlerSchadenanlage = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-         * <complexType>
-         *   <complexContent>
-         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-         *       <sequence>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-         *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-         *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-         *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-         *       </sequence>
-         *     </restriction>
-         *   </complexContent>
-         * </complexType>
-         * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "schadenzuordnung", - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schadenanlage { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index ba91fdfe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_9.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_9.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 1b2374b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index c31b7eb3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index 462f1303..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 8a5de78d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 69306bdf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,1331 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_1_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - private final static QName _CreateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimRequest"); - private final static QName _InformationenPerson_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InformationenPerson"); - private final static QName _CreateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimResponse"); - private final static QName _InitiateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimRequest"); - private final static QName _InitiateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimResponse"); - private final static QName _AddDocToClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimRequest"); - private final static QName _AddDocToClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimResponse"); - private final static QName _GetClaimLightRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightRequest"); - private final static QName _GetClaimLightResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosRequest"); - private final static QName _GetDocumentInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimResponse"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "Schadenzuordnung"); - private final static QName _ChangedClaimsListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListRequest"); - private final static QName _ChangedClaimsListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListResponse"); - private final static QName _LossEventListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListRequest"); - private final static QName _LossEventListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListResponse"); - private final static QName _IdGeschaeftsfallSchadenereignis_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenereignis"); - private final static QName _IdGeschaeftsfallSchadenanlage_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenanlage"); - private final static QName _DeclareEndpointRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointRequest"); - private final static QName _ArtAuthentifizierung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ArtAuthentifizierung"); - private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointResponse"); - private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenRequest"); - private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenResponse"); - private final static QName _DeclareNewClaimStatusRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusRequest"); - private final static QName _DeclareNewClaimStatusResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusResponse"); - private final static QName _LossEventRegisteredRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredRequest"); - private final static QName _LossEventRegisteredResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_1_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SchadenStatusType } - * - */ - public SchadenStatusType createSchadenStatusType() { - return new SchadenStatusType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType createMeldungszusammenfassungInitiateClaimType() { - return new MeldungszusammenfassungInitiateClaimType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType createMeldungszusammenfassungType() { - return new MeldungszusammenfassungType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden createMeldungszusammenfassungTypeErgebnisSchaeden() { - return new MeldungszusammenfassungType.ErgebnisSchaeden(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link MeldungSchadenType } - * - */ - public MeldungSchadenType createMeldungSchadenType() { - return new MeldungSchadenType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType } - * - */ - public LossEventListResponseType createLossEventListResponseType() { - return new LossEventListResponseType(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType } - * - */ - public ChangedClaimsListResponseType createChangedClaimsListResponseType() { - return new ChangedClaimsListResponseType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType } - * - */ - public GetDocumentInfosResponseType createGetDocumentInfosResponseType() { - return new GetDocumentInfosResponseType(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link CreateClaimRequestType } - * - */ - public CreateClaimRequestType createCreateClaimRequestType() { - return new CreateClaimRequestType(); - } - - /** - * Create an instance of {@link InformationenPersonType } - * - */ - public InformationenPersonType createInformationenPersonType() { - return new InformationenPersonType(); - } - - /** - * Create an instance of {@link CreateClaimResponseType } - * - */ - public CreateClaimResponseType createCreateClaimResponseType() { - return new CreateClaimResponseType(); - } - - /** - * Create an instance of {@link InitiateClaimRequestType } - * - */ - public InitiateClaimRequestType createInitiateClaimRequestType() { - return new InitiateClaimRequestType(); - } - - /** - * Create an instance of {@link InitiateClaimResponseType } - * - */ - public InitiateClaimResponseType createInitiateClaimResponseType() { - return new InitiateClaimResponseType(); - } - - /** - * Create an instance of {@link AddDocToClaimRequestType } - * - */ - public AddDocToClaimRequestType createAddDocToClaimRequestType() { - return new AddDocToClaimRequestType(); - } - - /** - * Create an instance of {@link AddDocToClaimResponseType } - * - */ - public AddDocToClaimResponseType createAddDocToClaimResponseType() { - return new AddDocToClaimResponseType(); - } - - /** - * Create an instance of {@link SpezifikationSchadenType } - * - */ - public SpezifikationSchadenType createSpezifikationSchadenType() { - return new SpezifikationSchadenType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimResponseLightType } - * - */ - public GetClaimResponseLightType createGetClaimResponseLightType() { - return new GetClaimResponseLightType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosRequestType } - * - */ - public GetDocumentInfosRequestType createGetDocumentInfosRequestType() { - return new GetDocumentInfosRequestType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link ChangedClaimsListRequestType } - * - */ - public ChangedClaimsListRequestType createChangedClaimsListRequestType() { - return new ChangedClaimsListRequestType(); - } - - /** - * Create an instance of {@link LossEventListRequestType } - * - */ - public LossEventListRequestType createLossEventListRequestType() { - return new LossEventListRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointRequestType } - * - */ - public DeclareEndpointRequestType createDeclareEndpointRequestType() { - return new DeclareEndpointRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointResponseType } - * - */ - public DeclareEndpointResponseType createDeclareEndpointResponseType() { - return new DeclareEndpointResponseType(); - } - - /** - * Create an instance of {@link SecurityContextTokenRequestType } - * - */ - public SecurityContextTokenRequestType createSecurityContextTokenRequestType() { - return new SecurityContextTokenRequestType(); - } - - /** - * Create an instance of {@link SecurityContextTokenResponseType } - * - */ - public SecurityContextTokenResponseType createSecurityContextTokenResponseType() { - return new SecurityContextTokenResponseType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusRequestType } - * - */ - public DeclareNewClaimStatusRequestType createDeclareNewClaimStatusRequestType() { - return new DeclareNewClaimStatusRequestType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusResponseType } - * - */ - public DeclareNewClaimStatusResponseType createDeclareNewClaimStatusResponseType() { - return new DeclareNewClaimStatusResponseType(); - } - - /** - * Create an instance of {@link LossEventType } - * - */ - public LossEventType createLossEventType() { - return new LossEventType(); - } - - /** - * Create an instance of {@link LossEventRegisteredResponseType } - * - */ - public LossEventRegisteredResponseType createLossEventRegisteredResponseType() { - return new LossEventRegisteredResponseType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderType } - * - */ - public SchadenmelderType createSchadenmelderType() { - return new SchadenmelderType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link UsernamePasswordCredentialsType } - * - */ - public UsernamePasswordCredentialsType createUsernamePasswordCredentialsType() { - return new UsernamePasswordCredentialsType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link SchadenStatusType.Schaeden } - * - */ - public SchadenStatusType.Schaeden createSchadenStatusTypeSchaeden() { - return new SchadenStatusType.Schaeden(); - } - - /** - * Create an instance of {@link SachbearbVUType.Person } - * - */ - public SachbearbVUType.Person createSachbearbVUTypePerson() { - return new SachbearbVUType.Person(); - } - - /** - * Create an instance of {@link SchadenereignisType.BeteiligtePersonen } - * - */ - public SchadenereignisType.BeteiligtePersonen createSchadenereignisTypeBeteiligtePersonen() { - return new SchadenereignisType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente createMeldungszusammenfassungInitiateClaimTypeErgebnisDokumente() { - return new MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.Schaeden } - * - */ - public MeldungszusammenfassungInitiateClaimType.Schaeden createMeldungszusammenfassungInitiateClaimTypeSchaeden() { - return new MeldungszusammenfassungInitiateClaimType.Schaeden(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungType.ErgebnisDokumente createMeldungszusammenfassungTypeErgebnisDokumente() { - return new MeldungszusammenfassungType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage createMeldungszusammenfassungTypeErgebnisSchaedenSchadenanlage() { - return new MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage(); - } - - /** - * Create an instance of {@link SchadenType.Schadenbeteiligte } - * - */ - public SchadenType.Schadenbeteiligte createSchadenTypeSchadenbeteiligte() { - return new SchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link MeldungSchadenType.Schadenbeteiligte } - * - */ - public MeldungSchadenType.Schadenbeteiligte createMeldungSchadenTypeSchadenbeteiligte() { - return new MeldungSchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link OrtType.Geokoordinaten } - * - */ - public OrtType.Geokoordinaten createOrtTypeGeokoordinaten() { - return new OrtType.Geokoordinaten(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType.Result } - * - */ - public LossEventListResponseType.Result createLossEventListResponseTypeResult() { - return new LossEventListResponseType.Result(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType.Result } - * - */ - public ChangedClaimsListResponseType.Result createChangedClaimsListResponseTypeResult() { - return new ChangedClaimsListResponseType.Result(); - } - - /** - * Create an instance of {@link SearchClaimResponseType.Result } - * - */ - public SearchClaimResponseType.Result createSearchClaimResponseTypeResult() { - return new SearchClaimResponseType.Result(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType.Result } - * - */ - public GetDocumentInfosResponseType.Result createGetDocumentInfosResponseTypeResult() { - return new GetDocumentInfosResponseType.Result(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimRequest") - public JAXBElement createCreateClaimRequest(CreateClaimRequestType value) { - return new JAXBElement(_CreateClaimRequest_QNAME, CreateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InformationenPersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InformationenPerson") - public JAXBElement createInformationenPerson(InformationenPersonType value) { - return new JAXBElement(_InformationenPerson_QNAME, InformationenPersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimResponse") - public JAXBElement createCreateClaimResponse(CreateClaimResponseType value) { - return new JAXBElement(_CreateClaimResponse_QNAME, CreateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimRequest") - public JAXBElement createInitiateClaimRequest(InitiateClaimRequestType value) { - return new JAXBElement(_InitiateClaimRequest_QNAME, InitiateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimResponse") - public JAXBElement createInitiateClaimResponse(InitiateClaimResponseType value) { - return new JAXBElement(_InitiateClaimResponse_QNAME, InitiateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimRequest") - public JAXBElement createAddDocToClaimRequest(AddDocToClaimRequestType value) { - return new JAXBElement(_AddDocToClaimRequest_QNAME, AddDocToClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimResponse") - public JAXBElement createAddDocToClaimResponse(AddDocToClaimResponseType value) { - return new JAXBElement(_AddDocToClaimResponse_QNAME, AddDocToClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightRequest") - public JAXBElement createGetClaimLightRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimLightRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseLightType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightResponse") - public JAXBElement createGetClaimLightResponse(GetClaimResponseLightType value) { - return new JAXBElement(_GetClaimLightResponse_QNAME, GetClaimResponseLightType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosRequest") - public JAXBElement createGetDocumentInfosRequest(GetDocumentInfosRequestType value) { - return new JAXBElement(_GetDocumentInfosRequest_QNAME, GetDocumentInfosRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosResponse") - public JAXBElement createGetDocumentInfosResponse(GetDocumentInfosResponseType value) { - return new JAXBElement(_GetDocumentInfosResponse_QNAME, GetDocumentInfosResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListRequest") - public JAXBElement createChangedClaimsListRequest(ChangedClaimsListRequestType value) { - return new JAXBElement(_ChangedClaimsListRequest_QNAME, ChangedClaimsListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListResponse") - public JAXBElement createChangedClaimsListResponse(ChangedClaimsListResponseType value) { - return new JAXBElement(_ChangedClaimsListResponse_QNAME, ChangedClaimsListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListRequest") - public JAXBElement createLossEventListRequest(LossEventListRequestType value) { - return new JAXBElement(_LossEventListRequest_QNAME, LossEventListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListResponse") - public JAXBElement createLossEventListResponse(LossEventListResponseType value) { - return new JAXBElement(_LossEventListResponse_QNAME, LossEventListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenereignis") - public JAXBElement createIdGeschaeftsfallSchadenereignis(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenereignis_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenanlage") - public JAXBElement createIdGeschaeftsfallSchadenanlage(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenanlage_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointRequest") - public JAXBElement createDeclareEndpointRequest(DeclareEndpointRequestType value) { - return new JAXBElement(_DeclareEndpointRequest_QNAME, DeclareEndpointRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ArtAuthentifizierung") - public JAXBElement createArtAuthentifizierung(String value) { - return new JAXBElement(_ArtAuthentifizierung_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointResponse") - public JAXBElement createDeclareEndpointResponse(DeclareEndpointResponseType value) { - return new JAXBElement(_DeclareEndpointResponse_QNAME, DeclareEndpointResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenRequest") - public JAXBElement createSecurityContextTokenRequest(SecurityContextTokenRequestType value) { - return new JAXBElement(_SecurityContextTokenRequest_QNAME, SecurityContextTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenResponse") - public JAXBElement createSecurityContextTokenResponse(SecurityContextTokenResponseType value) { - return new JAXBElement(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusRequest") - public JAXBElement createDeclareNewClaimStatusRequest(DeclareNewClaimStatusRequestType value) { - return new JAXBElement(_DeclareNewClaimStatusRequest_QNAME, DeclareNewClaimStatusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusResponse") - public JAXBElement createDeclareNewClaimStatusResponse(DeclareNewClaimStatusResponseType value) { - return new JAXBElement(_DeclareNewClaimStatusResponse_QNAME, DeclareNewClaimStatusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredRequest") - public JAXBElement createLossEventRegisteredRequest(LossEventType value) { - return new JAXBElement(_LossEventRegisteredRequest_QNAME, LossEventType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventRegisteredResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredResponse") - public JAXBElement createLossEventRegisteredResponse(LossEventRegisteredResponseType value) { - return new JAXBElement(_LossEventRegisteredResponse_QNAME, LossEventRegisteredResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjektSpezifikationType.java deleted file mode 100644 index 9cf7f85e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ObjektSpezifikationType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - SchadenObjektSpezifikationType.class, - PolizzenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OrtType.java deleted file mode 100644 index b85f690e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/OrtType.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *                 <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected OrtType.Geokoordinaten geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType.Geokoordinaten } - * - */ - public OrtType.Geokoordinaten getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType.Geokoordinaten } - * - */ - public void setGeokoordinaten(OrtType.Geokoordinaten value) { - this.geokoordinaten = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Geokoordinaten { - - @XmlAttribute(name = "Breite", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 64dc8bcb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 590ec901..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index c9c2088a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - protected byte[] content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SachbearbVUType.java deleted file mode 100644 index 22dc5675..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SachbearbVUType.java +++ /dev/null @@ -1,219 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected SachbearbVUType.Person person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType.Person } - * - */ - public SachbearbVUType.Person getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType.Person } - * - */ - public void setPerson(SachbearbVUType.Person value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Person { - - @XmlAttribute(name = "Familienname", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:omds3ServiceTypes-1-1-0") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenLightType.java deleted file mode 100644 index 720777a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenLightType.java +++ /dev/null @@ -1,450 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "schadenzuordnung", - "polizzennr", - "vertragsID", - "spartenCd", - "spartenerweiterung", - "schadUrsCd", - "schadUrsTxt", - "erledDat" -}) -public class SchadenLightType { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected String vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected List nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der vormaligeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeSchadennr() { - return vormaligeSchadennr; - } - - /** - * Legt den Wert der vormaligeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeSchadennr(String value) { - this.vormaligeSchadennr = value; - } - - /** - * Gets the value of the nachfolgendeSchadennr property. - * - *

- * 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 set method for the nachfolgendeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNachfolgendeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getNachfolgendeSchadennr() { - if (nachfolgendeSchadennr == null) { - nachfolgendeSchadennr = new ArrayList(); - } - return this.nachfolgendeSchadennr; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenObjektSpezifikationType.java deleted file mode 100644 index 7620281a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenStatusType.java deleted file mode 100644 index d9963b42..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenStatusType.java +++ /dev/null @@ -1,344 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AbstraktesEreignisStatusAenderungType; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für SchadenStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenStatus_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}AbstraktesEreignisStatusAenderung_Type">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenStatus_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "schaeden" -}) -public class SchadenStatusType - extends AbstraktesEreignisStatusAenderungType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenStatusType.Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "bearbStandCd", - "schadennr", - "schadenzuordnung", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenType.java deleted file mode 100644 index c2f20f67..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenType.java +++ /dev/null @@ -1,916 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; -import at.vvo.omds.types.omds2Types.v2_9.ZAHLUNGType; - - -/** - * Typ um ein Schadenobjekt in der Schadendarstellung abzubilden - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="IdGeschaeftsfallSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                   <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Schadensreserve" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "vuNr", - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "polizzennr", - "vertragsID", - "sachbearbVU", - "ordnungsbegriffZuordFremd", - "schadenzuordnung", - "schadUrsCd", - "schadUrsTxt", - "erledDat", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "schadensreserve", - "spartenCd", - "spartenerweiterung", - "waehrungsCd", - "spartendetails", - "dokumente" -}) -public class SchadenType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "Schadensreserve") - protected BigDecimal schadensreserve; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * 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 bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der schadensreserve-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSchadensreserve() { - return schadensreserve; - } - - /** - * Legt den Wert der schadensreserve-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSchadensreserve(BigDecimal value) { - this.schadensreserve = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr", - "zahlung" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlElement(name = "ZAHLUNG", namespace = "urn:omds20") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZAHLUNG().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisLightType.java deleted file mode 100644 index c5befef6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisLightType.java +++ /dev/null @@ -1,252 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}SchadenLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "schaeden", - "meldedat" -}) -public class SchadenereignisLightType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected List vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Gets the value of the vormaligeIdGeschaeftsfall property. - * - *

- * 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 set method for the vormaligeIdGeschaeftsfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeIdGeschaeftsfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeIdGeschaeftsfall() { - if (vormaligeIdGeschaeftsfall == null) { - vormaligeIdGeschaeftsfall = new ArrayList(); - } - return this.vormaligeIdGeschaeftsfall; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisType.java deleted file mode 100644 index a995545f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenereignisType.java +++ /dev/null @@ -1,657 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Objekttyp für die Darstellungen von Schadenereignissen - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="EreignisZpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Person" type="{urn:omds20}PERSON_Type"/>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}Schaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "ereignisZpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "meldedat", - "schadenmelder" -}) -public class SchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected String vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "EreignisZpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereignisZpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der vormaligeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeIdGeschaeftsfall() { - return vormaligeIdGeschaeftsfall; - } - - /** - * Legt den Wert der vormaligeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeIdGeschaeftsfall(String value) { - this.vormaligeIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der ereignisZpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreignisZpkt() { - return ereignisZpkt; - } - - /** - * Legt den Wert der ereignisZpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreignisZpkt(XMLGregorianCalendar value) { - this.ereignisZpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Person" type="{urn:omds20}PERSON_Type"/>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "person", - "geschInteresseLfnr" - }) - public static class BeteiligtePersonen { - - @XmlElement(name = "Person", required = true) - protected PERSONType person; - @XmlElement(name = "GeschInteresseLfnr") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * 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; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetLfnr(String value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderType.java deleted file mode 100644 index 3c5bb2e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderVermittlerType.java deleted file mode 100644 index c70d860f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenzuordnungType.java deleted file mode 100644 index ee3fe8e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimRequestType.java deleted file mode 100644 index b0feacac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimRequestType.java +++ /dev/null @@ -1,282 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType 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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimResponseType.java deleted file mode 100644 index da81fe4f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SearchClaimResponseType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseType.Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseType.Result } - * - */ - public SearchClaimResponseType.Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseType.Result } - * - */ - public void setResult(SearchClaimResponseType.Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" - }) - public static class Result { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getSchadenereignisse().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenRequestType.java deleted file mode 100644 index db3264ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Request-Type zum Bezug eines Security-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = { - "credentials" -}) -public class SecurityContextTokenRequestType { - - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenResponseType.java deleted file mode 100644 index 8da01547..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SecurityContextTokenResponseType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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; - - -/** - * Response-Type zum Bezug eines Securtity-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = { - "token", - "dauerhaftGueltig", - "gueltigBis" -}) -public class SecurityContextTokenResponseType { - - @XmlElement(name = "Token", required = true) - protected String token; - @XmlElement(name = "DauerhaftGueltig") - protected boolean dauerhaftGueltig; - @XmlElement(name = "GueltigBis") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der token-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Legt den Wert der token-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Ruft den Wert der dauerhaftGueltig-Eigenschaft ab. - * - */ - public boolean isDauerhaftGueltig() { - return dauerhaftGueltig; - } - - /** - * Legt den Wert der dauerhaftGueltig-Eigenschaft fest. - * - */ - public void setDauerhaftGueltig(boolean value) { - this.dauerhaftGueltig = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenKfzType.java deleted file mode 100644 index 71a63298..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine spezielle Spartenerweiterung der Schadenmeldung für Kfz. - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenType.java deleted file mode 100644 index 699e401d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpartendetailSchadenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpezifikationSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpezifikationSchadenType.java deleted file mode 100644 index d2af31a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/SpezifikationSchadenType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_1_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für SpezifikationSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezifikationSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezifikationSchaden_Type", propOrder = { - "vuNr", - "authFilter", - "idGeschaeftsfallSchadenereignis", - "idGeschaeftsfallSchadenanlage", - "schadennr" -}) -public class SpezifikationSchadenType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage") - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UploadDokumentType.java deleted file mode 100644 index 3fb14393..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UploadDokumentType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -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 fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - protected byte[] content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 36140bc0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 55e404f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UsernamePasswordCredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UsernamePasswordCredentialsType.java deleted file mode 100644 index 28d2f244..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/UsernamePasswordCredentialsType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Konkrete Implementierung von Credentials mit Username und Password - * - *

Java-Klasse für UsernamePasswordCredentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UsernamePasswordCredentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsernamePasswordCredentials_Type") -public class UsernamePasswordCredentialsType { - - @XmlAttribute(name = "Username", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String username; - @XmlAttribute(name = "Password", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String password; - - /** - * Ruft den Wert der username-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Legt den Wert der username-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Ruft den Wert der password-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Legt den Wert der password-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ZeitraumType.java deleted file mode 100644 index d464b690..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/ZeitraumType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3ServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/package-info.java deleted file mode 100644 index 5b2744b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_1_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/ObjectFactory.java deleted file mode 100644 index 6f0e13f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/ObjectFactory.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.vuExtensionTypes; - -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.vuExtensionTypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.vuExtensionTypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link UserDataResponseExampleVU } - * - */ - public UserDataResponseExampleVU createUserDataResponseExampleVU() { - return new UserDataResponseExampleVU(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/UserDataResponseExampleVU.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/UserDataResponseExampleVU.java deleted file mode 100644 index b988c5e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/UserDataResponseExampleVU.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_0.vuExtensionTypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_0.servicetypes.UserDataResponse; - - -/** - *

Java-Klasse für UserDataResponseExampleVU complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponseExampleVU">
- *   <complexContent>
- *     <extension base="{urn:omdsServiceTypes}UserDataResponse">
- *       <sequence>
- *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponseExampleVU", propOrder = { - "role" -}) -public class UserDataResponseExampleVU - extends UserDataResponse -{ - - @XmlElement(required = true) - protected String role; - - /** - * Ruft den Wert der role-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRole() { - return role; - } - - /** - * Legt den Wert der role-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRole(String value) { - this.role = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/package-info.java deleted file mode 100644 index 381abdc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_0/vuExtensionTypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:exampleVuServiceTypes", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_1_0.vuExtensionTypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/BrokerServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/BrokerServiceFaultMsg.java deleted file mode 100644 index 227f6cd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/BrokerServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T17:19:43.317+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class BrokerServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public BrokerServiceFaultMsg() { - super(); - } - - public BrokerServiceFaultMsg(String message) { - super(message); - } - - public BrokerServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public BrokerServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public BrokerServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerService.java deleted file mode 100644 index 51f0418d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_1_1.brokerservice; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T17:19:43.381+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsBrokerService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3ServicesBroker.wsdl", - targetNamespace = "urn:omds3ServicesBroker-1-1-0") -public class OmdsBrokerService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerService"); - public final static QName OmdsBrokerServicePort = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3ServicesBroker.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsBrokerService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3ServicesBroker.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsBrokerService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsBrokerService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsBrokerService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsBrokerService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsBrokerService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsBrokerService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsBrokerServicePortType - */ - @WebEndpoint(name = "omdsBrokerServicePort") - public OmdsBrokerServicePortType getOmdsBrokerServicePort() { - return super.getPort(OmdsBrokerServicePort, OmdsBrokerServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsBrokerServicePortType - */ - @WebEndpoint(name = "omdsBrokerServicePort") - public OmdsBrokerServicePortType getOmdsBrokerServicePort(WebServiceFeature... features) { - return super.getPort(OmdsBrokerServicePort, OmdsBrokerServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortImpl.java deleted file mode 100644 index 6f2388c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortImpl.java +++ /dev/null @@ -1,67 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_1_1.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventType; - -import java.util.logging.Logger; -import javax.jws.WebService; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T17:19:43.332+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsBrokerService", - portName = "omdsBrokerServicePort", - targetNamespace = "urn:omds3ServicesBroker-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3ServicesBroker.wsdl", - endpointInterface = "at.vvo.omds.types.omds3types.v1_1_1.brokerservice.OmdsBrokerServicePortType") - -public class OmdsBrokerServicePortImpl implements OmdsBrokerServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsBrokerServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_1_1.brokerservice.OmdsBrokerServicePortType#lossEventRegistered(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.LossEventType parameters)* - */ - public LossEventRegisteredResponseType lossEventRegistered(LossEventType parameters) throws BrokerServiceFaultMsg { - LOG.info("Executing operation lossEventRegistered"); - System.out.println(parameters); - try { - LossEventRegisteredResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new BrokerServiceFaultMsg("BrokerServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_1_1.brokerservice.OmdsBrokerServicePortType#declareNewClaimStatus(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeclareNewClaimStatusRequestType parameters)* - */ - public DeclareNewClaimStatusResponseType declareNewClaimStatus(DeclareNewClaimStatusRequestType parameters) throws BrokerServiceFaultMsg { - LOG.info("Executing operation declareNewClaimStatus"); - System.out.println(parameters); - try { - DeclareNewClaimStatusResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new BrokerServiceFaultMsg("BrokerServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType.java deleted file mode 100644 index 6117bdd7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType.java +++ /dev/null @@ -1,40 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_1_1.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ObjectFactory; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventType; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T17:19:43.363+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3ServicesBroker-1-1-0", name = "omdsBrokerServicePortType") -@XmlSeeAlso({ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsBrokerServicePortType { - - @WebMethod(action = "urn:lossEventRegistered") - @WebResult(name = "LossEventRegisteredResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventRegisteredResponseType lossEventRegistered( - @WebParam(partName = "parameters", name = "LossEventRegisteredRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventType parameters - ) throws BrokerServiceFaultMsg; - - @WebMethod(action = "urn:declareNewClaimStatus") - @WebResult(name = "DeclareNewClaimStatusResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareNewClaimStatusResponseType declareNewClaimStatus( - @WebParam(partName = "parameters", name = "DeclareNewClaimStatusRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareNewClaimStatusRequestType parameters - ) throws BrokerServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java deleted file mode 100644 index f15acbc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.brokerservice; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.LossEventType; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T17:19:43.240+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsBrokerServicePortType_OmdsBrokerServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerService"); - - private OmdsBrokerServicePortType_OmdsBrokerServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsBrokerService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsBrokerService ss = new OmdsBrokerService(wsdlURL, SERVICE_NAME); - OmdsBrokerServicePortType port = ss.getOmdsBrokerServicePort(); - - { - System.out.println("Invoking lossEventRegistered..."); - LossEventType _lossEventRegistered_parameters = null; - try { - LossEventRegisteredResponseType _lossEventRegistered__return = port.lossEventRegistered(_lossEventRegistered_parameters); - System.out.println("lossEventRegistered.result=" + _lossEventRegistered__return); - - } catch (BrokerServiceFaultMsg e) { - System.out.println("Expected exception: BrokerServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareNewClaimStatus..."); - DeclareNewClaimStatusRequestType _declareNewClaimStatus_parameters = null; - try { - DeclareNewClaimStatusResponseType _declareNewClaimStatus__return = port.declareNewClaimStatus(_declareNewClaimStatus_parameters); - System.out.println("declareNewClaimStatus.result=" + _declareNewClaimStatus__return); - - } catch (BrokerServiceFaultMsg e) { - System.out.println("Expected exception: BrokerServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AgentFilterType.java deleted file mode 100644 index 82258493..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AuthorizationFilter.java deleted file mode 100644 index eb08e7d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ElementIdType.java deleted file mode 100644 index 96c70c24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementIdType", propOrder = { - "id", - "idValidUntil", - "idIsSingleUse" -}) -public class ElementIdType { - - @XmlElement(required = true) - protected String id; - @XmlElement(required = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/OMDSVersionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/OMDSVersionType.java deleted file mode 100644 index 5f23e327..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/OMDSVersionType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für OMDSVersion_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="OMDSVersion_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <maxLength value="20"/>
- *     <enumeration value="OMDS-Services 1.0.0"/>
- *     <enumeration value="OMDS-Services 1.1.0"/>
- *     <enumeration value="OMDS-Services 1.1.1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "OMDSVersion_Type") -@XmlEnum -public enum OMDSVersionType { - - @XmlEnumValue("OMDS-Services 1.0.0") - OMDS_SERVICES_1_0_0("OMDS-Services 1.0.0"), - @XmlEnumValue("OMDS-Services 1.1.0") - OMDS_SERVICES_1_1_0("OMDS-Services 1.1.0"), - @XmlEnumValue("OMDS-Services 1.1.1") - OMDS_SERVICES_1_1_1("OMDS-Services 1.1.1"); - private final String value; - - OMDSVersionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static OMDSVersionType fromValue(String v) { - for (OMDSVersionType c: OMDSVersionType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ObjectFactory.java deleted file mode 100644 index 66f74581..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ObjectFactory.java +++ /dev/null @@ -1,89 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_1_1.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _GeschaeftsfallId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "GeschaeftsfallId"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_1_1.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "GeschaeftsfallId") - public JAXBElement createGeschaeftsfallId(String value) { - return new JAXBElement(_GeschaeftsfallId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/PartnerRoleType.java deleted file mode 100644 index 62d9669d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ServiceFault.java deleted file mode 100644 index 9a6e2a53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/ServiceFault.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/package-info.java deleted file mode 100644 index f241cc2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_1_1.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsService.java deleted file mode 100644 index c7f4fdf2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_1_1.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:25:02.701+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-1-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-1-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-1-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortImpl.java deleted file mode 100644 index 4245cf28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,368 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_1_1.service; - -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.*; - -import java.util.logging.Logger; -import javax.jws.WebService; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:25:02.639+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-1-1/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType") - -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#initiateClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.InitiateClaimRequestType parameters)* - */ - public InitiateClaimResponseType initiateClaim(InitiateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation initiateClaim"); - System.out.println(parameters); - try { - InitiateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.UserDataRequest parameters)* - */ - public UserDataResponse getUserData(UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - UserDataResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.ChangedClaimsListRequestType parameters)* - */ - public ChangedClaimsListResponseType getChangedClaimsList(ChangedClaimsListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getChangedClaimsList"); - System.out.println(parameters); - try { - ChangedClaimsListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.SearchClaimRequestType parameters)* - */ - public SearchClaimResponseType searchClaim(SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - SearchClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPolicy(DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getDocumentInfos(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.GetDocumentInfosRequestType parameters)* - */ - public GetDocumentInfosResponseType getDocumentInfos(GetDocumentInfosRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentInfos"); - System.out.println(parameters); - try { - GetDocumentInfosResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPartner(DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#addDocToClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.AddDocToClaimRequestType parameters)* - */ - public AddDocToClaimResponseType addDocToClaim(AddDocToClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToClaim"); - System.out.println(parameters); - try { - AddDocToClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseLightType getClaimLight(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaimLight"); - System.out.println(parameters); - try { - GetClaimResponseLightType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.OMDSPackageListRequest parameters)* - */ - public OMDSPackageListResponse getOMDSPackageList(OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - OMDSPackageListResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.ArcImageInfosRequest parameters)* - */ - public ArcImageInfosResponse getArcImageInfos(ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - ArcImageInfosResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.LossEventListRequestType parameters)* - */ - public LossEventListResponseType getLossEventList(LossEventListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getLossEventList"); - System.out.println(parameters); - try { - LossEventListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#declareEndpoint(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeclareEndpointRequestType parameters)* - */ - public DeclareEndpointResponseType declareEndpoint(DeclareEndpointRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation declareEndpoint"); - System.out.println(parameters); - try { - DeclareEndpointResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.LoginRequestType parameters)* - */ - public DeepLinkBusinessObjectResponse login(LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeepLinkOfferRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkOffer(DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.OMDSPackageRequest parameters)* - */ - public OMDSPackageResponse getOMDSPackage(OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - OMDSPackageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.GetNumberOfDocumentsRequestType parameters)* - */ - public GetNumberOfDocumentsResponseType getNumberOfDocuments(GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.CreateClaimRequestType parameters)* - */ - public CreateClaimResponseType createClaim(CreateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createClaim"); - System.out.println(parameters); - try { - CreateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.ArcImageRequest parameters)* - */ - public ArcImageResponse getArcImage(ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - ArcImageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.DeepLinkClaimRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkClaim(DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.v1_1_1.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.v1_1_1.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseType getClaim(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - GetClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType.java deleted file mode 100644 index a3029e33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType.java +++ /dev/null @@ -1,169 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_1_1.service; - -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.*; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:25:02.670+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-1-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_1_1.common.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class, ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:initiateClaim") - @WebResult(name = "InitiateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public InitiateClaimResponseType initiateClaim( - @WebParam(partName = "parameters", name = "InitiateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - InitiateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getChangedClaimsList") - @WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ChangedClaimsListResponseType getChangedClaimsList( - @WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ChangedClaimsListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public SearchClaimResponseType searchClaim( - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentInfos") - @WebResult(name = "GetDocumentInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetDocumentInfosResponseType getDocumentInfos( - @WebParam(partName = "parameters", name = "GetDocumentInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetDocumentInfosRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToClaim") - @WebResult(name = "AddDocToClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public AddDocToClaimResponseType addDocToClaim( - @WebParam(partName = "parameters", name = "AddDocToClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - AddDocToClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaimLight") - @WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseLightType getClaimLight( - @WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getLossEventList") - @WebResult(name = "LossEventListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventListResponseType getLossEventList( - @WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:declareEndpoint") - @WebResult(name = "DeclareEndpointResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareEndpointResponseType declareEndpoint( - @WebParam(partName = "parameters", name = "DeclareEndpointRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareEndpointRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createClaim") - @WebResult(name = "CreateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public CreateClaimResponseType createClaim( - @WebParam(partName = "parameters", name = "CreateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - CreateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseType getClaim( - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index 2e5149fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,303 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_1_1.servicetypes.*; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:25:02.540+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-1-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking initiateClaim..."); - InitiateClaimRequestType _initiateClaim_parameters = null; - try { - InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters); - System.out.println("initiateClaim.result=" + _initiateClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - UserDataRequest _getUserData_parameters = null; - try { - UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getChangedClaimsList..."); - ChangedClaimsListRequestType _getChangedClaimsList_parameters = null; - try { - ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters); - System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking searchClaim..."); - SearchClaimRequestType _searchClaim_parameters = null; - try { - SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentInfos..."); - GetDocumentInfosRequestType _getDocumentInfos_parameters = null; - try { - GetDocumentInfosResponseType _getDocumentInfos__return = port.getDocumentInfos(_getDocumentInfos_parameters); - System.out.println("getDocumentInfos.result=" + _getDocumentInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToClaim..."); - AddDocToClaimRequestType _addDocToClaim_parameters = null; - try { - AddDocToClaimResponseType _addDocToClaim__return = port.addDocToClaim(_addDocToClaim_parameters); - System.out.println("addDocToClaim.result=" + _addDocToClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaimLight..."); - SpezifikationSchadenType _getClaimLight_parameters = null; - try { - GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters); - System.out.println("getClaimLight.result=" + _getClaimLight__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackageList..."); - OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getLossEventList..."); - LossEventListRequestType _getLossEventList_parameters = null; - try { - LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters); - System.out.println("getLossEventList.result=" + _getLossEventList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareEndpoint..."); - DeclareEndpointRequestType _declareEndpoint_parameters = null; - try { - DeclareEndpointResponseType _declareEndpoint__return = port.declareEndpoint(_declareEndpoint_parameters); - System.out.println("declareEndpoint.result=" + _declareEndpoint__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - LoginRequestType _login_parameters = null; - try { - DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createClaim..."); - CreateClaimRequestType _createClaim_parameters = null; - try { - CreateClaimResponseType _createClaim__return = port.createClaim(_createClaim_parameters); - System.out.println("createClaim.result=" + _createClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - ArcImageRequest _getArcImage_parameters = null; - try { - ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaim..."); - SpezifikationSchadenType _getClaim_parameters = null; - try { - GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/ServiceFaultMsg.java deleted file mode 100644 index bb9c39b8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/service/ServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.service; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:25:02.623+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimRequestType.java deleted file mode 100644 index 1816b6ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimRequestType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 des Requestobjekts, um Dokument zu Schaden hinzuzufügen - * - *

Java-Klasse für AddDocToClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *         <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimRequest_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "schadennr", - "dokument" -}) -public class AddDocToClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimResponseType.java deleted file mode 100644 index c20e87d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/AddDocToClaimResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Schadensdokument übergeben wurde - * - *

Java-Klasse für AddDocToClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="ArcImageId" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimResponse_Type", propOrder = { - "arcImageIdOrServiceFault" -}) -public class AddDocToClaimResponseType { - - @XmlElements({ - @XmlElement(name = "ArcImageId", type = ArcImageInfo.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List arcImageIdOrServiceFault; - - /** - * Gets the value of the arcImageIdOrServiceFault property. - * - *

- * 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 set method for the arcImageIdOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageIdOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * {@link ServiceFault } - * - * - */ - public List getArcImageIdOrServiceFault() { - if (arcImageIdOrServiceFault == null) { - arcImageIdOrServiceFault = new ArrayList(); - } - return this.arcImageIdOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcContent.java deleted file mode 100644 index 8ef9a547..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcContent.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - protected byte[] arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setArcImage(byte[] value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfo.java deleted file mode 100644 index 8671e360..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_1_1.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index b3479258..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index ae694437..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageRequest.java deleted file mode 100644 index 0de9a709..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,126 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageResponse.java deleted file mode 100644 index 1c43bdca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/BeteiligtePersonType.java deleted file mode 100644 index 2e4f0188..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/BeteiligtePersonType.java +++ /dev/null @@ -1,182 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden oder einem Vertrag beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "informationenPerson", - "geschInteresseLfnr" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - @XmlElement(name = "GeschInteresseLfnr", type = Long.class) - @XmlSchemaType(name = "unsignedInt") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListRequestType.java deleted file mode 100644 index 5dd72a56..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListRequestType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Änderungen an Schäden zu erhalten - * - *

Java-Klasse für ChangedClaimsListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type"/>
- *         <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="Changed"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class ChangedClaimsListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Zeitraum", required = true) - 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 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 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListResponseType.java deleted file mode 100644 index 2ce6481a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ChangedClaimsListResponseType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von geänderten Schäden für einen bestimmten Zeitraum - * - *

Java-Klasse für ChangedClaimsListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class ChangedClaimsListResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "geaenderteObjekte" - }) - public static class Result { - - @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; - @XmlElement(name = "GeaenderteObjekte") - protected List geaenderteObjekte; - - /** - * 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; - } - - /** - * Gets the value of the geaenderteObjekte property. - * - *

- * 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 set method for the geaenderteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeaenderteObjekte().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenStatusType } - * - * - */ - public List getGeaenderteObjekte() { - if (geaenderteObjekte == null) { - geaenderteObjekte = new ArrayList(); - } - return this.geaenderteObjekte; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimRequestType.java deleted file mode 100644 index 68d60f47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimRequestType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für CreateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzGeschaeftsfallId" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}MeldungSchaden_Type" maxOccurs="unbounded"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimRequest_Type", propOrder = { - "vuNr", - "referenzGeschaeftsfallId", - "ordnungsbegriffZuordFremd", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "schadenmelder" -}) -public class CreateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzGeschaeftsfallId") - protected String referenzGeschaeftsfallId; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzGeschaeftsfallId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzGeschaeftsfallId() { - return referenzGeschaeftsfallId; - } - - /** - * Legt den Wert der referenzGeschaeftsfallId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzGeschaeftsfallId(String value) { - this.referenzGeschaeftsfallId = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungSchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimResponseType.java deleted file mode 100644 index a6d04fe1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CreateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CreateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}Meldungszusammenfassung_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class CreateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CredentialsType.java deleted file mode 100644 index 2dd740aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/CredentialsType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können. - * - *

Java-Klasse für Credentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Credentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Credentials_Type") -public abstract class CredentialsType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointRequestType.java deleted file mode 100644 index 286a761f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointRequestType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Typ für den DeclareEndpointRequest - * - *

Java-Klasse für DeclareEndpointRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="BasisUrlEndpoint">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}ArtAuthentifizierung"/>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *         <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointRequest_Type", propOrder = { - "vuNr", - "basisUrlEndpoint", - "artAuthentifizierung", - "credentials", - "authorizationFilter" -}) -public class DeclareEndpointRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "BasisUrlEndpoint", required = true) - protected String basisUrlEndpoint; - @XmlElement(name = "ArtAuthentifizierung", required = true) - protected String artAuthentifizierung; - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - @XmlElement(name = "AuthorizationFilter") - protected AuthorizationFilter authorizationFilter; - - /** - * 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 basisUrlEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBasisUrlEndpoint() { - return basisUrlEndpoint; - } - - /** - * Legt den Wert der basisUrlEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBasisUrlEndpoint(String value) { - this.basisUrlEndpoint = value; - } - - /** - * Ruft den Wert der artAuthentifizierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtAuthentifizierung() { - return artAuthentifizierung; - } - - /** - * Legt den Wert der artAuthentifizierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtAuthentifizierung(String value) { - this.artAuthentifizierung = value; - } - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - - /** - * Ruft den Wert der authorizationFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - public AuthorizationFilter getAuthorizationFilter() { - return authorizationFilter; - } - - /** - * Legt den Wert der authorizationFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - public void setAuthorizationFilter(AuthorizationFilter value) { - this.authorizationFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointResponseType.java deleted file mode 100644 index fafb1911..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareEndpointResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Response um als Makler der VU einen Endpoint bekannt zu geben - * - *

Java-Klasse für DeclareEndpointResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointResponse_Type", propOrder = { - "registrierteBasisUrlMaklerEndpoint", - "serviceFault" -}) -public class DeclareEndpointResponseType { - - @XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint") - protected String registrierteBasisUrlMaklerEndpoint; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrierteBasisUrlMaklerEndpoint() { - return registrierteBasisUrlMaklerEndpoint; - } - - /** - * Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrierteBasisUrlMaklerEndpoint(String value) { - this.registrierteBasisUrlMaklerEndpoint = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusRequestType.java deleted file mode 100644 index 80992871..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusRequestType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 des Request, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wird - * - *

Java-Klasse für DeclareNewClaimStatusRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="alt" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *         <element name="neu" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusRequest_Type", propOrder = { - "alt", - "neu" -}) -public class DeclareNewClaimStatusRequestType { - - @XmlElement(required = true) - protected SchadenStatusType alt; - @XmlElement(required = true) - protected SchadenStatusType neu; - - /** - * Ruft den Wert der alt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getAlt() { - return alt; - } - - /** - * Legt den Wert der alt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setAlt(SchadenStatusType value) { - this.alt = value; - } - - /** - * Ruft den Wert der neu-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getNeu() { - return neu; - } - - /** - * Legt den Wert der neu-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setNeu(SchadenStatusType value) { - this.neu = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusResponseType.java deleted file mode 100644 index 7998a512..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeclareNewClaimStatusResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wurde - * - *

Java-Klasse für DeclareNewClaimStatusResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusResponse_Type") -public class DeclareNewClaimStatusResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 93edffd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 9a3173cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index ede5972a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 1e4af725..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 1f59f2f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesInteresseType.java deleted file mode 100644 index d6c52867..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "geschInteresseLfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int geschInteresseLfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - */ - public int getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - */ - public void setGeschInteresseLfnr(int value) { - this.geschInteresseLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 651bd784..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektKfzType.java deleted file mode 100644 index db28682a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseLightType.java deleted file mode 100644 index dcfac01b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Leichtgewichtiges Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponseLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponseLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}SchadenereignisLight_Type" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponseLight_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseLightType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisLightType schadenereignis; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisLightType } - * - */ - public void setSchadenereignis(SchadenereignisLightType value) { - this.schadenereignis = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseType.java deleted file mode 100644 index 26b28570..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetClaimResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosRequestType.java deleted file mode 100644 index 944da5c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosRequestType.java +++ /dev/null @@ -1,255 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetDocumentInfosRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentInfosRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ELZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected int maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected int offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * 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 dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - public int getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - public void setMaxResults(int value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - public int getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - public void setOffset(int 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosResponseType.java deleted file mode 100644 index 77b7fc3c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetDocumentInfosResponseType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * ResponseTyp mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentInfosResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentInfosResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos" - }) - public static class Result { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getDokumentInfos().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index b13d29d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,178 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ELZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * 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 dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 2329756c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Typ für den Response einer Anzahl von Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/HttpActionLinkType.java deleted file mode 100644 index fbd503b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InformationenPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InformationenPersonType.java deleted file mode 100644 index 175fc653..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InformationenPersonType.java +++ /dev/null @@ -1,402 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Typ zur Übergabe personenbezogener Daten - * - *

Java-Klasse für InformationenPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InformationenPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InformationenPerson_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class InformationenPersonType { - - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String personennr; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimRequestType.java deleted file mode 100644 index 9203fc2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimRequestType.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 für die Durchführung einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimRequest_Type", propOrder = { - "vuNr", - "referenzIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "polizzennr", - "vertragsID", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "dokumente", - "schadenmelder" -}) -public class InitiateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzIdGeschaeftsfall") - protected String referenzIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzIdGeschaeftsfall() { - return referenzIdGeschaeftsfall; - } - - /** - * Legt den Wert der referenzIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzIdGeschaeftsfall(String value) { - this.referenzIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimResponseType.java deleted file mode 100644 index b6324162..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/InitiateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}MeldungszusammenfassungInitiateClaim_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class InitiateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungInitiateClaimType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungInitiateClaimType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LoginRequestType.java deleted file mode 100644 index 0df4e536..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListRequestType.java deleted file mode 100644 index f4f50d9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListRequestType.java +++ /dev/null @@ -1,234 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Schadens-Events zu erhalten - * - *

Java-Klasse für LossEventListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type"/>
- *         <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="Ereigniszeitpunkt"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "polizzennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class LossEventListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Polizzennr") - protected List polizzennr; - @XmlElement(name = "Zeitraum", required = true) - 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 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 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; - } - - /** - * Gets the value of the polizzennr property. - * - *

- * 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 set method for the polizzennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolizzennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getPolizzennr() { - if (polizzennr == null) { - polizzennr = new ArrayList(); - } - return this.polizzennr; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListResponseType.java deleted file mode 100644 index c14fa2c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventListResponseType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von Schadensevents für einen bestimmten Zeitraum - * - *

Java-Klasse für LossEventListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class LossEventListResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "lossEvents" - }) - public static class Result { - - @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; - @XmlElement(name = "LossEvents") - protected List lossEvents; - - /** - * 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; - } - - /** - * Gets the value of the lossEvents property. - * - *

- * 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 set method for the lossEvents property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getLossEvents().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LossEventType } - * - * - */ - public List getLossEvents() { - if (lossEvents == null) { - lossEvents = new ArrayList(); - } - return this.lossEvents; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventRegisteredResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventRegisteredResponseType.java deleted file mode 100644 index 5398881e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventRegisteredResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn der Eintritt eines Schadenereignisses kommuniziert wurde - * - *

Java-Klasse für LossEventRegisteredResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventRegisteredResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventRegisteredResponse_Type") -public class LossEventRegisteredResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventType.java deleted file mode 100644 index 7dd31ac8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/LossEventType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Objekttyp mit welchem der Eintritt eines Schadenereignisses kommuniziert wird - * - *

Java-Klasse für LossEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEvent_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "ereigniszpkt", - "ereignisbeschrTxt" -}) -public class LossEventType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungSchadenType.java deleted file mode 100644 index 5d56dfc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungSchadenType.java +++ /dev/null @@ -1,432 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Typ um ein Schadenobjekt in der Schadenmeldung abzubilden - * - *

Java-Klasse für MeldungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungSchaden_Type", propOrder = { - "schadenzuordnung", - "polizzennr", - "vertragsID", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class MeldungSchadenType { - - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungInitiateClaimType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungInitiateClaimType.java deleted file mode 100644 index 4b0b189e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungInitiateClaimType.java +++ /dev/null @@ -1,437 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für MeldungszusammenfassungInitiateClaim_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungszusammenfassungInitiateClaim_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungszusammenfassungInitiateClaim_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "schaeden" -}) -public class MeldungszusammenfassungInitiateClaimType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr", required = true) - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungType.java deleted file mode 100644 index 53c3863e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/MeldungszusammenfassungType.java +++ /dev/null @@ -1,630 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für Meldungszusammenfassung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Meldungszusammenfassung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ErgebnisSchaeden" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *                   <choice>
- *                     <element name="Schadenanlage">
- *                       <complexType>
- *                         <complexContent>
- *                           <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                             <sequence>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *                               <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                               <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                               <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                             </sequence>
- *                           </restriction>
- *                         </complexContent>
- *                       </complexType>
- *                     </element>
- *                     <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Meldungszusammenfassung_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "ergebnisSchaeden" -}) -public class MeldungszusammenfassungType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "ErgebnisSchaeden", required = true) - protected List ergebnisSchaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the ergebnisSchaeden property. - * - *

- * 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 set method for the ergebnisSchaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisSchaeden } - * - * - */ - public List getErgebnisSchaeden() { - if (ergebnisSchaeden == null) { - ergebnisSchaeden = new ArrayList(); - } - return this.ergebnisSchaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
-     *         <choice>
-     *           <element name="Schadenanlage">
-     *             <complexType>
-     *               <complexContent>
-     *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *                   <sequence>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-     *                     <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *                     <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *                     <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *                   </sequence>
-     *                 </restriction>
-     *               </complexContent>
-     *             </complexType>
-     *           </element>
-     *           <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "schadenanlage", - "fehlerSchadenanlage" - }) - public static class ErgebnisSchaeden { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Schadenanlage") - protected Schadenanlage schadenanlage; - @XmlElement(name = "FehlerSchadenanlage") - protected ServiceFault fehlerSchadenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der schadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link Schadenanlage } - * - */ - public Schadenanlage getSchadenanlage() { - return schadenanlage; - } - - /** - * Legt den Wert der schadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Schadenanlage } - * - */ - public void setSchadenanlage(Schadenanlage value) { - this.schadenanlage = value; - } - - /** - * Ruft den Wert der fehlerSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerSchadenanlage() { - return fehlerSchadenanlage; - } - - /** - * Legt den Wert der fehlerSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerSchadenanlage(ServiceFault value) { - this.fehlerSchadenanlage = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-         * <complexType>
-         *   <complexContent>
-         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-         *       <sequence>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-         *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-         *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-         *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-         *       </sequence>
-         *     </restriction>
-         *   </complexContent>
-         * </complexType>
-         * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "schadenzuordnung", - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schadenanlage { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index b0983767..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_9.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_9.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 2f806394..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 1ada9e1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index cbb3d61e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,126 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 563b2e73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjectFactory.java deleted file mode 100644 index 57300a6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,1307 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_1_1.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - private final static QName _CreateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimRequest"); - private final static QName _InformationenPerson_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InformationenPerson"); - private final static QName _CreateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimResponse"); - private final static QName _InitiateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimRequest"); - private final static QName _InitiateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimResponse"); - private final static QName _AddDocToClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimRequest"); - private final static QName _AddDocToClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimResponse"); - private final static QName _GetClaimLightRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightRequest"); - private final static QName _GetClaimLightResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosRequest"); - private final static QName _GetDocumentInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimResponse"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "Schadenzuordnung"); - private final static QName _ChangedClaimsListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListRequest"); - private final static QName _ChangedClaimsListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListResponse"); - private final static QName _LossEventListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListRequest"); - private final static QName _LossEventListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListResponse"); - private final static QName _IdGeschaeftsfallSchadenereignis_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenereignis"); - private final static QName _IdGeschaeftsfallSchadenanlage_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenanlage"); - private final static QName _DeclareEndpointRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointRequest"); - private final static QName _ArtAuthentifizierung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ArtAuthentifizierung"); - private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointResponse"); - private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenRequest"); - private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenResponse"); - private final static QName _DeclareNewClaimStatusRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusRequest"); - private final static QName _DeclareNewClaimStatusResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusResponse"); - private final static QName _LossEventRegisteredRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredRequest"); - private final static QName _LossEventRegisteredResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_1_1.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SchadenStatusType } - * - */ - public SchadenStatusType createSchadenStatusType() { - return new SchadenStatusType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType createMeldungszusammenfassungInitiateClaimType() { - return new MeldungszusammenfassungInitiateClaimType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType createMeldungszusammenfassungType() { - return new MeldungszusammenfassungType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden createMeldungszusammenfassungTypeErgebnisSchaeden() { - return new MeldungszusammenfassungType.ErgebnisSchaeden(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link MeldungSchadenType } - * - */ - public MeldungSchadenType createMeldungSchadenType() { - return new MeldungSchadenType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType } - * - */ - public LossEventListResponseType createLossEventListResponseType() { - return new LossEventListResponseType(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType } - * - */ - public ChangedClaimsListResponseType createChangedClaimsListResponseType() { - return new ChangedClaimsListResponseType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType } - * - */ - public GetDocumentInfosResponseType createGetDocumentInfosResponseType() { - return new GetDocumentInfosResponseType(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link CreateClaimRequestType } - * - */ - public CreateClaimRequestType createCreateClaimRequestType() { - return new CreateClaimRequestType(); - } - - /** - * Create an instance of {@link InformationenPersonType } - * - */ - public InformationenPersonType createInformationenPersonType() { - return new InformationenPersonType(); - } - - /** - * Create an instance of {@link CreateClaimResponseType } - * - */ - public CreateClaimResponseType createCreateClaimResponseType() { - return new CreateClaimResponseType(); - } - - /** - * Create an instance of {@link InitiateClaimRequestType } - * - */ - public InitiateClaimRequestType createInitiateClaimRequestType() { - return new InitiateClaimRequestType(); - } - - /** - * Create an instance of {@link InitiateClaimResponseType } - * - */ - public InitiateClaimResponseType createInitiateClaimResponseType() { - return new InitiateClaimResponseType(); - } - - /** - * Create an instance of {@link AddDocToClaimRequestType } - * - */ - public AddDocToClaimRequestType createAddDocToClaimRequestType() { - return new AddDocToClaimRequestType(); - } - - /** - * Create an instance of {@link AddDocToClaimResponseType } - * - */ - public AddDocToClaimResponseType createAddDocToClaimResponseType() { - return new AddDocToClaimResponseType(); - } - - /** - * Create an instance of {@link SpezifikationSchadenType } - * - */ - public SpezifikationSchadenType createSpezifikationSchadenType() { - return new SpezifikationSchadenType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimResponseLightType } - * - */ - public GetClaimResponseLightType createGetClaimResponseLightType() { - return new GetClaimResponseLightType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosRequestType } - * - */ - public GetDocumentInfosRequestType createGetDocumentInfosRequestType() { - return new GetDocumentInfosRequestType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link ChangedClaimsListRequestType } - * - */ - public ChangedClaimsListRequestType createChangedClaimsListRequestType() { - return new ChangedClaimsListRequestType(); - } - - /** - * Create an instance of {@link LossEventListRequestType } - * - */ - public LossEventListRequestType createLossEventListRequestType() { - return new LossEventListRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointRequestType } - * - */ - public DeclareEndpointRequestType createDeclareEndpointRequestType() { - return new DeclareEndpointRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointResponseType } - * - */ - public DeclareEndpointResponseType createDeclareEndpointResponseType() { - return new DeclareEndpointResponseType(); - } - - /** - * Create an instance of {@link SecurityContextTokenRequestType } - * - */ - public SecurityContextTokenRequestType createSecurityContextTokenRequestType() { - return new SecurityContextTokenRequestType(); - } - - /** - * Create an instance of {@link SecurityContextTokenResponseType } - * - */ - public SecurityContextTokenResponseType createSecurityContextTokenResponseType() { - return new SecurityContextTokenResponseType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusRequestType } - * - */ - public DeclareNewClaimStatusRequestType createDeclareNewClaimStatusRequestType() { - return new DeclareNewClaimStatusRequestType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusResponseType } - * - */ - public DeclareNewClaimStatusResponseType createDeclareNewClaimStatusResponseType() { - return new DeclareNewClaimStatusResponseType(); - } - - /** - * Create an instance of {@link LossEventType } - * - */ - public LossEventType createLossEventType() { - return new LossEventType(); - } - - /** - * Create an instance of {@link LossEventRegisteredResponseType } - * - */ - public LossEventRegisteredResponseType createLossEventRegisteredResponseType() { - return new LossEventRegisteredResponseType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderType } - * - */ - public SchadenmelderType createSchadenmelderType() { - return new SchadenmelderType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link UsernamePasswordCredentialsType } - * - */ - public UsernamePasswordCredentialsType createUsernamePasswordCredentialsType() { - return new UsernamePasswordCredentialsType(); - } - - /** - * Create an instance of {@link SchadenStatusType.Schaeden } - * - */ - public SchadenStatusType.Schaeden createSchadenStatusTypeSchaeden() { - return new SchadenStatusType.Schaeden(); - } - - /** - * Create an instance of {@link SachbearbVUType.Person } - * - */ - public SachbearbVUType.Person createSachbearbVUTypePerson() { - return new SachbearbVUType.Person(); - } - - /** - * Create an instance of {@link SchadenereignisType.BeteiligtePersonen } - * - */ - public SchadenereignisType.BeteiligtePersonen createSchadenereignisTypeBeteiligtePersonen() { - return new SchadenereignisType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente createMeldungszusammenfassungInitiateClaimTypeErgebnisDokumente() { - return new MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.Schaeden } - * - */ - public MeldungszusammenfassungInitiateClaimType.Schaeden createMeldungszusammenfassungInitiateClaimTypeSchaeden() { - return new MeldungszusammenfassungInitiateClaimType.Schaeden(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungType.ErgebnisDokumente createMeldungszusammenfassungTypeErgebnisDokumente() { - return new MeldungszusammenfassungType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage createMeldungszusammenfassungTypeErgebnisSchaedenSchadenanlage() { - return new MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage(); - } - - /** - * Create an instance of {@link SchadenType.Schadenbeteiligte } - * - */ - public SchadenType.Schadenbeteiligte createSchadenTypeSchadenbeteiligte() { - return new SchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link MeldungSchadenType.Schadenbeteiligte } - * - */ - public MeldungSchadenType.Schadenbeteiligte createMeldungSchadenTypeSchadenbeteiligte() { - return new MeldungSchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link OrtType.Geokoordinaten } - * - */ - public OrtType.Geokoordinaten createOrtTypeGeokoordinaten() { - return new OrtType.Geokoordinaten(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType.Result } - * - */ - public LossEventListResponseType.Result createLossEventListResponseTypeResult() { - return new LossEventListResponseType.Result(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType.Result } - * - */ - public ChangedClaimsListResponseType.Result createChangedClaimsListResponseTypeResult() { - return new ChangedClaimsListResponseType.Result(); - } - - /** - * Create an instance of {@link SearchClaimResponseType.Result } - * - */ - public SearchClaimResponseType.Result createSearchClaimResponseTypeResult() { - return new SearchClaimResponseType.Result(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType.Result } - * - */ - public GetDocumentInfosResponseType.Result createGetDocumentInfosResponseTypeResult() { - return new GetDocumentInfosResponseType.Result(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimRequest") - public JAXBElement createCreateClaimRequest(CreateClaimRequestType value) { - return new JAXBElement(_CreateClaimRequest_QNAME, CreateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InformationenPersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InformationenPerson") - public JAXBElement createInformationenPerson(InformationenPersonType value) { - return new JAXBElement(_InformationenPerson_QNAME, InformationenPersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimResponse") - public JAXBElement createCreateClaimResponse(CreateClaimResponseType value) { - return new JAXBElement(_CreateClaimResponse_QNAME, CreateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimRequest") - public JAXBElement createInitiateClaimRequest(InitiateClaimRequestType value) { - return new JAXBElement(_InitiateClaimRequest_QNAME, InitiateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimResponse") - public JAXBElement createInitiateClaimResponse(InitiateClaimResponseType value) { - return new JAXBElement(_InitiateClaimResponse_QNAME, InitiateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimRequest") - public JAXBElement createAddDocToClaimRequest(AddDocToClaimRequestType value) { - return new JAXBElement(_AddDocToClaimRequest_QNAME, AddDocToClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimResponse") - public JAXBElement createAddDocToClaimResponse(AddDocToClaimResponseType value) { - return new JAXBElement(_AddDocToClaimResponse_QNAME, AddDocToClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightRequest") - public JAXBElement createGetClaimLightRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimLightRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseLightType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightResponse") - public JAXBElement createGetClaimLightResponse(GetClaimResponseLightType value) { - return new JAXBElement(_GetClaimLightResponse_QNAME, GetClaimResponseLightType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosRequest") - public JAXBElement createGetDocumentInfosRequest(GetDocumentInfosRequestType value) { - return new JAXBElement(_GetDocumentInfosRequest_QNAME, GetDocumentInfosRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosResponse") - public JAXBElement createGetDocumentInfosResponse(GetDocumentInfosResponseType value) { - return new JAXBElement(_GetDocumentInfosResponse_QNAME, GetDocumentInfosResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListRequest") - public JAXBElement createChangedClaimsListRequest(ChangedClaimsListRequestType value) { - return new JAXBElement(_ChangedClaimsListRequest_QNAME, ChangedClaimsListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListResponse") - public JAXBElement createChangedClaimsListResponse(ChangedClaimsListResponseType value) { - return new JAXBElement(_ChangedClaimsListResponse_QNAME, ChangedClaimsListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListRequest") - public JAXBElement createLossEventListRequest(LossEventListRequestType value) { - return new JAXBElement(_LossEventListRequest_QNAME, LossEventListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListResponse") - public JAXBElement createLossEventListResponse(LossEventListResponseType value) { - return new JAXBElement(_LossEventListResponse_QNAME, LossEventListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenereignis") - public JAXBElement createIdGeschaeftsfallSchadenereignis(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenereignis_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenanlage") - public JAXBElement createIdGeschaeftsfallSchadenanlage(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenanlage_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointRequest") - public JAXBElement createDeclareEndpointRequest(DeclareEndpointRequestType value) { - return new JAXBElement(_DeclareEndpointRequest_QNAME, DeclareEndpointRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ArtAuthentifizierung") - public JAXBElement createArtAuthentifizierung(String value) { - return new JAXBElement(_ArtAuthentifizierung_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointResponse") - public JAXBElement createDeclareEndpointResponse(DeclareEndpointResponseType value) { - return new JAXBElement(_DeclareEndpointResponse_QNAME, DeclareEndpointResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenRequest") - public JAXBElement createSecurityContextTokenRequest(SecurityContextTokenRequestType value) { - return new JAXBElement(_SecurityContextTokenRequest_QNAME, SecurityContextTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenResponse") - public JAXBElement createSecurityContextTokenResponse(SecurityContextTokenResponseType value) { - return new JAXBElement(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusRequest") - public JAXBElement createDeclareNewClaimStatusRequest(DeclareNewClaimStatusRequestType value) { - return new JAXBElement(_DeclareNewClaimStatusRequest_QNAME, DeclareNewClaimStatusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusResponse") - public JAXBElement createDeclareNewClaimStatusResponse(DeclareNewClaimStatusResponseType value) { - return new JAXBElement(_DeclareNewClaimStatusResponse_QNAME, DeclareNewClaimStatusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredRequest") - public JAXBElement createLossEventRegisteredRequest(LossEventType value) { - return new JAXBElement(_LossEventRegisteredRequest_QNAME, LossEventType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventRegisteredResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredResponse") - public JAXBElement createLossEventRegisteredResponse(LossEventRegisteredResponseType value) { - return new JAXBElement(_LossEventRegisteredResponse_QNAME, LossEventRegisteredResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjektSpezifikationType.java deleted file mode 100644 index 980c18bc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/ObjektSpezifikationType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - SchadenObjektSpezifikationType.class, - PolizzenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OrtType.java deleted file mode 100644 index bd224b64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/OrtType.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *                 <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected Geokoordinaten geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Geokoordinaten } - * - */ - public Geokoordinaten getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Geokoordinaten } - * - */ - public void setGeokoordinaten(Geokoordinaten value) { - this.geokoordinaten = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Geokoordinaten { - - @XmlAttribute(name = "Breite", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 089c256b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 872af81f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 031b0f4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,227 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OmdsPackage } - * - */ - public OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OmdsPackage } - * - */ - public void setOmdsPackage(OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - protected byte[] content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SachbearbVUType.java deleted file mode 100644 index 56902d1c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SachbearbVUType.java +++ /dev/null @@ -1,219 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected Person person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link Person } - * - */ - public Person getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Person } - * - */ - public void setPerson(Person value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Person { - - @XmlAttribute(name = "Familienname", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:omds3ServiceTypes-1-1-0") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenLightType.java deleted file mode 100644 index f65afdc2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenLightType.java +++ /dev/null @@ -1,450 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "schadenzuordnung", - "polizzennr", - "vertragsID", - "spartenCd", - "spartenerweiterung", - "schadUrsCd", - "schadUrsTxt", - "erledDat" -}) -public class SchadenLightType { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected String vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected List nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der vormaligeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeSchadennr() { - return vormaligeSchadennr; - } - - /** - * Legt den Wert der vormaligeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeSchadennr(String value) { - this.vormaligeSchadennr = value; - } - - /** - * Gets the value of the nachfolgendeSchadennr property. - * - *

- * 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 set method for the nachfolgendeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNachfolgendeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getNachfolgendeSchadennr() { - if (nachfolgendeSchadennr == null) { - nachfolgendeSchadennr = new ArrayList(); - } - return this.nachfolgendeSchadennr; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenObjektSpezifikationType.java deleted file mode 100644 index ad6b8478..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenStatusType.java deleted file mode 100644 index 60d975cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenStatusType.java +++ /dev/null @@ -1,341 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für SchadenStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenStatus_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "schaeden" -}) -public class SchadenStatusType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "bearbStandCd", - "schadennr", - "schadenzuordnung", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenType.java deleted file mode 100644 index 12d6d751..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenType.java +++ /dev/null @@ -1,916 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; -import at.vvo.omds.types.omds2Types.v2_9.ZAHLUNGType; - - -/** - * Typ um ein Schadenobjekt in der Schadendarstellung abzubilden - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="IdGeschaeftsfallSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                   <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Schadensreserve" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "vuNr", - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "polizzennr", - "vertragsID", - "sachbearbVU", - "ordnungsbegriffZuordFremd", - "schadenzuordnung", - "schadUrsCd", - "schadUrsTxt", - "erledDat", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "schadensreserve", - "spartenCd", - "spartenerweiterung", - "waehrungsCd", - "spartendetails", - "dokumente" -}) -public class SchadenType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "Schadensreserve") - protected BigDecimal schadensreserve; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * 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 bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der schadensreserve-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSchadensreserve() { - return schadensreserve; - } - - /** - * Legt den Wert der schadensreserve-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSchadensreserve(BigDecimal value) { - this.schadensreserve = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr", - "zahlung" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlElement(name = "ZAHLUNG", namespace = "urn:omds20") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZAHLUNG().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisLightType.java deleted file mode 100644 index d354b941..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisLightType.java +++ /dev/null @@ -1,252 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}SchadenLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "schaeden", - "meldedat" -}) -public class SchadenereignisLightType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected List vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Gets the value of the vormaligeIdGeschaeftsfall property. - * - *

- * 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 set method for the vormaligeIdGeschaeftsfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeIdGeschaeftsfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeIdGeschaeftsfall() { - if (vormaligeIdGeschaeftsfall == null) { - vormaligeIdGeschaeftsfall = new ArrayList(); - } - return this.vormaligeIdGeschaeftsfall; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisType.java deleted file mode 100644 index 4b3abb0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenereignisType.java +++ /dev/null @@ -1,657 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Objekttyp für die Darstellungen von Schadenereignissen - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="EreignisZpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Person" type="{urn:omds20}PERSON_Type"/>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}Schaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "ereignisZpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "meldedat", - "schadenmelder" -}) -public class SchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected String vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "EreignisZpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereignisZpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der vormaligeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeIdGeschaeftsfall() { - return vormaligeIdGeschaeftsfall; - } - - /** - * Legt den Wert der vormaligeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeIdGeschaeftsfall(String value) { - this.vormaligeIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der ereignisZpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreignisZpkt() { - return ereignisZpkt; - } - - /** - * Legt den Wert der ereignisZpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreignisZpkt(XMLGregorianCalendar value) { - this.ereignisZpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Person" type="{urn:omds20}PERSON_Type"/>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "person", - "geschInteresseLfnr" - }) - public static class BeteiligtePersonen { - - @XmlElement(name = "Person", required = true) - protected PERSONType person; - @XmlElement(name = "GeschInteresseLfnr") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * 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; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetLfnr(String value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderType.java deleted file mode 100644 index e4a11c73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderVermittlerType.java deleted file mode 100644 index c2d8199d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenzuordnungType.java deleted file mode 100644 index bbe1ba48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimRequestType.java deleted file mode 100644 index 88d636f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimRequestType.java +++ /dev/null @@ -1,283 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" 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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimResponseType.java deleted file mode 100644 index 26847f20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SearchClaimResponseType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_1_1.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" - }) - public static class Result { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getSchadenereignisse().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenRequestType.java deleted file mode 100644 index 4b091d76..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Request-Type zum Bezug eines Security-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = { - "credentials" -}) -public class SecurityContextTokenRequestType { - - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenResponseType.java deleted file mode 100644 index e8364016..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SecurityContextTokenResponseType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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; - - -/** - * Response-Type zum Bezug eines Securtity-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = { - "token", - "dauerhaftGueltig", - "gueltigBis" -}) -public class SecurityContextTokenResponseType { - - @XmlElement(name = "Token", required = true) - protected String token; - @XmlElement(name = "DauerhaftGueltig") - protected boolean dauerhaftGueltig; - @XmlElement(name = "GueltigBis") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der token-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Legt den Wert der token-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Ruft den Wert der dauerhaftGueltig-Eigenschaft ab. - * - */ - public boolean isDauerhaftGueltig() { - return dauerhaftGueltig; - } - - /** - * Legt den Wert der dauerhaftGueltig-Eigenschaft fest. - * - */ - public void setDauerhaftGueltig(boolean value) { - this.dauerhaftGueltig = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenKfzType.java deleted file mode 100644 index edcdadd0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine spezielle Spartenerweiterung der Schadenmeldung für Kfz. - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenType.java deleted file mode 100644 index 98b17368..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpartendetailSchadenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpezifikationSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpezifikationSchadenType.java deleted file mode 100644 index e9b3da75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/SpezifikationSchadenType.java +++ /dev/null @@ -1,180 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_1_1.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für SpezifikationSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezifikationSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezifikationSchaden_Type", propOrder = { - "vuNr", - "authFilter", - "idGeschaeftsfallSchadenereignis", - "idGeschaeftsfallSchadenanlage", - "schadennr" -}) -public class SpezifikationSchadenType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage") - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UploadDokumentType.java deleted file mode 100644 index bad2878d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UploadDokumentType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -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 fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - protected byte[] content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataRequest.java deleted file mode 100644 index e41d2b24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataResponse.java deleted file mode 100644 index 45e69836..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link AvailableServices } - * - */ - public AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AvailableServices } - * - */ - public void setAvailableServices(AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UsernamePasswordCredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UsernamePasswordCredentialsType.java deleted file mode 100644 index 7de2fba0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/UsernamePasswordCredentialsType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Konkrete Implementierung von Credentials mit Username und Password - * - *

Java-Klasse für UsernamePasswordCredentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UsernamePasswordCredentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsernamePasswordCredentials_Type") -public class UsernamePasswordCredentialsType { - - @XmlAttribute(name = "Username", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String username; - @XmlAttribute(name = "Password", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String password; - - /** - * Ruft den Wert der username-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Legt den Wert der username-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Ruft den Wert der password-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Legt den Wert der password-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/package-info.java deleted file mode 100644 index 3c739984..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_1_1/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_1_1.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/BrokerServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/BrokerServiceFaultMsg.java deleted file mode 100644 index 83ce36a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/BrokerServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:15:48.838+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class BrokerServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public BrokerServiceFaultMsg() { - super(); - } - - public BrokerServiceFaultMsg(String message) { - super(message); - } - - public BrokerServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public BrokerServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public BrokerServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerService.java deleted file mode 100644 index 0c317985..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_2_0.brokerservice; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:15:48.878+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsBrokerService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3ServicesBroker.wsdl", - targetNamespace = "urn:omds3ServicesBroker-1-1-0") -public class OmdsBrokerService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerService"); - public final static QName OmdsBrokerServicePort = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3ServicesBroker.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsBrokerService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3ServicesBroker.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsBrokerService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsBrokerService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsBrokerService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsBrokerService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsBrokerService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsBrokerService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsBrokerServicePortType - */ - @WebEndpoint(name = "omdsBrokerServicePort") - public OmdsBrokerServicePortType getOmdsBrokerServicePort() { - return super.getPort(OmdsBrokerServicePort, OmdsBrokerServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsBrokerServicePortType - */ - @WebEndpoint(name = "omdsBrokerServicePort") - public OmdsBrokerServicePortType getOmdsBrokerServicePort(WebServiceFeature... features) { - return super.getPort(OmdsBrokerServicePort, OmdsBrokerServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortImpl.java deleted file mode 100644 index c6841da5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortImpl.java +++ /dev/null @@ -1,72 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_2_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventType; - -import java.util.logging.Logger; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:15:48.850+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsBrokerService", - portName = "omdsBrokerServicePort", - targetNamespace = "urn:omds3ServicesBroker-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3ServicesBroker.wsdl", - endpointInterface = "at.vvo.omds.types.omds3types.v1_2_0.brokerservice.OmdsBrokerServicePortType") - -public class OmdsBrokerServicePortImpl implements OmdsBrokerServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsBrokerServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.brokerservice.OmdsBrokerServicePortType#lossEventRegistered(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.LossEventType parameters)* - */ - public LossEventRegisteredResponseType lossEventRegistered(LossEventType parameters) throws BrokerServiceFaultMsg { - LOG.info("Executing operation lossEventRegistered"); - System.out.println(parameters); - try { - LossEventRegisteredResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new BrokerServiceFaultMsg("BrokerServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.brokerservice.OmdsBrokerServicePortType#declareNewClaimStatus(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeclareNewClaimStatusRequestType parameters)* - */ - public DeclareNewClaimStatusResponseType declareNewClaimStatus(DeclareNewClaimStatusRequestType parameters) throws BrokerServiceFaultMsg { - LOG.info("Executing operation declareNewClaimStatus"); - System.out.println(parameters); - try { - DeclareNewClaimStatusResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new BrokerServiceFaultMsg("BrokerServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType.java deleted file mode 100644 index fb5f1805..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType.java +++ /dev/null @@ -1,40 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_2_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ObjectFactory; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventType; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:15:48.868+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3ServicesBroker-1-1-0", name = "omdsBrokerServicePortType") -@XmlSeeAlso({ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsBrokerServicePortType { - - @WebMethod(action = "urn:lossEventRegistered") - @WebResult(name = "LossEventRegisteredResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventRegisteredResponseType lossEventRegistered( - @WebParam(partName = "parameters", name = "LossEventRegisteredRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventType parameters - ) throws BrokerServiceFaultMsg; - - @WebMethod(action = "urn:declareNewClaimStatus") - @WebResult(name = "DeclareNewClaimStatusResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareNewClaimStatusResponseType declareNewClaimStatus( - @WebParam(partName = "parameters", name = "DeclareNewClaimStatusRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareNewClaimStatusRequestType parameters - ) throws BrokerServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java deleted file mode 100644 index fcc61fb8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/brokerservice/OmdsBrokerServicePortType_OmdsBrokerServicePort_Client.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.brokerservice; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.LossEventType; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:15:48.778+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsBrokerServicePortType_OmdsBrokerServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3ServicesBroker-1-1-0", "omdsBrokerService"); - - private OmdsBrokerServicePortType_OmdsBrokerServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsBrokerService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsBrokerService ss = new OmdsBrokerService(wsdlURL, SERVICE_NAME); - OmdsBrokerServicePortType port = ss.getOmdsBrokerServicePort(); - - { - System.out.println("Invoking lossEventRegistered..."); - LossEventType _lossEventRegistered_parameters = null; - try { - LossEventRegisteredResponseType _lossEventRegistered__return = port.lossEventRegistered(_lossEventRegistered_parameters); - System.out.println("lossEventRegistered.result=" + _lossEventRegistered__return); - - } catch (BrokerServiceFaultMsg e) { - System.out.println("Expected exception: BrokerServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareNewClaimStatus..."); - DeclareNewClaimStatusRequestType _declareNewClaimStatus_parameters = null; - try { - DeclareNewClaimStatusResponseType _declareNewClaimStatus__return = port.declareNewClaimStatus(_declareNewClaimStatus_parameters); - System.out.println("declareNewClaimStatus.result=" + _declareNewClaimStatus__return); - - } catch (BrokerServiceFaultMsg e) { - System.out.println("Expected exception: BrokerServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AgentFilterType.java deleted file mode 100644 index 9e37e59d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AuthorizationFilter.java deleted file mode 100644 index eaeac9a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ElementIdType.java deleted file mode 100644 index a83f97a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementIdType", propOrder = { - "id", - "idValidUntil", - "idIsSingleUse" -}) -public class ElementIdType { - - @XmlElement(required = true) - protected String id; - @XmlElement(required = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/OMDSVersionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/OMDSVersionType.java deleted file mode 100644 index 8b8803f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/OMDSVersionType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für OMDSVersion_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="OMDSVersion_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <maxLength value="20"/>
- *     <enumeration value="OMDS-Services 1.0.0"/>
- *     <enumeration value="OMDS-Services 1.1.0"/>
- *     <enumeration value="OMDS-Services 1.1.1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "OMDSVersion_Type") -@XmlEnum -public enum OMDSVersionType { - - @XmlEnumValue("OMDS-Services 1.0.0") - OMDS_SERVICES_1_0_0("OMDS-Services 1.0.0"), - @XmlEnumValue("OMDS-Services 1.1.0") - OMDS_SERVICES_1_1_0("OMDS-Services 1.1.0"), - @XmlEnumValue("OMDS-Services 1.1.1") - OMDS_SERVICES_1_1_1("OMDS-Services 1.1.1"); - private final String value; - - OMDSVersionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static OMDSVersionType fromValue(String v) { - for (OMDSVersionType c: OMDSVersionType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ObjectFactory.java deleted file mode 100644 index 02971b36..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ObjectFactory.java +++ /dev/null @@ -1,89 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_2_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _GeschaeftsfallId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "GeschaeftsfallId"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_2_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "GeschaeftsfallId") - public JAXBElement createGeschaeftsfallId(String value) { - return new JAXBElement(_GeschaeftsfallId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/PartnerRoleType.java deleted file mode 100644 index ec758b7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ServiceFault.java deleted file mode 100644 index 5f11f68b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/ServiceFault.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/package-info.java deleted file mode 100644 index 7e70ce54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_2_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsService.java deleted file mode 100644 index 91f49bc5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_2_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:18:07.720+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-1-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-1-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-1-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 396c6553..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,373 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_2_0.service; - -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.*; - -import java.util.logging.Logger; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:18:07.652+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-2-0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType") - -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#initiateClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.InitiateClaimRequestType parameters)* - */ - public InitiateClaimResponseType initiateClaim(InitiateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation initiateClaim"); - System.out.println(parameters); - try { - InitiateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.UserDataRequest parameters)* - */ - public UserDataResponse getUserData(UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - UserDataResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.ChangedClaimsListRequestType parameters)* - */ - public ChangedClaimsListResponseType getChangedClaimsList(ChangedClaimsListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getChangedClaimsList"); - System.out.println(parameters); - try { - ChangedClaimsListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.SearchClaimRequestType parameters)* - */ - public SearchClaimResponseType searchClaim(SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - SearchClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPolicy(DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getDocumentInfos(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.GetDocumentInfosRequestType parameters)* - */ - public GetDocumentInfosResponseType getDocumentInfos(GetDocumentInfosRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentInfos"); - System.out.println(parameters); - try { - GetDocumentInfosResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPartner(DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#addDocToClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.AddDocToClaimRequestType parameters)* - */ - public AddDocToClaimResponseType addDocToClaim(AddDocToClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToClaim"); - System.out.println(parameters); - try { - AddDocToClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseLightType getClaimLight(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaimLight"); - System.out.println(parameters); - try { - GetClaimResponseLightType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public OMDSPackageListResponse getOMDSPackageList(OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - OMDSPackageListResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public ArcImageInfosResponse getArcImageInfos(ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - ArcImageInfosResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.LossEventListRequestType parameters)* - */ - public LossEventListResponseType getLossEventList(LossEventListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getLossEventList"); - System.out.println(parameters); - try { - LossEventListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#declareEndpoint(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeclareEndpointRequestType parameters)* - */ - public DeclareEndpointResponseType declareEndpoint(DeclareEndpointRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation declareEndpoint"); - System.out.println(parameters); - try { - DeclareEndpointResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.LoginRequestType parameters)* - */ - public DeepLinkBusinessObjectResponse login(LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkOffer(DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.OMDSPackageRequest parameters)* - */ - public OMDSPackageResponse getOMDSPackage(OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - OMDSPackageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.GetNumberOfDocumentsRequestType parameters)* - */ - public GetNumberOfDocumentsResponseType getNumberOfDocuments(GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.CreateClaimRequestType parameters)* - */ - public CreateClaimResponseType createClaim(CreateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createClaim"); - System.out.println(parameters); - try { - CreateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.ArcImageRequest parameters)* - */ - public ArcImageResponse getArcImage(ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - ArcImageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkClaim(DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_2_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.v1_2_0.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseType getClaim(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - GetClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType.java deleted file mode 100644 index 3e981eef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,169 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_2_0.service; - -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.*; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:18:07.690+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-1-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_2_0.common.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class, ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:initiateClaim") - @WebResult(name = "InitiateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public InitiateClaimResponseType initiateClaim( - @WebParam(partName = "parameters", name = "InitiateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - InitiateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getChangedClaimsList") - @WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ChangedClaimsListResponseType getChangedClaimsList( - @WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ChangedClaimsListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public SearchClaimResponseType searchClaim( - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentInfos") - @WebResult(name = "GetDocumentInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetDocumentInfosResponseType getDocumentInfos( - @WebParam(partName = "parameters", name = "GetDocumentInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetDocumentInfosRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToClaim") - @WebResult(name = "AddDocToClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public AddDocToClaimResponseType addDocToClaim( - @WebParam(partName = "parameters", name = "AddDocToClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - AddDocToClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaimLight") - @WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseLightType getClaimLight( - @WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getLossEventList") - @WebResult(name = "LossEventListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventListResponseType getLossEventList( - @WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:declareEndpoint") - @WebResult(name = "DeclareEndpointResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareEndpointResponseType declareEndpoint( - @WebParam(partName = "parameters", name = "DeclareEndpointRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareEndpointRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createClaim") - @WebResult(name = "CreateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public CreateClaimResponseType createClaim( - @WebParam(partName = "parameters", name = "CreateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - CreateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseType getClaim( - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index d189df13..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,303 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_2_0.servicetypes.*; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:18:07.559+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-1-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking initiateClaim..."); - InitiateClaimRequestType _initiateClaim_parameters = null; - try { - InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters); - System.out.println("initiateClaim.result=" + _initiateClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - UserDataRequest _getUserData_parameters = null; - try { - UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getChangedClaimsList..."); - ChangedClaimsListRequestType _getChangedClaimsList_parameters = null; - try { - ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters); - System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking searchClaim..."); - SearchClaimRequestType _searchClaim_parameters = null; - try { - SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentInfos..."); - GetDocumentInfosRequestType _getDocumentInfos_parameters = null; - try { - GetDocumentInfosResponseType _getDocumentInfos__return = port.getDocumentInfos(_getDocumentInfos_parameters); - System.out.println("getDocumentInfos.result=" + _getDocumentInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToClaim..."); - AddDocToClaimRequestType _addDocToClaim_parameters = null; - try { - AddDocToClaimResponseType _addDocToClaim__return = port.addDocToClaim(_addDocToClaim_parameters); - System.out.println("addDocToClaim.result=" + _addDocToClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaimLight..."); - SpezifikationSchadenType _getClaimLight_parameters = null; - try { - GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters); - System.out.println("getClaimLight.result=" + _getClaimLight__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackageList..."); - OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getLossEventList..."); - LossEventListRequestType _getLossEventList_parameters = null; - try { - LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters); - System.out.println("getLossEventList.result=" + _getLossEventList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareEndpoint..."); - DeclareEndpointRequestType _declareEndpoint_parameters = null; - try { - DeclareEndpointResponseType _declareEndpoint__return = port.declareEndpoint(_declareEndpoint_parameters); - System.out.println("declareEndpoint.result=" + _declareEndpoint__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - LoginRequestType _login_parameters = null; - try { - DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createClaim..."); - CreateClaimRequestType _createClaim_parameters = null; - try { - CreateClaimResponseType _createClaim__return = port.createClaim(_createClaim_parameters); - System.out.println("createClaim.result=" + _createClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - ArcImageRequest _getArcImage_parameters = null; - try { - ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaim..."); - SpezifikationSchadenType _getClaim_parameters = null; - try { - GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/ServiceFaultMsg.java deleted file mode 100644 index 5a10f87e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.service; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:18:07.639+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimRequestType.java deleted file mode 100644 index 1cfca860..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimRequestType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 des Requestobjekts, um Dokument zu Schaden hinzuzufügen - * - *

Java-Klasse für AddDocToClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *         <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimRequest_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "schadennr", - "dokument" -}) -public class AddDocToClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimResponseType.java deleted file mode 100644 index cf9c6074..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/AddDocToClaimResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Schadensdokument übergeben wurde - * - *

Java-Klasse für AddDocToClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="ArcImageId" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimResponse_Type", propOrder = { - "arcImageIdOrServiceFault" -}) -public class AddDocToClaimResponseType { - - @XmlElements({ - @XmlElement(name = "ArcImageId", type = ArcImageInfo.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List arcImageIdOrServiceFault; - - /** - * Gets the value of the arcImageIdOrServiceFault property. - * - *

- * 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 set method for the arcImageIdOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageIdOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * {@link ServiceFault } - * - * - */ - public List getArcImageIdOrServiceFault() { - if (arcImageIdOrServiceFault == null) { - arcImageIdOrServiceFault = new ArrayList(); - } - return this.arcImageIdOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcContent.java deleted file mode 100644 index ec8e22bd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - protected byte[] arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setArcImage(byte[] value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 9747c002..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index d626e9ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 861bc113..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 994d7366..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 7ffdf8f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/BeteiligtePersonType.java deleted file mode 100644 index 44302b4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/BeteiligtePersonType.java +++ /dev/null @@ -1,182 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden oder einem Vertrag beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "informationenPerson", - "geschInteresseLfnr" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - @XmlElement(name = "GeschInteresseLfnr", type = Long.class) - @XmlSchemaType(name = "unsignedInt") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListRequestType.java deleted file mode 100644 index 6b69b9c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListRequestType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Änderungen an Schäden zu erhalten - * - *

Java-Klasse für ChangedClaimsListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type"/>
- *         <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="Changed"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class ChangedClaimsListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Zeitraum", required = true) - 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 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 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListResponseType.java deleted file mode 100644 index efcd1e90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ChangedClaimsListResponseType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von geänderten Schäden für einen bestimmten Zeitraum - * - *

Java-Klasse für ChangedClaimsListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class ChangedClaimsListResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "geaenderteObjekte" - }) - public static class Result { - - @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; - @XmlElement(name = "GeaenderteObjekte") - protected List geaenderteObjekte; - - /** - * 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; - } - - /** - * Gets the value of the geaenderteObjekte property. - * - *

- * 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 set method for the geaenderteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeaenderteObjekte().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenStatusType } - * - * - */ - public List getGeaenderteObjekte() { - if (geaenderteObjekte == null) { - geaenderteObjekte = new ArrayList(); - } - return this.geaenderteObjekte; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimRequestType.java deleted file mode 100644 index a09a0f3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimRequestType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für CreateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzGeschaeftsfallId" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}MeldungSchaden_Type" maxOccurs="unbounded"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimRequest_Type", propOrder = { - "vuNr", - "referenzGeschaeftsfallId", - "ordnungsbegriffZuordFremd", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "schadenmelder" -}) -public class CreateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzGeschaeftsfallId") - protected String referenzGeschaeftsfallId; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzGeschaeftsfallId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzGeschaeftsfallId() { - return referenzGeschaeftsfallId; - } - - /** - * Legt den Wert der referenzGeschaeftsfallId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzGeschaeftsfallId(String value) { - this.referenzGeschaeftsfallId = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungSchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimResponseType.java deleted file mode 100644 index 25f6bdd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CreateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CreateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}Meldungszusammenfassung_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class CreateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CredentialsType.java deleted file mode 100644 index 0ad5c19c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/CredentialsType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können. - * - *

Java-Klasse für Credentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Credentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Credentials_Type") -public abstract class CredentialsType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointRequestType.java deleted file mode 100644 index fd521b36..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointRequestType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Typ für den DeclareEndpointRequest - * - *

Java-Klasse für DeclareEndpointRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="BasisUrlEndpoint">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}ArtAuthentifizierung"/>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *         <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointRequest_Type", propOrder = { - "vuNr", - "basisUrlEndpoint", - "artAuthentifizierung", - "credentials", - "authorizationFilter" -}) -public class DeclareEndpointRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "BasisUrlEndpoint", required = true) - protected String basisUrlEndpoint; - @XmlElement(name = "ArtAuthentifizierung", required = true) - protected String artAuthentifizierung; - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - @XmlElement(name = "AuthorizationFilter") - protected AuthorizationFilter authorizationFilter; - - /** - * 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 basisUrlEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBasisUrlEndpoint() { - return basisUrlEndpoint; - } - - /** - * Legt den Wert der basisUrlEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBasisUrlEndpoint(String value) { - this.basisUrlEndpoint = value; - } - - /** - * Ruft den Wert der artAuthentifizierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtAuthentifizierung() { - return artAuthentifizierung; - } - - /** - * Legt den Wert der artAuthentifizierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtAuthentifizierung(String value) { - this.artAuthentifizierung = value; - } - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - - /** - * Ruft den Wert der authorizationFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - public AuthorizationFilter getAuthorizationFilter() { - return authorizationFilter; - } - - /** - * Legt den Wert der authorizationFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - public void setAuthorizationFilter(AuthorizationFilter value) { - this.authorizationFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointResponseType.java deleted file mode 100644 index 2390ce41..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareEndpointResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Response um als Makler der VU einen Endpoint bekannt zu geben - * - *

Java-Klasse für DeclareEndpointResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointResponse_Type", propOrder = { - "registrierteBasisUrlMaklerEndpoint", - "serviceFault" -}) -public class DeclareEndpointResponseType { - - @XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint") - protected String registrierteBasisUrlMaklerEndpoint; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrierteBasisUrlMaklerEndpoint() { - return registrierteBasisUrlMaklerEndpoint; - } - - /** - * Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrierteBasisUrlMaklerEndpoint(String value) { - this.registrierteBasisUrlMaklerEndpoint = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusRequestType.java deleted file mode 100644 index 6b80ab3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusRequestType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 des Request, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wird - * - *

Java-Klasse für DeclareNewClaimStatusRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="alt" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *         <element name="neu" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusRequest_Type", propOrder = { - "alt", - "neu" -}) -public class DeclareNewClaimStatusRequestType { - - @XmlElement(required = true) - protected SchadenStatusType alt; - @XmlElement(required = true) - protected SchadenStatusType neu; - - /** - * Ruft den Wert der alt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getAlt() { - return alt; - } - - /** - * Legt den Wert der alt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setAlt(SchadenStatusType value) { - this.alt = value; - } - - /** - * Ruft den Wert der neu-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getNeu() { - return neu; - } - - /** - * Legt den Wert der neu-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setNeu(SchadenStatusType value) { - this.neu = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusResponseType.java deleted file mode 100644 index f2d03e57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeclareNewClaimStatusResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wurde - * - *

Java-Klasse für DeclareNewClaimStatusResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusResponse_Type") -public class DeclareNewClaimStatusResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 67abff5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index db693024..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index ece0e08f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index a69d4efb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index f173e4ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesInteresseType.java deleted file mode 100644 index f0b75b16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "geschInteresseLfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int geschInteresseLfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - */ - public int getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - */ - public void setGeschInteresseLfnr(int value) { - this.geschInteresseLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 9999937d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektKfzType.java deleted file mode 100644 index c0993792..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseLightType.java deleted file mode 100644 index 87a2ff6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseLightType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Leichtgewichtiges Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponseLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponseLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}SchadenereignisLight_Type" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponseLight_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseLightType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisLightType schadenereignis; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisLightType } - * - */ - public void setSchadenereignis(SchadenereignisLightType value) { - this.schadenereignis = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseType.java deleted file mode 100644 index ae004349..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosRequestType.java deleted file mode 100644 index 9e8c1f2a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosRequestType.java +++ /dev/null @@ -1,255 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetDocumentInfosRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentInfosRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ELZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected int maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected int offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * 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 dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - public int getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - public void setMaxResults(int value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - public int getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - public void setOffset(int 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosResponseType.java deleted file mode 100644 index 679a861d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetDocumentInfosResponseType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * ResponseTyp mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentInfosResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentInfosResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos" - }) - public static class Result { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getDokumentInfos().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index d34f7920..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ELZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * 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 dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 029030d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Typ für den Response einer Anzahl von Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 02b94de0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InformationenPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InformationenPersonType.java deleted file mode 100644 index a38e5f1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InformationenPersonType.java +++ /dev/null @@ -1,402 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Typ zur Übergabe personenbezogener Daten - * - *

Java-Klasse für InformationenPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InformationenPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InformationenPerson_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class InformationenPersonType { - - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String personennr; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimRequestType.java deleted file mode 100644 index 3f2588d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimRequestType.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 für die Durchführung einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="ReferenzIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimRequest_Type", propOrder = { - "vuNr", - "referenzIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "polizzennr", - "vertragsID", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "dokumente", - "schadenmelder" -}) -public class InitiateClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "ReferenzIdGeschaeftsfall") - protected String referenzIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzIdGeschaeftsfall() { - return referenzIdGeschaeftsfall; - } - - /** - * Legt den Wert der referenzIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzIdGeschaeftsfall(String value) { - this.referenzIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimResponseType.java deleted file mode 100644 index 7fcf8194..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/InitiateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}MeldungszusammenfassungInitiateClaim_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class InitiateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungInitiateClaimType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungInitiateClaimType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 52282504..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListRequestType.java deleted file mode 100644 index ac0d1e35..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListRequestType.java +++ /dev/null @@ -1,235 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Schadens-Events zu erhalten - * - *

Java-Klasse für LossEventListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type"/>
- *         <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="Ereigniszeitpunkt"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "polizzennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class LossEventListRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Polizzennr") - protected List polizzennr; - @XmlElement(name = "Zeitraum", required = true) - 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 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 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; - } - - /** - * Gets the value of the polizzennr property. - * - *

- * 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 set method for the polizzennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolizzennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getPolizzennr() { - if (polizzennr == null) { - polizzennr = new ArrayList(); - } - return this.polizzennr; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListResponseType.java deleted file mode 100644 index 862269cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventListResponseType.java +++ /dev/null @@ -1,233 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von Schadensevents für einen bestimmten Zeitraum - * - *

Java-Klasse für LossEventListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class LossEventListResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "lossEvents" - }) - public static class Result { - - @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; - @XmlElement(name = "LossEvents") - protected List lossEvents; - - /** - * 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; - } - - /** - * Gets the value of the lossEvents property. - * - *

- * 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 set method for the lossEvents property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getLossEvents().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LossEventType } - * - * - */ - public List getLossEvents() { - if (lossEvents == null) { - lossEvents = new ArrayList(); - } - return this.lossEvents; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventRegisteredResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventRegisteredResponseType.java deleted file mode 100644 index 0458b2e6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventRegisteredResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn der Eintritt eines Schadenereignisses kommuniziert wurde - * - *

Java-Klasse für LossEventRegisteredResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventRegisteredResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventRegisteredResponse_Type") -public class LossEventRegisteredResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventType.java deleted file mode 100644 index 33881082..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/LossEventType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Objekttyp mit welchem der Eintritt eines Schadenereignisses kommuniziert wird - * - *

Java-Klasse für LossEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEvent_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "ereigniszpkt", - "ereignisbeschrTxt" -}) -public class LossEventType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungSchadenType.java deleted file mode 100644 index 10212847..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungSchadenType.java +++ /dev/null @@ -1,432 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Typ um ein Schadenobjekt in der Schadenmeldung abzubilden - * - *

Java-Klasse für MeldungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungSchaden_Type", propOrder = { - "schadenzuordnung", - "polizzennr", - "vertragsID", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class MeldungSchadenType { - - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java deleted file mode 100644 index 8e5e4d7b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java +++ /dev/null @@ -1,437 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für MeldungszusammenfassungInitiateClaim_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungszusammenfassungInitiateClaim_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungszusammenfassungInitiateClaim_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "schaeden" -}) -public class MeldungszusammenfassungInitiateClaimType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr", required = true) - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungType.java deleted file mode 100644 index 08f45a2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/MeldungszusammenfassungType.java +++ /dev/null @@ -1,631 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für Meldungszusammenfassung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Meldungszusammenfassung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *                   <choice>
- *                     <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *                     <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ErgebnisSchaeden" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *                   <choice>
- *                     <element name="Schadenanlage">
- *                       <complexType>
- *                         <complexContent>
- *                           <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                             <sequence>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                               <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *                               <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                               <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                               <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                             </sequence>
- *                           </restriction>
- *                         </complexContent>
- *                       </complexType>
- *                     </element>
- *                     <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *                   </choice>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Meldungszusammenfassung_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "ergebnisSchaeden" -}) -public class MeldungszusammenfassungType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "ErgebnisSchaeden", required = true) - protected List ergebnisSchaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumente } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the ergebnisSchaeden property. - * - *

- * 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 set method for the ergebnisSchaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisSchaeden } - * - * - */ - public List getErgebnisSchaeden() { - if (ergebnisSchaeden == null) { - ergebnisSchaeden = new ArrayList(); - } - return this.ergebnisSchaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
-     *         <choice>
-     *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
-     *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" - }) - public static class ErgebnisDokumente { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
-     *         <choice>
-     *           <element name="Schadenanlage">
-     *             <complexType>
-     *               <complexContent>
-     *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *                   <sequence>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *                     <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-     *                     <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *                     <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *                     <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *                   </sequence>
-     *                 </restriction>
-     *               </complexContent>
-     *             </complexType>
-     *           </element>
-     *           <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
-     *         </choice>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "lfdNr", - "schadenanlage", - "fehlerSchadenanlage" - }) - public static class ErgebnisSchaeden { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Schadenanlage") - protected Schadenanlage schadenanlage; - @XmlElement(name = "FehlerSchadenanlage") - protected ServiceFault fehlerSchadenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der schadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link Schadenanlage } - * - */ - public Schadenanlage getSchadenanlage() { - return schadenanlage; - } - - /** - * Legt den Wert der schadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Schadenanlage } - * - */ - public void setSchadenanlage(Schadenanlage value) { - this.schadenanlage = value; - } - - /** - * Ruft den Wert der fehlerSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerSchadenanlage() { - return fehlerSchadenanlage; - } - - /** - * Legt den Wert der fehlerSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerSchadenanlage(ServiceFault value) { - this.fehlerSchadenanlage = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-         * <complexType>
-         *   <complexContent>
-         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-         *       <sequence>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-         *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
-         *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-         *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-         *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-         *       </sequence>
-         *     </restriction>
-         *   </complexContent>
-         * </complexType>
-         * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "schadenzuordnung", - "bearbStandCd", - "schadennr", - "sachbearbVU" - }) - public static class Schadenanlage { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 6b3a7d0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_9.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_9.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 784b2726..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.AgentFilterType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 5afcbda6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index 14ecbc10..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 3eef1ba2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 690ba7a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,1307 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_2_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - private final static QName _CreateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimRequest"); - private final static QName _InformationenPerson_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InformationenPerson"); - private final static QName _CreateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimResponse"); - private final static QName _InitiateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimRequest"); - private final static QName _InitiateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimResponse"); - private final static QName _AddDocToClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimRequest"); - private final static QName _AddDocToClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimResponse"); - private final static QName _GetClaimLightRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightRequest"); - private final static QName _GetClaimLightResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosRequest"); - private final static QName _GetDocumentInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimResponse"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "Schadenzuordnung"); - private final static QName _ChangedClaimsListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListRequest"); - private final static QName _ChangedClaimsListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListResponse"); - private final static QName _LossEventListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListRequest"); - private final static QName _LossEventListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListResponse"); - private final static QName _IdGeschaeftsfallSchadenereignis_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenereignis"); - private final static QName _IdGeschaeftsfallSchadenanlage_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenanlage"); - private final static QName _DeclareEndpointRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointRequest"); - private final static QName _ArtAuthentifizierung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ArtAuthentifizierung"); - private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointResponse"); - private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenRequest"); - private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenResponse"); - private final static QName _DeclareNewClaimStatusRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusRequest"); - private final static QName _DeclareNewClaimStatusResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusResponse"); - private final static QName _LossEventRegisteredRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredRequest"); - private final static QName _LossEventRegisteredResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_2_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SchadenStatusType } - * - */ - public SchadenStatusType createSchadenStatusType() { - return new SchadenStatusType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType createMeldungszusammenfassungInitiateClaimType() { - return new MeldungszusammenfassungInitiateClaimType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType createMeldungszusammenfassungType() { - return new MeldungszusammenfassungType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden createMeldungszusammenfassungTypeErgebnisSchaeden() { - return new MeldungszusammenfassungType.ErgebnisSchaeden(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link MeldungSchadenType } - * - */ - public MeldungSchadenType createMeldungSchadenType() { - return new MeldungSchadenType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType } - * - */ - public LossEventListResponseType createLossEventListResponseType() { - return new LossEventListResponseType(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType } - * - */ - public ChangedClaimsListResponseType createChangedClaimsListResponseType() { - return new ChangedClaimsListResponseType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType } - * - */ - public GetDocumentInfosResponseType createGetDocumentInfosResponseType() { - return new GetDocumentInfosResponseType(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link CreateClaimRequestType } - * - */ - public CreateClaimRequestType createCreateClaimRequestType() { - return new CreateClaimRequestType(); - } - - /** - * Create an instance of {@link InformationenPersonType } - * - */ - public InformationenPersonType createInformationenPersonType() { - return new InformationenPersonType(); - } - - /** - * Create an instance of {@link CreateClaimResponseType } - * - */ - public CreateClaimResponseType createCreateClaimResponseType() { - return new CreateClaimResponseType(); - } - - /** - * Create an instance of {@link InitiateClaimRequestType } - * - */ - public InitiateClaimRequestType createInitiateClaimRequestType() { - return new InitiateClaimRequestType(); - } - - /** - * Create an instance of {@link InitiateClaimResponseType } - * - */ - public InitiateClaimResponseType createInitiateClaimResponseType() { - return new InitiateClaimResponseType(); - } - - /** - * Create an instance of {@link AddDocToClaimRequestType } - * - */ - public AddDocToClaimRequestType createAddDocToClaimRequestType() { - return new AddDocToClaimRequestType(); - } - - /** - * Create an instance of {@link AddDocToClaimResponseType } - * - */ - public AddDocToClaimResponseType createAddDocToClaimResponseType() { - return new AddDocToClaimResponseType(); - } - - /** - * Create an instance of {@link SpezifikationSchadenType } - * - */ - public SpezifikationSchadenType createSpezifikationSchadenType() { - return new SpezifikationSchadenType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimResponseLightType } - * - */ - public GetClaimResponseLightType createGetClaimResponseLightType() { - return new GetClaimResponseLightType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosRequestType } - * - */ - public GetDocumentInfosRequestType createGetDocumentInfosRequestType() { - return new GetDocumentInfosRequestType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link ChangedClaimsListRequestType } - * - */ - public ChangedClaimsListRequestType createChangedClaimsListRequestType() { - return new ChangedClaimsListRequestType(); - } - - /** - * Create an instance of {@link LossEventListRequestType } - * - */ - public LossEventListRequestType createLossEventListRequestType() { - return new LossEventListRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointRequestType } - * - */ - public DeclareEndpointRequestType createDeclareEndpointRequestType() { - return new DeclareEndpointRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointResponseType } - * - */ - public DeclareEndpointResponseType createDeclareEndpointResponseType() { - return new DeclareEndpointResponseType(); - } - - /** - * Create an instance of {@link SecurityContextTokenRequestType } - * - */ - public SecurityContextTokenRequestType createSecurityContextTokenRequestType() { - return new SecurityContextTokenRequestType(); - } - - /** - * Create an instance of {@link SecurityContextTokenResponseType } - * - */ - public SecurityContextTokenResponseType createSecurityContextTokenResponseType() { - return new SecurityContextTokenResponseType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusRequestType } - * - */ - public DeclareNewClaimStatusRequestType createDeclareNewClaimStatusRequestType() { - return new DeclareNewClaimStatusRequestType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusResponseType } - * - */ - public DeclareNewClaimStatusResponseType createDeclareNewClaimStatusResponseType() { - return new DeclareNewClaimStatusResponseType(); - } - - /** - * Create an instance of {@link LossEventType } - * - */ - public LossEventType createLossEventType() { - return new LossEventType(); - } - - /** - * Create an instance of {@link LossEventRegisteredResponseType } - * - */ - public LossEventRegisteredResponseType createLossEventRegisteredResponseType() { - return new LossEventRegisteredResponseType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderType } - * - */ - public SchadenmelderType createSchadenmelderType() { - return new SchadenmelderType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link UsernamePasswordCredentialsType } - * - */ - public UsernamePasswordCredentialsType createUsernamePasswordCredentialsType() { - return new UsernamePasswordCredentialsType(); - } - - /** - * Create an instance of {@link SchadenStatusType.Schaeden } - * - */ - public SchadenStatusType.Schaeden createSchadenStatusTypeSchaeden() { - return new SchadenStatusType.Schaeden(); - } - - /** - * Create an instance of {@link SachbearbVUType.Person } - * - */ - public SachbearbVUType.Person createSachbearbVUTypePerson() { - return new SachbearbVUType.Person(); - } - - /** - * Create an instance of {@link SchadenereignisType.BeteiligtePersonen } - * - */ - public SchadenereignisType.BeteiligtePersonen createSchadenereignisTypeBeteiligtePersonen() { - return new SchadenereignisType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente createMeldungszusammenfassungInitiateClaimTypeErgebnisDokumente() { - return new MeldungszusammenfassungInitiateClaimType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType.Schaeden } - * - */ - public MeldungszusammenfassungInitiateClaimType.Schaeden createMeldungszusammenfassungInitiateClaimTypeSchaeden() { - return new MeldungszusammenfassungInitiateClaimType.Schaeden(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisDokumente } - * - */ - public MeldungszusammenfassungType.ErgebnisDokumente createMeldungszusammenfassungTypeErgebnisDokumente() { - return new MeldungszusammenfassungType.ErgebnisDokumente(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage } - * - */ - public MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage createMeldungszusammenfassungTypeErgebnisSchaedenSchadenanlage() { - return new MeldungszusammenfassungType.ErgebnisSchaeden.Schadenanlage(); - } - - /** - * Create an instance of {@link SchadenType.Schadenbeteiligte } - * - */ - public SchadenType.Schadenbeteiligte createSchadenTypeSchadenbeteiligte() { - return new SchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link MeldungSchadenType.Schadenbeteiligte } - * - */ - public MeldungSchadenType.Schadenbeteiligte createMeldungSchadenTypeSchadenbeteiligte() { - return new MeldungSchadenType.Schadenbeteiligte(); - } - - /** - * Create an instance of {@link OrtType.Geokoordinaten } - * - */ - public OrtType.Geokoordinaten createOrtTypeGeokoordinaten() { - return new OrtType.Geokoordinaten(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link LossEventListResponseType.Result } - * - */ - public LossEventListResponseType.Result createLossEventListResponseTypeResult() { - return new LossEventListResponseType.Result(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType.Result } - * - */ - public ChangedClaimsListResponseType.Result createChangedClaimsListResponseTypeResult() { - return new ChangedClaimsListResponseType.Result(); - } - - /** - * Create an instance of {@link SearchClaimResponseType.Result } - * - */ - public SearchClaimResponseType.Result createSearchClaimResponseTypeResult() { - return new SearchClaimResponseType.Result(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType.Result } - * - */ - public GetDocumentInfosResponseType.Result createGetDocumentInfosResponseTypeResult() { - return new GetDocumentInfosResponseType.Result(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimRequest") - public JAXBElement createCreateClaimRequest(CreateClaimRequestType value) { - return new JAXBElement(_CreateClaimRequest_QNAME, CreateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InformationenPersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InformationenPerson") - public JAXBElement createInformationenPerson(InformationenPersonType value) { - return new JAXBElement(_InformationenPerson_QNAME, InformationenPersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimResponse") - public JAXBElement createCreateClaimResponse(CreateClaimResponseType value) { - return new JAXBElement(_CreateClaimResponse_QNAME, CreateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimRequest") - public JAXBElement createInitiateClaimRequest(InitiateClaimRequestType value) { - return new JAXBElement(_InitiateClaimRequest_QNAME, InitiateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimResponse") - public JAXBElement createInitiateClaimResponse(InitiateClaimResponseType value) { - return new JAXBElement(_InitiateClaimResponse_QNAME, InitiateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimRequest") - public JAXBElement createAddDocToClaimRequest(AddDocToClaimRequestType value) { - return new JAXBElement(_AddDocToClaimRequest_QNAME, AddDocToClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimResponse") - public JAXBElement createAddDocToClaimResponse(AddDocToClaimResponseType value) { - return new JAXBElement(_AddDocToClaimResponse_QNAME, AddDocToClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightRequest") - public JAXBElement createGetClaimLightRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimLightRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseLightType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightResponse") - public JAXBElement createGetClaimLightResponse(GetClaimResponseLightType value) { - return new JAXBElement(_GetClaimLightResponse_QNAME, GetClaimResponseLightType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosRequest") - public JAXBElement createGetDocumentInfosRequest(GetDocumentInfosRequestType value) { - return new JAXBElement(_GetDocumentInfosRequest_QNAME, GetDocumentInfosRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosResponse") - public JAXBElement createGetDocumentInfosResponse(GetDocumentInfosResponseType value) { - return new JAXBElement(_GetDocumentInfosResponse_QNAME, GetDocumentInfosResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListRequest") - public JAXBElement createChangedClaimsListRequest(ChangedClaimsListRequestType value) { - return new JAXBElement(_ChangedClaimsListRequest_QNAME, ChangedClaimsListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListResponse") - public JAXBElement createChangedClaimsListResponse(ChangedClaimsListResponseType value) { - return new JAXBElement(_ChangedClaimsListResponse_QNAME, ChangedClaimsListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListRequest") - public JAXBElement createLossEventListRequest(LossEventListRequestType value) { - return new JAXBElement(_LossEventListRequest_QNAME, LossEventListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListResponse") - public JAXBElement createLossEventListResponse(LossEventListResponseType value) { - return new JAXBElement(_LossEventListResponse_QNAME, LossEventListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenereignis") - public JAXBElement createIdGeschaeftsfallSchadenereignis(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenereignis_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenanlage") - public JAXBElement createIdGeschaeftsfallSchadenanlage(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenanlage_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointRequest") - public JAXBElement createDeclareEndpointRequest(DeclareEndpointRequestType value) { - return new JAXBElement(_DeclareEndpointRequest_QNAME, DeclareEndpointRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ArtAuthentifizierung") - public JAXBElement createArtAuthentifizierung(String value) { - return new JAXBElement(_ArtAuthentifizierung_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointResponse") - public JAXBElement createDeclareEndpointResponse(DeclareEndpointResponseType value) { - return new JAXBElement(_DeclareEndpointResponse_QNAME, DeclareEndpointResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenRequest") - public JAXBElement createSecurityContextTokenRequest(SecurityContextTokenRequestType value) { - return new JAXBElement(_SecurityContextTokenRequest_QNAME, SecurityContextTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenResponse") - public JAXBElement createSecurityContextTokenResponse(SecurityContextTokenResponseType value) { - return new JAXBElement(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusRequest") - public JAXBElement createDeclareNewClaimStatusRequest(DeclareNewClaimStatusRequestType value) { - return new JAXBElement(_DeclareNewClaimStatusRequest_QNAME, DeclareNewClaimStatusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusResponse") - public JAXBElement createDeclareNewClaimStatusResponse(DeclareNewClaimStatusResponseType value) { - return new JAXBElement(_DeclareNewClaimStatusResponse_QNAME, DeclareNewClaimStatusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredRequest") - public JAXBElement createLossEventRegisteredRequest(LossEventType value) { - return new JAXBElement(_LossEventRegisteredRequest_QNAME, LossEventType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventRegisteredResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredResponse") - public JAXBElement createLossEventRegisteredResponse(LossEventRegisteredResponseType value) { - return new JAXBElement(_LossEventRegisteredResponse_QNAME, LossEventRegisteredResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjektSpezifikationType.java deleted file mode 100644 index d860bdf8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/ObjektSpezifikationType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - SchadenObjektSpezifikationType.class, - PolizzenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OrtType.java deleted file mode 100644 index e4f7becd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/OrtType.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *                 <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected Geokoordinaten geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link Geokoordinaten } - * - */ - public Geokoordinaten getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Geokoordinaten } - * - */ - public void setGeokoordinaten(Geokoordinaten value) { - this.geokoordinaten = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Geokoordinaten { - - @XmlAttribute(name = "Breite", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 8fcfdb14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolizzenObjektSpezifikationType.java deleted file mode 100644 index c75f3b44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 8e97441d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OmdsPackage } - * - */ - public OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OmdsPackage } - * - */ - public void setOmdsPackage(OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - protected byte[] content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SachbearbVUType.java deleted file mode 100644 index dbc5ac78..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SachbearbVUType.java +++ /dev/null @@ -1,219 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected Person person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link Person } - * - */ - public Person getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Person } - * - */ - public void setPerson(Person value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Person { - - @XmlAttribute(name = "Familienname", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:omds3ServiceTypes-1-1-0") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenLightType.java deleted file mode 100644 index 98247650..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenLightType.java +++ /dev/null @@ -1,450 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "schadenzuordnung", - "polizzennr", - "vertragsID", - "spartenCd", - "spartenerweiterung", - "schadUrsCd", - "schadUrsTxt", - "erledDat" -}) -public class SchadenLightType { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected String vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected List nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der vormaligeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeSchadennr() { - return vormaligeSchadennr; - } - - /** - * Legt den Wert der vormaligeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeSchadennr(String value) { - this.vormaligeSchadennr = value; - } - - /** - * Gets the value of the nachfolgendeSchadennr property. - * - *

- * 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 set method for the nachfolgendeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNachfolgendeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getNachfolgendeSchadennr() { - if (nachfolgendeSchadennr == null) { - nachfolgendeSchadennr = new ArrayList(); - } - return this.nachfolgendeSchadennr; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenObjektSpezifikationType.java deleted file mode 100644 index 5ae879c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenStatusType.java deleted file mode 100644 index fa8a1926..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenStatusType.java +++ /dev/null @@ -1,341 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für SchadenStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *                   <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *                   <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *                   <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *                   <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenStatus_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "schaeden" -}) -public class SchadenStatusType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schaeden } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
-     *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
-     *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
-     *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
-     *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "idGeschaeftsfallSchadenanlage", - "bearbStandCd", - "schadennr", - "schadenzuordnung", - "sachbearbVU" - }) - public static class Schaeden { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenType.java deleted file mode 100644 index 6c1149cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenType.java +++ /dev/null @@ -1,916 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; -import at.vvo.omds.types.omds2Types.v2_9.ZAHLUNGType; - - -/** - * Typ um ein Schadenobjekt in der Schadendarstellung abzubilden - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="IdGeschaeftsfallSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *                   <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *                 <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Schadensreserve" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "vuNr", - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "polizzennr", - "vertragsID", - "sachbearbVU", - "ordnungsbegriffZuordFremd", - "schadenzuordnung", - "schadUrsCd", - "schadUrsTxt", - "erledDat", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "schadensreserve", - "spartenCd", - "spartenerweiterung", - "waehrungsCd", - "spartendetails", - "dokumente" -}) -public class SchadenType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "Schadensreserve") - protected BigDecimal schadensreserve; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * 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 bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Schadenbeteiligte } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der schadensreserve-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSchadensreserve() { - return schadensreserve; - } - - /** - * Legt den Wert der schadensreserve-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSchadensreserve(BigDecimal value) { - this.schadensreserve = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
-     *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
-     *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "geschInteresseLfnr", - "zahlung" - }) - public static class Schadenbeteiligte { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlElement(name = "ZAHLUNG", namespace = "urn:omds20") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZAHLUNG().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisLightType.java deleted file mode 100644 index 0a070148..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisLightType.java +++ /dev/null @@ -1,252 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}SchadenLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "schaeden", - "meldedat" -}) -public class SchadenereignisLightType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected List vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Gets the value of the vormaligeIdGeschaeftsfall property. - * - *

- * 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 set method for the vormaligeIdGeschaeftsfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeIdGeschaeftsfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeIdGeschaeftsfall() { - if (vormaligeIdGeschaeftsfall == null) { - vormaligeIdGeschaeftsfall = new ArrayList(); - } - return this.vormaligeIdGeschaeftsfall; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisType.java deleted file mode 100644 index ef9833c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenereignisType.java +++ /dev/null @@ -1,657 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Objekttyp für die Darstellungen von Schadenereignissen - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="EreignisZpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Person" type="{urn:omds20}PERSON_Type"/>
- *                   <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *                 <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *                 <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *                 <attribute name="BetTxt">
- *                   <simpleType>
- *                     <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                       <maxLength value="100"/>
- *                     </restriction>
- *                   </simpleType>
- *                 </attribute>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}Schaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "ereignisZpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "meldedat", - "schadenmelder" -}) -public class SchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected String vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "EreignisZpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereignisZpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der vormaligeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeIdGeschaeftsfall() { - return vormaligeIdGeschaeftsfall; - } - - /** - * Legt den Wert der vormaligeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeIdGeschaeftsfall(String value) { - this.vormaligeIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der ereignisZpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreignisZpkt() { - return ereignisZpkt; - } - - /** - * Legt den Wert der ereignisZpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreignisZpkt(XMLGregorianCalendar value) { - this.ereignisZpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Person" type="{urn:omds20}PERSON_Type"/>
-     *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
-     *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
-     *       <attribute name="BetTxt">
-     *         <simpleType>
-     *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *             <maxLength value="100"/>
-     *           </restriction>
-     *         </simpleType>
-     *       </attribute>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "person", - "geschInteresseLfnr" - }) - public static class BeteiligtePersonen { - - @XmlElement(name = "Person", required = true) - protected PERSONType person; - @XmlElement(name = "GeschInteresseLfnr") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * 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; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getGeschInteresseLfnr().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetLfnr(String value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderType.java deleted file mode 100644 index 84bc1bd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderVermittlerType.java deleted file mode 100644 index e377964e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenzuordnungType.java deleted file mode 100644 index 71a0d58b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimRequestType.java deleted file mode 100644 index 41947b7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimRequestType.java +++ /dev/null @@ -1,283 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" 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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimResponseType.java deleted file mode 100644 index f7d8efce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SearchClaimResponseType.java +++ /dev/null @@ -1,234 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; -import at.vvo.omds.types.omds3Types.r1_2_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <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"/>
- *                   <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected Result result; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link Result } - * - */ - public Result getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Result } - * - */ - public void setResult(Result value) { - this.result = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <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"/>
-     *         <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" - }) - public static class Result { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getSchadenereignisse().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenRequestType.java deleted file mode 100644 index 6e8cc6e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Request-Type zum Bezug eines Security-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = { - "credentials" -}) -public class SecurityContextTokenRequestType { - - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenResponseType.java deleted file mode 100644 index 980ae20d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SecurityContextTokenResponseType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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; - - -/** - * Response-Type zum Bezug eines Securtity-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = { - "token", - "dauerhaftGueltig", - "gueltigBis" -}) -public class SecurityContextTokenResponseType { - - @XmlElement(name = "Token", required = true) - protected String token; - @XmlElement(name = "DauerhaftGueltig") - protected boolean dauerhaftGueltig; - @XmlElement(name = "GueltigBis") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der token-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Legt den Wert der token-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Ruft den Wert der dauerhaftGueltig-Eigenschaft ab. - * - */ - public boolean isDauerhaftGueltig() { - return dauerhaftGueltig; - } - - /** - * Legt den Wert der dauerhaftGueltig-Eigenschaft fest. - * - */ - public void setDauerhaftGueltig(boolean value) { - this.dauerhaftGueltig = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenKfzType.java deleted file mode 100644 index 8f929de2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine spezielle Spartenerweiterung der Schadenmeldung für Kfz. - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenType.java deleted file mode 100644 index aeb97612..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpartendetailSchadenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpezifikationSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpezifikationSchadenType.java deleted file mode 100644 index c8e8dd5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/SpezifikationSchadenType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_2_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für SpezifikationSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezifikationSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezifikationSchaden_Type", propOrder = { - "vuNr", - "authFilter", - "idGeschaeftsfallSchadenereignis", - "idGeschaeftsfallSchadenanlage", - "schadennr" -}) -public class SpezifikationSchadenType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage") - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UploadDokumentType.java deleted file mode 100644 index a9050d02..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UploadDokumentType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -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 fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - protected byte[] content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataRequest.java deleted file mode 100644 index d49a46a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 011dfcf6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link AvailableServices } - * - */ - public AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AvailableServices } - * - */ - public void setAvailableServices(AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UsernamePasswordCredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UsernamePasswordCredentialsType.java deleted file mode 100644 index 32f1c464..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/UsernamePasswordCredentialsType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Konkrete Implementierung von Credentials mit Username und Password - * - *

Java-Klasse für UsernamePasswordCredentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UsernamePasswordCredentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsernamePasswordCredentials_Type") -public class UsernamePasswordCredentialsType { - - @XmlAttribute(name = "Username", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String username; - @XmlAttribute(name = "Password", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String password; - - /** - * Ruft den Wert der username-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Legt den Wert der username-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Ruft den Wert der password-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Legt den Wert der password-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/package-info.java deleted file mode 100644 index cb9653d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_2_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_2_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsService.java deleted file mode 100644 index 83b5bb78..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_3_0.brokerservice; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:56:19.338+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3ServicesBroker.wsdl", - targetNamespace = "urn:omds3ServicesBroker-1-1-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3ServicesBroker-1-1-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3ServicesBroker-1-1-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3ServicesBroker.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3ServicesBroker.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortImpl.java deleted file mode 100644 index 0049b36e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortImpl.java +++ /dev/null @@ -1,67 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_3_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventType; - -import java.util.logging.Logger; -import javax.jws.WebService; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:56:19.308+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3ServicesBroker-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3ServicesBroker.wsdl", - endpointInterface = "at.vvo.omds.types.omds3types.v1_3_0.brokerservice.OmdsServicePortType") - -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.brokerservice.OmdsServicePortType#lossEventRegistered(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.LossEventType parameters)* - */ - public LossEventRegisteredResponseType lossEventRegistered(LossEventType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation lossEventRegistered"); - System.out.println(parameters); - try { - LossEventRegisteredResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.brokerservice.OmdsServicePortType#declareNewClaimStatus(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeclareNewClaimStatusRequestType parameters)* - */ - public DeclareNewClaimStatusResponseType declareNewClaimStatus(DeclareNewClaimStatusRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation declareNewClaimStatus"); - System.out.println(parameters); - try { - DeclareNewClaimStatusResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType.java deleted file mode 100644 index 126621ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType.java +++ /dev/null @@ -1,40 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_3_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjectFactory; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventType; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:56:19.325+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3ServicesBroker-1-1-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.ObjectFactory.class, ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:lossEventRegistered") - @WebResult(name = "LossEventRegisteredResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventRegisteredResponseType lossEventRegistered( - @WebParam(partName = "parameters", name = "LossEventRegisteredRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:declareNewClaimStatus") - @WebResult(name = "DeclareNewClaimStatusResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareNewClaimStatusResponseType declareNewClaimStatus( - @WebParam(partName = "parameters", name = "DeclareNewClaimStatusRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareNewClaimStatusRequestType parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index d5cfcbd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.brokerservice; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.DeclareNewClaimStatusResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventRegisteredResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.LossEventType; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:56:19.237+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3ServicesBroker-1-1-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking lossEventRegistered..."); - LossEventType _lossEventRegistered_parameters = null; - try { - LossEventRegisteredResponseType _lossEventRegistered__return = port.lossEventRegistered(_lossEventRegistered_parameters); - System.out.println("lossEventRegistered.result=" + _lossEventRegistered__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareNewClaimStatus..."); - DeclareNewClaimStatusRequestType _declareNewClaimStatus_parameters = null; - try { - DeclareNewClaimStatusResponseType _declareNewClaimStatus__return = port.declareNewClaimStatus(_declareNewClaimStatus_parameters); - System.out.println("declareNewClaimStatus.result=" + _declareNewClaimStatus__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/ServiceFaultMsg.java deleted file mode 100644 index 28a96d27..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/brokerservice/ServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.brokerservice; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:56:19.296+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AbstraktesEreignisStatusAenderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AbstraktesEreignisStatusAenderungType.java deleted file mode 100644 index 80b5f22c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AbstraktesEreignisStatusAenderungType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.SchadenStatusType; - - -/** - * Abstraktes Ereignis einer Statusänderung - * - *

Java-Klasse für AbstraktesEreignisStatusAenderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstraktesEreignisStatusAenderung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstraktesEreignisStatusAenderung_Type") -@XmlSeeAlso({ - SchadenStatusType.class -}) -public abstract class AbstraktesEreignisStatusAenderungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseArtCdType.java deleted file mode 100644 index eb489a6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseType.java deleted file mode 100644 index 761d88a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AdresseType.java +++ /dev/null @@ -1,250 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AgentFilterType.java deleted file mode 100644 index fc03832d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AntragsartType.java deleted file mode 100644 index 12d1ccc5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AntragsartType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AuthorizationFilter.java deleted file mode 100644 index 46d56728..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BankverbindungType.java deleted file mode 100644 index f7b81523..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BankverbindungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * beschreibt eine Bankverbindug - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bankverbindung_Type", propOrder = { - "kontoinhaber", - "bank", - "bic", - "iban" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BerechnungsvarianteType.java deleted file mode 100644 index 3a8b20a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BezugsrechtType.java deleted file mode 100644 index 69003b28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BezugsrechtType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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_9.PERSONType; - - -/** - * Type Bezugsrecht - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusSystemType.java deleted file mode 100644 index 31c9b898..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 3399ad29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessRequestType.java deleted file mode 100644 index 71176b4f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessResponseType.java deleted file mode 100644 index 3a2f24ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonRequestType.java deleted file mode 100644 index c9eb35cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonRequestType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "korrelationsId" -}) -@XmlSeeAlso({ - CommonProcessRequestType.class, - CommonSearchRequestType.class -}) -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ClientId") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - protected List technischeParameter; - @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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonResponseType.java deleted file mode 100644 index f442fbb8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status" -}) -@XmlSeeAlso({ - CommonProcessResponseType.class, - CommonSearchResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchRequestType.java deleted file mode 100644 index 8d78bca0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 at.vvo.omds.types.omds2Types.v2_9.ELZeitraumType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchResponseType.java deleted file mode 100644 index 106a05aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DateianhangType.java deleted file mode 100644 index 7cd6fca8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DateianhangType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann - * - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Dateianhang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DateiMimeType" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Dateianhang_Type", propOrder = { - "dateiMimeType", - "dateiType", - "dateiName", - "dateiData", - "dateiBeschreibung" -}) -public class DateianhangType { - - @XmlElement(name = "DateiMimeType", required = true) - protected String dateiMimeType; - @XmlElement(name = "DateiType") - protected Integer dateiType; - @XmlElement(name = "DateiName", required = true) - protected String dateiName; - @XmlElement(name = "DateiData", required = true) - protected byte[] dateiData; - @XmlElement(name = "DateiBeschreibung") - protected String dateiBeschreibung; - - /** - * Ruft den Wert der dateiMimeType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateiMimeType() { - return dateiMimeType; - } - - /** - * Legt den Wert der dateiMimeType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateiMimeType(String value) { - this.dateiMimeType = 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 - * byte[] - */ - public byte[] getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setDateiData(byte[] 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DatenverwendungType.java deleted file mode 100644 index 908f790c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungProzentType.java deleted file mode 100644 index 8499c5a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungProzentType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Deckung Prozent - * - *

Java-Klasse für DeckungProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungProzent" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungProzent_Type", propOrder = { - "deckungActive", - "deckungProzent" -}) -public class DeckungProzentType { - - protected boolean deckungActive; - protected int deckungProzent; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungProzent-Eigenschaft ab. - * - */ - public int getDeckungProzent() { - return deckungProzent; - } - - /** - * Legt den Wert der deckungProzent-Eigenschaft fest. - * - */ - public void setDeckungProzent(int value) { - this.deckungProzent = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsType.java deleted file mode 100644 index 132941fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Deckung - * - *

Java-Klasse für DeckungVs_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVs_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVs_Type", propOrder = { - "versicherungssumme" -}) -public class DeckungVsType { - - @XmlElement(name = "Versicherungssumme") - protected int versicherungssumme; - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - */ - public int getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - */ - public void setVersicherungssumme(int value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsVIType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsVIType.java deleted file mode 100644 index 9f2406fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DeckungVsVIType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Deckung - * - *

Java-Klasse für DeckungVsVI_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVsVI_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungVs" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="VersichertesInteresse" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVsVI_Type", propOrder = { - "deckungActive", - "deckungVs", - "versichertesInteresse" -}) -public class DeckungVsVIType { - - protected boolean deckungActive; - protected int deckungVs; - @XmlElement(name = "VersichertesInteresse", required = true) - protected Object versichertesInteresse; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungVs-Eigenschaft ab. - * - */ - public int getDeckungVs() { - return deckungVs; - } - - /** - * Legt den Wert der deckungVs-Eigenschaft fest. - * - */ - public void setDeckungVs(int value) { - this.deckungVs = value; - } - - /** - * Ruft den Wert der versichertesInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getVersichertesInteresse() { - return versichertesInteresse; - } - - /** - * Legt den Wert der versichertesInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setVersichertesInteresse(Object value) { - this.versichertesInteresse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DirectionCdType.java deleted file mode 100644 index 321cacc5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DirectionCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DokumentInfoType.java deleted file mode 100644 index 4a9c2507..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/DokumentInfoType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Informationen zu einem Dokument (kann auch das Dokument selbst enthalten) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente" -}) -public class DokumentInfoType { - - @XmlElement(name = "Content") - protected byte[] 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 referenzWeitereDokumente; - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementIdType.java deleted file mode 100644 index 43485409..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementarproduktType.java deleted file mode 100644 index ba7cfd3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ElementarproduktType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Elementarprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "zusaetzlicheElementarproduktdaten" -}) -public abstract class ElementarproduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "ZusaetzlicheElementarproduktdaten") - protected List zusaetzlicheElementarproduktdaten; - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ErsatzpolizzenType.java deleted file mode 100644 index c31597f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/FahrzeugType.java deleted file mode 100644 index ccb9401b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/FahrzeugType.java +++ /dev/null @@ -1,804 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type") -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index b27a7ee4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Antrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KontierungType.java deleted file mode 100644 index 8c520797..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KontierungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KreditkarteType.java deleted file mode 100644 index bd2ca3c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjectFactory.java deleted file mode 100644 index 08804ed6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjectFactory.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_3_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _GeschaeftsfallId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "GeschaeftsfallId"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - private final static QName _ObjLfnr_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjLfnr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_3_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenType } - * - */ - public VorversicherungenType createVorversicherungenType() { - return new VorversicherungenType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link DeckungVsType } - * - */ - public DeckungVsType createDeckungVsType() { - return new DeckungVsType(); - } - - /** - * Create an instance of {@link DeckungVsVIType } - * - */ - public DeckungVsVIType createDeckungVsVIType() { - return new DeckungVsVIType(); - } - - /** - * Create an instance of {@link DeckungProzentType } - * - */ - public DeckungProzentType createDeckungProzentType() { - return new DeckungProzentType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "GeschaeftsfallId") - public JAXBElement createGeschaeftsfallId(String value) { - return new JAXBElement(_GeschaeftsfallId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjLfnr") - public JAXBElement createObjLfnr(String value) { - return new JAXBElement(_ObjLfnr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjektIdType.java deleted file mode 100644 index 9e39a441..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffeneSchaedenType.java deleted file mode 100644 index 3ba919d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffenerSchadenType.java deleted file mode 100644 index a26485a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PartnerRoleType.java deleted file mode 100644 index f58335d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PersonType.java deleted file mode 100644 index b8137d90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PersonType.java +++ /dev/null @@ -1,246 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class PersonType { - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (Personennr) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PolizzenversandType.java deleted file mode 100644 index 444242ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PolizzenversandType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PraemieType.java deleted file mode 100644 index 4c900ac7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/PraemieType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd" -}) -public class PraemieType { - - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktType.java deleted file mode 100644 index 1f0fc641..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "zusaetzlicheProduktdaten" -}) -public abstract class ProduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "Produktgeneration", required = true) - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * Ruft den Wert der produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAntragsprozessType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAntragsprozessType.java deleted file mode 100644 index d4f1b487..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAntragsprozessType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für ProduktbausteinAntragsprozess_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinAntragsprozess_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="VtgEnde" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinAntragsprozess_Type", propOrder = { - "vtgBeg", - "vtgEnde", - "praemie" -}) -@XmlSeeAlso({ - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinAntragsprozessType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected PraemieType praemie; - - /** - * 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 vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Ruft den Wert der praemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link PraemieType } - * - */ - public PraemieType getPraemie() { - return praemie; - } - - /** - * Legt den Wert der praemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PraemieType } - * - */ - public void setPraemie(PraemieType value) { - this.praemie = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAuskunftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAuskunftType.java deleted file mode 100644 index f1f786b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinAuskunftType.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Abstrakter Typ für alle Produktbausteine in Produktauskunftsservices - * - *

Java-Klasse für ProduktbausteinAuskunft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinAuskunft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="Verkaufsbeginn" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Verkaufsende" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinAuskunft_Type", propOrder = { - "verkaufsbeginn", - "verkaufsende" -}) -public abstract class ProduktbausteinAuskunftType - extends ProduktbausteinType -{ - - @XmlElement(name = "Verkaufsbeginn", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar verkaufsbeginn; - @XmlElement(name = "Verkaufsende") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar verkaufsende; - - /** - * Ruft den Wert der verkaufsbeginn-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVerkaufsbeginn() { - return verkaufsbeginn; - } - - /** - * Legt den Wert der verkaufsbeginn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVerkaufsbeginn(XMLGregorianCalendar value) { - this.verkaufsbeginn = value; - } - - /** - * Ruft den Wert der verkaufsende-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVerkaufsende() { - return verkaufsende; - } - - /** - * Legt den Wert der verkaufsende-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVerkaufsende(XMLGregorianCalendar value) { - this.verkaufsende = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinType.java deleted file mode 100644 index f2716f2d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "id", - "bezeichnung", - "bedingungen", - "meldungen" -}) -@XmlSeeAlso({ - ProduktbausteinAuskunftType.class, - ProduktbausteinAntragsprozessType.class -}) -public abstract class ProduktbausteinType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - protected List bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ResponseStatusType.java deleted file mode 100644 index 8c8a506c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ResponseStatusType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ServiceFault.java deleted file mode 100644 index 3c2a2e18..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/StatusType.java deleted file mode 100644 index eeed01af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="4"/>
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/TechnicalKeyValueType.java deleted file mode 100644 index b16ea651..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VarianteType.java deleted file mode 100644 index a198f7b8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Variante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Variante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Premiumschutz"/>
- *     <enumeration value="Classicschutz"/>
- *     <enumeration value="Basisschutz"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Variante_Type") -@XmlEnum -public enum VarianteType { - - @XmlEnumValue("Premiumschutz") - PREMIUMSCHUTZ("Premiumschutz"), - @XmlEnumValue("Classicschutz") - CLASSICSCHUTZ("Classicschutz"), - @XmlEnumValue("Basisschutz") - BASISSCHUTZ("Basisschutz"); - private final String value; - - VarianteType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static VarianteType fromValue(String v) { - for (VarianteType c: VarianteType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VerkaufsproduktType.java deleted file mode 100644 index 6f29a517..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 at.vvo.omds.types.omds2Types.v2_9.ELRahmenvereinbarungType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
- *       <sequence>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "verkaufsproduktgeneration", - "berechnungsvariante", - "elRahmenvereinbarung", - "zusaetzlicheVerkaufproduktdaten" -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinAntragsprozessType -{ - - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersichertesInteresseType.java deleted file mode 100644 index 4313b7bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Obertyp für versicherte Interessen, wird z.B. in Rechtsschutz verwendet - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjLfnr"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "objLfnr" -}) -@XmlSeeAlso({ - FahrzeugType.class -}) -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ObjLfnr", required = true) - protected String objLfnr; - - /** - * Ruft den Wert der objLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjLfnr() { - return objLfnr; - } - - /** - * Legt den Wert der objLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjLfnr(String value) { - this.objLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersicherungssteuerType.java deleted file mode 100644 index ad35f245..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VertragspersonType.java deleted file mode 100644 index 392c7ea8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 at.vvo.omds.types.omds2Types.v2_9.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkularglaeubigerType.java deleted file mode 100644 index bb34617f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkulierungType.java deleted file mode 100644 index edc21cd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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_9.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenDetailType.java deleted file mode 100644 index c1d95eeb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Vorversicherungen Detail - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "versicherungsgesellschaft" -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenType.java deleted file mode 100644 index 65c8d93d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/VorversicherungenType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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 Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VorversicherungKfz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenType { - - @XmlElement(name = "VorversicherungKfz") - protected VorversicherungenDetailType vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Ruft den Wert der vorversicherungKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungKfz() { - return vorversicherungKfz; - } - - /** - * Legt den Wert der vorversicherungKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungKfz(VorversicherungenDetailType value) { - this.vorversicherungKfz = value; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlungsdatenType.java deleted file mode 100644 index 22ecaf4d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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; - - -/** - * Beschreibt die Zahlungsdaten - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlwegType.java deleted file mode 100644 index 7d2e8a94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_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.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link Kundenkonto } - * - */ - public Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Kundenkonto } - * - */ - public void setKundenkonto(Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index 60b1a3d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 4cfb039e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 804f85d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/package-info.java deleted file mode 100644 index 103c7219..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_3_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStateChangeEventType.java deleted file mode 100644 index 46b70b18..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStateChangeEventType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Event einer Statusänderung - * - *

Java-Klasse für AbstractStateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStateChangeEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStateChangeEvent_Type") -@XmlSeeAlso({ - StateChangeEventType.class -}) -public abstract class AbstractStateChangeEventType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStatusGeschaeftsfallType.java deleted file mode 100644 index 815d6b8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/AbstractStatusGeschaeftsfallType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -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 Status eines Geschaeftsfalls - * - *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStatusGeschaeftsfall_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStatusGeschaeftsfall_Type") -@XmlSeeAlso({ - StatusAntragsGeschaeftsfall.class -}) -public abstract class AbstractStatusGeschaeftsfallType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesRequestType.java deleted file mode 100644 index 00d9c2ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesRequestType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -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 fuer die Bekanntgabe von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="StateChange" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesRequest_Type", propOrder = { - "stateChange" -}) -public class DeclareStateChangesRequestType { - - @XmlElement(name = "StateChange", required = true) - protected List stateChange; - - /** - * Gets the value of the stateChange property. - * - *

- * 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 set method for the stateChange property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStateChange().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getStateChange() { - if (stateChange == null) { - stateChange = new ArrayList(); - } - return this.stateChange; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesResponseType.java deleted file mode 100644 index 089257c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/DeclareStateChangesResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ fuer die Annahme von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesResponse_Type") -public class DeclareStateChangesResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesRequestType.java deleted file mode 100644 index 72386ed1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.CommonSearchRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.GeschaeftsobjektArtType; - - -/** - * Typ des Requestobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
- *       <sequence>
- *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesRequest_Type", propOrder = { - "geschaeftsobjektArt" -}) -public class GetStateChangesRequestType - extends CommonSearchRequestType -{ - - @XmlElement(name = "GeschaeftsobjektArt") - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType geschaeftsobjektArt; - - /** - * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getGeschaeftsobjektArt() { - return geschaeftsobjektArt; - } - - /** - * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { - this.geschaeftsobjektArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesResponseType.java deleted file mode 100644 index 583d816e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/GetStateChangesResponseType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonSearchResponseType; - - -/** - * Typ des Responseobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
- *       <sequence>
- *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesResponse_Type", propOrder = { - "event" -}) -public class GetStateChangesResponseType - extends CommonSearchResponseType -{ - - @XmlElement(name = "Event") - protected List event; - - /** - * Gets the value of the event property. - * - *

- * 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 set method for the event property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getEvent() { - if (event == null) { - event = new ArrayList(); - } - return this.event; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/ObjectFactory.java deleted file mode 100644 index d74aa0d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3types.v1_3_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", "GetStateChangesRequest"); - private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", "GetStateChangesResponse"); - private final static QName _DeclareStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", "DeclareStateChangesRequest"); - private final static QName _DeclareStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", "DeclareStateChangesResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3types.v1_3_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetStateChangesRequestType } - * - */ - public GetStateChangesRequestType createGetStateChangesRequestType() { - return new GetStateChangesRequestType(); - } - - /** - * Create an instance of {@link GetStateChangesResponseType } - * - */ - public GetStateChangesResponseType createGetStateChangesResponseType() { - return new GetStateChangesResponseType(); - } - - /** - * Create an instance of {@link DeclareStateChangesRequestType } - * - */ - public DeclareStateChangesRequestType createDeclareStateChangesRequestType() { - return new DeclareStateChangesRequestType(); - } - - /** - * Create an instance of {@link DeclareStateChangesResponseType } - * - */ - public DeclareStateChangesResponseType createDeclareStateChangesResponseType() { - return new DeclareStateChangesResponseType(); - } - - /** - * Create an instance of {@link StateChangeEventType } - * - */ - public StateChangeEventType createStateChangeEventType() { - return new StateChangeEventType(); - } - - /** - * Create an instance of {@link StatusAntragsGeschaeftsfall } - * - */ - public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { - return new StatusAntragsGeschaeftsfall(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", name = "GetStateChangesRequest") - public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { - return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", name = "GetStateChangesResponse") - public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { - return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", name = "DeclareStateChangesRequest") - public JAXBElement createDeclareStateChangesRequest(DeclareStateChangesRequestType value) { - return new JAXBElement(_DeclareStateChangesRequest_QNAME, DeclareStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", name = "DeclareStateChangesResponse") - public JAXBElement createDeclareStateChangesResponse(DeclareStateChangesResponseType value) { - return new JAXBElement(_DeclareStateChangesResponse_QNAME, DeclareStateChangesResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StateChangeEventType.java deleted file mode 100644 index bbada9ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StateChangeEventType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -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; -import at.vvo.omds.types.omds3Types.r1_3_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjektIdType; - - -/** - * Standard-Event einer Statusänderung - * - *

Java-Klasse für StateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StateChangeEvent_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
- *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StateChangeEvent_Type", propOrder = { - "objektart", - "objektId", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "aenderungsdatum", - "statusGueltigAbDatum", - "bisherigerStatus", - "neuerStatus" -}) -public class StateChangeEventType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - @XmlSchemaType(name = "anySimpleType") - protected String geschaeftsfallArt; - @XmlElement(name = "Aenderungsdatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar aenderungsdatum; - @XmlElement(name = "StatusGueltigAbDatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar statusGueltigAbDatum; - @XmlElement(name = "BisherigerStatus") - protected AbstractStatusGeschaeftsfallType bisherigerStatus; - @XmlElement(name = "NeuerStatus", required = true) - protected AbstractStatusGeschaeftsfallType neuerStatus; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der aenderungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAenderungsdatum() { - return aenderungsdatum; - } - - /** - * Legt den Wert der aenderungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAenderungsdatum(XMLGregorianCalendar value) { - this.aenderungsdatum = value; - } - - /** - * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStatusGueltigAbDatum() { - return statusGueltigAbDatum; - } - - /** - * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { - this.statusGueltigAbDatum = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der neuerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getNeuerStatus() { - return neuerStatus; - } - - /** - * Legt den Wert der neuerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { - this.neuerStatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StatusAntragsGeschaeftsfall.java deleted file mode 100644 index d8454a0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/StatusAntragsGeschaeftsfall.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Status eines Antrags - * - *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StatusAntragsGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { - "antragstatus" -}) -public class StatusAntragsGeschaeftsfall - extends AbstractStatusGeschaeftsfallType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/package-info.java deleted file mode 100644 index ffecad83..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_3_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 5691549c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class -}) -public abstract class CalculateRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 4638d57b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class -}) -public abstract class CalculateResponseType - extends CommonProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index a7ce36f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class -}) -public abstract class CreateApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index aa25e9bd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class -}) -public abstract class CreateApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index ce3fedb8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class -}) -public abstract class CreateOfferRequestType - extends CommonProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index b2be420a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class -}) -public abstract class CreateOfferResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 798e2dbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 35faba89..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index e70dc2de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3types.v1_3_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3types.v1_3_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index e0120a14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,440 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SpezAntragKfzType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "zahlungsdaten", - "sepa", - "vinkulierung", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "zusaetzlicheAntragsdaten" -}) -@XmlSeeAlso({ - SpezAntragKfzType.class -}) -public abstract class SpezAntragType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 1ee5d4cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SpezBerechnungKfzType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type") -@XmlSeeAlso({ - SpezBerechnungKfzType.class -}) -public abstract class SpezBerechnungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index a9ba1372..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SpezOffertKfzType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertKfzType.class -}) -public abstract class SpezOffertType { - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index 6345195f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class -}) -public abstract class SubmitApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index c366d453..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class -}) -public abstract class SubmitApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 8ea77d9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/package-info.java deleted file mode 100644 index 90039a48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index cab57d7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 0dd8b896..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *         <element name="Zulassungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage", - "zulassungsdaten" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index 178c6cf3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index 059f7cc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *         <element name="Zulassungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage", - "zulassungsdaten" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index f132bbff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 76f357c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *         <element name="Zulassungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage", - "zulassungsdaten" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 6f5641b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link Offertantwort } - * - */ - public Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Offertantwort } - * - */ - public void setOffertantwort(Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 99e705a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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_3_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/FahrzeugzustandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/FahrzeugzustandType.java deleted file mode 100644 index e82891da..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/FahrzeugzustandType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Type Abbildung Fahrzeugzustand - * - *

Java-Klasse für Fahrzeugzustand_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeugzustand_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Zustandsbeschreibung" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Zustandsbeschreibung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeugzustand_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "zustandsbeschreibung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FahrzeugzustandType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "Zustandsbeschreibung", required = true) - @XmlSchemaType(name = "string") - protected ZustandsbeschreibungType zustandsbeschreibung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der zustandsbeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZustandsbeschreibungType } - * - */ - public ZustandsbeschreibungType getZustandsbeschreibung() { - return zustandsbeschreibung; - } - - /** - * Legt den Wert der zustandsbeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZustandsbeschreibungType } - * - */ - public void setZustandsbeschreibung(ZustandsbeschreibungType value) { - this.zustandsbeschreibung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 4a969a31..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import java.math.BigDecimal; -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 at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index f64cd4ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 72643b98..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index 749f53d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,265 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import java.math.BigDecimal; -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_3_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index f98ac6ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index 51162894..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,333 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FahrzeugzustandType } - * - */ - public FahrzeugzustandType createFahrzeugzustandType() { - return new FahrzeugzustandType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 5873b437..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 29e0238c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 6548b1f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 5073b4f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index 5e0f294e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,218 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "ersatzpolizzennummer", - "vorversicherungen", - "bonusMalus", - "zusaetzlicheKfzDaten", - "zusendungWeitereDokumente" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index 8b2ce02f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index b2dd999e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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_3_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index a727a913..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}SubmitApplicationRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type") -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index a442fd3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index 430024fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 5df4012a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index c3bb2d2d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index e18aff25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index 93f3e696..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index e343d1e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index a7a2c5ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZulassungsdatenType.java deleted file mode 100644 index 0f89ac83..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index b4340a26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,242 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VvdVertrag" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz}Fahrzeugzustand_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "vvdVertrag", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "VvdVertrag") - protected Boolean vvdVertrag; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected FahrzeugzustandType fahrzeugzustand; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der vvdVertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isVvdVertrag() { - return vvdVertrag; - } - - /** - * Legt den Wert der vvdVertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setVvdVertrag(Boolean value) { - this.vvdVertrag = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link FahrzeugzustandType } - * - */ - public FahrzeugzustandType getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FahrzeugzustandType } - * - */ - public void setFahrzeugzustand(FahrzeugzustandType value) { - this.fahrzeugzustand = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 20524b4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZustandsbeschreibungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZustandsbeschreibungType.java deleted file mode 100644 index 3cc8658c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/ZustandsbeschreibungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Zustandsbeschreibung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Zustandsbeschreibung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag eines Markenhändlers mit Beschreibung (Kopie erforderlich)"/>
- *     <enumeration value="Besichtigung durch ÖAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Zustandsbeschreibung_Type") -@XmlEnum -public enum ZustandsbeschreibungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag eines Markenh\u00e4ndlers mit Beschreibung (Kopie erforderlich)") - KAUFVERTRAG_EINES_MARKENHÄNDLERS_MIT_BESCHREIBUNG_KOPIE_ERFORDERLICH("Kaufvertrag eines Markenh\u00e4ndlers mit Beschreibung (Kopie erforderlich)"), - @XmlEnumValue("Besichtigung durch \u00d6AMTC") - BESICHTIGUNG_DURCH_ÖAMTC("Besichtigung durch \u00d6AMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ZustandsbeschreibungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ZustandsbeschreibungType fromValue(String v) { - for (ZustandsbeschreibungType c: ZustandsbeschreibungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/package-info.java deleted file mode 100644 index b1b547bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsService.java deleted file mode 100644 index b2e533d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_3_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:04:51.179+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-1-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-1-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-1-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 0c16379d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,448 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_3_0.service; - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.*; - -import java.util.logging.Logger; -import javax.jws.WebService; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:04:51.132+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-1-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/v1-3-0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType") - -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#initiateClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.InitiateClaimRequestType parameters)* - */ - public InitiateClaimResponseType initiateClaim(InitiateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation initiateClaim"); - System.out.println(parameters); - try { - InitiateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.UserDataRequest parameters)* - */ - public UserDataResponse getUserData(UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - UserDataResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.SearchClaimRequestType parameters)* - */ - public SearchClaimResponseType searchClaim(SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - SearchClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getStateChanges(at.vvo.omds.types.omds3types.v1_3_0.on1basis.GetStateChangesRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesResponseType getStateChanges(at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getStateChanges"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPolicy(DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkPartner(DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz.CreateOfferKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public OMDSPackageListResponse getOMDSPackageList(OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - OMDSPackageListResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkOffer(DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.OMDSPackageRequest parameters)* - */ - public OMDSPackageResponse getOMDSPackage(OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - OMDSPackageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.GetNumberOfDocumentsRequestType parameters)* - */ - public GetNumberOfDocumentsResponseType getNumberOfDocuments(GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.CreateClaimRequestType parameters)* - */ - public CreateClaimResponseType createClaim(CreateClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createClaim"); - System.out.println(parameters); - try { - CreateClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public DeepLinkBusinessObjectResponse deepLinkClaim(DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.ChangedClaimsListRequestType parameters)* - */ - public ChangedClaimsListResponseType getChangedClaimsList(ChangedClaimsListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getChangedClaimsList"); - System.out.println(parameters); - try { - ChangedClaimsListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getDocumentInfos(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.GetDocumentInfosRequestType parameters)* - */ - public GetDocumentInfosResponseType getDocumentInfos(GetDocumentInfosRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentInfos"); - System.out.println(parameters); - try { - GetDocumentInfosResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#addDocToClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.AddDocToClaimRequestType parameters)* - */ - public AddDocToClaimResponseType addDocToClaim(AddDocToClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToClaim"); - System.out.println(parameters); - try { - AddDocToClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz.CalculateKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseLightType getClaimLight(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaimLight"); - System.out.println(parameters); - try { - GetClaimResponseLightType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public ArcImageInfosResponse getArcImageInfos(ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - ArcImageInfosResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.LossEventListRequestType parameters)* - */ - public LossEventListResponseType getLossEventList(LossEventListRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getLossEventList"); - System.out.println(parameters); - try { - LossEventListResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3types.v1_3_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#declareEndpoint(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.DeclareEndpointRequestType parameters)* - */ - public DeclareEndpointResponseType declareEndpoint(DeclareEndpointRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation declareEndpoint"); - System.out.println(parameters); - try { - DeclareEndpointResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.LoginRequestType parameters)* - */ - public DeepLinkBusinessObjectResponse login(LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.ArcImageRequest parameters)* - */ - public ArcImageResponse getArcImage(ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - ArcImageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3types.v1_3_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.v1_3_0.servicetypes.SpezifikationSchadenType parameters)* - */ - public GetClaimResponseType getClaim(SpezifikationSchadenType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - GetClaimResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType.java deleted file mode 100644 index 3d168c58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,204 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_3_0.service; - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.*; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:04:51.163+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-1-0", name = "omdsServicePortType") -@XmlSeeAlso({ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_3_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_9.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_3_0.on1basis.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:initiateClaim") - @WebResult(name = "InitiateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public InitiateClaimResponseType initiateClaim( - @WebParam(partName = "parameters", name = "InitiateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - InitiateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public SearchClaimResponseType searchClaim( - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getStateChanges") - @WebResult(name = "GetStateChangesResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesResponseType getStateChanges( - @WebParam(partName = "parameters", name = "GetStateChangesRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - @WebParam(partName = "parameters", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - @WebParam(partName = "parameters", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createClaim") - @WebResult(name = "CreateClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public CreateClaimResponseType createClaim( - @WebParam(partName = "parameters", name = "CreateClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - CreateClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getChangedClaimsList") - @WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ChangedClaimsListResponseType getChangedClaimsList( - @WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ChangedClaimsListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentInfos") - @WebResult(name = "GetDocumentInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetDocumentInfosResponseType getDocumentInfos( - @WebParam(partName = "parameters", name = "GetDocumentInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - GetDocumentInfosRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToClaim") - @WebResult(name = "AddDocToClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public AddDocToClaimResponseType addDocToClaim( - @WebParam(partName = "parameters", name = "AddDocToClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - AddDocToClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - @WebParam(partName = "parameters", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaimLight") - @WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseLightType getClaimLight( - @WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getLossEventList") - @WebResult(name = "LossEventListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public LossEventListResponseType getLossEventList( - @WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LossEventListRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - @WebParam(partName = "parameters", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-1-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:declareEndpoint") - @WebResult(name = "DeclareEndpointResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeclareEndpointResponseType declareEndpoint( - @WebParam(partName = "parameters", name = "DeclareEndpointRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - DeclareEndpointRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public GetClaimResponseType getClaim( - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - SpezifikationSchadenType parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index f8df6e86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,363 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import at.vvo.omds.types.omds3Types.r1_3_0.servicetypes.*; - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:04:51.033+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-1-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking initiateClaim..."); - InitiateClaimRequestType _initiateClaim_parameters = null; - try { - InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters); - System.out.println("initiateClaim.result=" + _initiateClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - UserDataRequest _getUserData_parameters = null; - try { - UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking searchClaim..."); - SearchClaimRequestType _searchClaim_parameters = null; - try { - SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getStateChanges..."); - at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesRequestType _getStateChanges_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_3_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters); - System.out.println("getStateChanges.result=" + _getStateChanges__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_parameters); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackageList..."); - OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createClaim..."); - CreateClaimRequestType _createClaim_parameters = null; - try { - CreateClaimResponseType _createClaim__return = port.createClaim(_createClaim_parameters); - System.out.println("createClaim.result=" + _createClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getChangedClaimsList..."); - ChangedClaimsListRequestType _getChangedClaimsList_parameters = null; - try { - ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters); - System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentInfos..."); - GetDocumentInfosRequestType _getDocumentInfos_parameters = null; - try { - GetDocumentInfosResponseType _getDocumentInfos__return = port.getDocumentInfos(_getDocumentInfos_parameters); - System.out.println("getDocumentInfos.result=" + _getDocumentInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToClaim..."); - AddDocToClaimRequestType _addDocToClaim_parameters = null; - try { - AddDocToClaimResponseType _addDocToClaim__return = port.addDocToClaim(_addDocToClaim_parameters); - System.out.println("addDocToClaim.result=" + _addDocToClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaimLight..."); - SpezifikationSchadenType _getClaimLight_parameters = null; - try { - GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters); - System.out.println("getClaimLight.result=" + _getClaimLight__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getLossEventList..."); - LossEventListRequestType _getLossEventList_parameters = null; - try { - LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters); - System.out.println("getLossEventList.result=" + _getLossEventList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_3_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_parameters); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking declareEndpoint..."); - DeclareEndpointRequestType _declareEndpoint_parameters = null; - try { - DeclareEndpointResponseType _declareEndpoint__return = port.declareEndpoint(_declareEndpoint_parameters); - System.out.println("declareEndpoint.result=" + _declareEndpoint__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - LoginRequestType _login_parameters = null; - try { - DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - ArcImageRequest _getArcImage_parameters = null; - try { - ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaim..."); - SpezifikationSchadenType _getClaim_parameters = null; - try { - GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/ServiceFaultMsg.java deleted file mode 100644 index f7354565..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.service; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-06-12T15:04:51.111+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimRequestType.java deleted file mode 100644 index b2e5e64a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimRequestType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 des Requestobjekts, um Dokument zu Schaden hinzuzufügen - * - *

Java-Klasse für AddDocToClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *         <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimRequest_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "schadennr", - "dokument" -}) -public class AddDocToClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimResponseType.java deleted file mode 100644 index ac7d9286..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/AddDocToClaimResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Schadensdokument übergeben wurde - * - *

Java-Klasse für AddDocToClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="ArcImageId" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToClaimResponse_Type", propOrder = { - "arcImageIdOrServiceFault" -}) -public class AddDocToClaimResponseType { - - @XmlElements({ - @XmlElement(name = "ArcImageId", type = ArcImageInfo.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List arcImageIdOrServiceFault; - - /** - * Gets the value of the arcImageIdOrServiceFault property. - * - *

- * 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 set method for the arcImageIdOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageIdOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * {@link ServiceFault } - * - * - */ - public List getArcImageIdOrServiceFault() { - if (arcImageIdOrServiceFault == null) { - arcImageIdOrServiceFault = new ArrayList(); - } - return this.arcImageIdOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcContent.java deleted file mode 100644 index 111d3722..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - protected byte[] arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setArcImage(byte[] value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 34bea305..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index a11b2485..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,274 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 7b6092d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 0f73a797..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index c393efa4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BearbStandSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BearbStandSchadenType.java deleted file mode 100644 index a8a9a330..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BearbStandSchadenType.java +++ /dev/null @@ -1,118 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BearbStandSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BearbStandSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BearbStandSchaden_Type", propOrder = { - "bearbStandCd", - "schadennr", - "sachbearbVU" -}) -public class BearbStandSchadenType { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr", required = true) - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonSchadenType.java deleted file mode 100644 index 6db3c04a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonSchadenType.java +++ /dev/null @@ -1,190 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Eine an einem Schaden beteiligte Person - * - *

Java-Klasse für BeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:omds20}PERSON_Type"/>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePersonSchaden_Type", propOrder = { - "person", - "geschInteresseLfnr" -}) -public class BeteiligtePersonSchadenType { - - @XmlElement(name = "Person", required = true) - protected PERSONType person; - @XmlElement(name = "GeschInteresseLfnr") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * 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; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetLfnr(String value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonType.java deleted file mode 100644 index b50917b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonType.java +++ /dev/null @@ -1,182 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "informationenPerson", - "geschInteresseLfnr" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - @XmlElement(name = "GeschInteresseLfnr", type = Long.class) - @XmlSchemaType(name = "unsignedInt") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonVertragType.java deleted file mode 100644 index b0d28cbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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:omds3ServiceTypes-1-1-0}InformationenPerson"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = { - "lfnr", - "informationenPerson" -}) -public class BeteiligtePersonVertragType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "InformationenPerson", required = true) - protected InformationenPersonType informationenPerson; - - /** - * 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 InformationenPersonType } - * - */ - public InformationenPersonType getInformationenPerson() { - return informationenPerson; - } - - /** - * Legt den Wert der informationenPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InformationenPersonType } - * - */ - public void setInformationenPerson(InformationenPersonType value) { - this.informationenPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListRequestType.java deleted file mode 100644 index e4522e77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListRequestType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Änderungen an Schäden zu erhalten - * - *

Java-Klasse für ChangedClaimsListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <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="Changed"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class ChangedClaimsListRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType 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 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 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 zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseResultType.java deleted file mode 100644 index 8a71bc44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseResultType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - *

Java-Klasse für ChangedClaimsListResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="GeaenderteObjekte" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "geaenderteObjekte" -}) -public class ChangedClaimsListResponseResultType { - - @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; - @XmlElement(name = "GeaenderteObjekte") - protected List geaenderteObjekte; - - /** - * 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; - } - - /** - * Gets the value of the geaenderteObjekte property. - * - *

- * 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 set method for the geaenderteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeaenderteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenStatusType } - * - * - */ - public List getGeaenderteObjekte() { - if (geaenderteObjekte == null) { - geaenderteObjekte = new ArrayList(); - } - return this.geaenderteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseType.java deleted file mode 100644 index 499b0c4f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ChangedClaimsListResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von geänderten Schäden für einen bestimmten Zeitraum - * - *

Java-Klasse für ChangedClaimsListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ChangedClaimsListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:omds3ServiceTypes-1-1-0}ChangedClaimsListResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ChangedClaimsListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class ChangedClaimsListResponseType { - - @XmlElement(name = "Result") - protected ChangedClaimsListResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link ChangedClaimsListResponseResultType } - * - */ - public ChangedClaimsListResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ChangedClaimsListResponseResultType } - * - */ - public void setResult(ChangedClaimsListResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimRequestType.java deleted file mode 100644 index 0fb3e5b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimRequestType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für CreateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="ReferenzGeschaeftsfallId" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}MeldungSchaden_Type" maxOccurs="unbounded"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimRequest_Type", propOrder = { - "vuNr", - "referenzGeschaeftsfallId", - "ordnungsbegriffZuordFremd", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "schadenmelder" -}) -public class CreateClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ReferenzGeschaeftsfallId") - protected String referenzGeschaeftsfallId; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzGeschaeftsfallId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzGeschaeftsfallId() { - return referenzGeschaeftsfallId; - } - - /** - * Legt den Wert der referenzGeschaeftsfallId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzGeschaeftsfallId(String value) { - this.referenzGeschaeftsfallId = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MeldungSchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimResponseType.java deleted file mode 100644 index 097b34b8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CreateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CreateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}Meldungszusammenfassung_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class CreateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CredentialsType.java deleted file mode 100644 index 7cf2f9f8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/CredentialsType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können. - * - *

Java-Klasse für Credentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Credentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Credentials_Type") -public abstract class CredentialsType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointRequestType.java deleted file mode 100644 index f1fec90f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointRequestType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Typ für den DeclareEndpointRequest - * - *

Java-Klasse für DeclareEndpointRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BasisUrlEndpoint">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}ArtAuthentifizierung"/>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *         <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointRequest_Type", propOrder = { - "vuNr", - "basisUrlEndpoint", - "artAuthentifizierung", - "credentials", - "authorizationFilter" -}) -public class DeclareEndpointRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BasisUrlEndpoint", required = true) - protected String basisUrlEndpoint; - @XmlElement(name = "ArtAuthentifizierung", required = true) - protected String artAuthentifizierung; - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - @XmlElement(name = "AuthorizationFilter") - protected AuthorizationFilter authorizationFilter; - - /** - * 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 basisUrlEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBasisUrlEndpoint() { - return basisUrlEndpoint; - } - - /** - * Legt den Wert der basisUrlEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBasisUrlEndpoint(String value) { - this.basisUrlEndpoint = value; - } - - /** - * Ruft den Wert der artAuthentifizierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtAuthentifizierung() { - return artAuthentifizierung; - } - - /** - * Legt den Wert der artAuthentifizierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtAuthentifizierung(String value) { - this.artAuthentifizierung = value; - } - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - - /** - * Ruft den Wert der authorizationFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - public AuthorizationFilter getAuthorizationFilter() { - return authorizationFilter; - } - - /** - * Legt den Wert der authorizationFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - public void setAuthorizationFilter(AuthorizationFilter value) { - this.authorizationFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointResponseType.java deleted file mode 100644 index 6fbc459c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareEndpointResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Response um als Makler der VU einen Endpoint bekannt zu geben - * - *

Java-Klasse für DeclareEndpointResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointResponse_Type", propOrder = { - "registrierteBasisUrlMaklerEndpoint", - "serviceFault" -}) -public class DeclareEndpointResponseType { - - @XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint") - protected String registrierteBasisUrlMaklerEndpoint; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrierteBasisUrlMaklerEndpoint() { - return registrierteBasisUrlMaklerEndpoint; - } - - /** - * Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrierteBasisUrlMaklerEndpoint(String value) { - this.registrierteBasisUrlMaklerEndpoint = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusRequestType.java deleted file mode 100644 index 2401c49d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusRequestType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 des Request, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wird - * - *

Java-Klasse für DeclareNewClaimStatusRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="alt" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *         <element name="neu" type="{urn:omds3ServiceTypes-1-1-0}SchadenStatus_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusRequest_Type", propOrder = { - "alt", - "neu" -}) -public class DeclareNewClaimStatusRequestType { - - @XmlElement(required = true) - protected SchadenStatusType alt; - @XmlElement(required = true) - protected SchadenStatusType neu; - - /** - * Ruft den Wert der alt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getAlt() { - return alt; - } - - /** - * Legt den Wert der alt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setAlt(SchadenStatusType value) { - this.alt = value; - } - - /** - * Ruft den Wert der neu-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenStatusType } - * - */ - public SchadenStatusType getNeu() { - return neu; - } - - /** - * Legt den Wert der neu-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenStatusType } - * - */ - public void setNeu(SchadenStatusType value) { - this.neu = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusResponseType.java deleted file mode 100644 index 2e068c66..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeclareNewClaimStatusResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn die Zusammenlegung von Schadenfällen bekanntgegeben wurde - * - *

Java-Klasse für DeclareNewClaimStatusResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareNewClaimStatusResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareNewClaimStatusResponse_Type") -public class DeclareNewClaimStatusResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 1bd4ca4b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 1c01a787..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index bc902430..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 566edb87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 793ec697..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DocumentInfosResponseResultType.java deleted file mode 100644 index a825ab83..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3ServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DokumentenReferenzType.java deleted file mode 100644 index 62a274dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/DokumentenReferenzType.java +++ /dev/null @@ -1,264 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="ReferenzWeitereDokumente" type="{urn:omds3ServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentAnlageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentAnlageType.java deleted file mode 100644 index 140bcfad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentAnlageType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - *

Java-Klasse für ErgebnisDokumentAnlage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgebnisDokumentAnlage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <choice>
- *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgebnisDokumentAnlage_Type", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" -}) -public class ErgebnisDokumentAnlageType { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentType.java deleted file mode 100644 index 5158e5c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisDokumentType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - *

Java-Klasse für ErgebnisDokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgebnisDokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <choice>
- *           <element name="Dokument" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *           <element name="FehlerDokumentenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgebnisDokument_Type", propOrder = { - "lfdNr", - "dokument", - "fehlerDokumentenanlage" -}) -public class ErgebnisDokumentType { - - @XmlElement(name = "LfdNr") - protected int lfdNr; - @XmlElement(name = "Dokument") - protected ArcImageInfo dokument; - @XmlElement(name = "FehlerDokumentenanlage") - protected ServiceFault fehlerDokumentenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public int getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(int value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setDokument(ArcImageInfo value) { - this.dokument = value; - } - - /** - * Ruft den Wert der fehlerDokumentenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerDokumentenanlage() { - return fehlerDokumentenanlage; - } - - /** - * Legt den Wert der fehlerDokumentenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerDokumentenanlage(ServiceFault value) { - this.fehlerDokumentenanlage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisSchadenType.java deleted file mode 100644 index 0d295f53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ErgebnisSchadenType.java +++ /dev/null @@ -1,116 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - *

Java-Klasse für ErgebnisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgebnisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <choice>
- *           <element name="Schadenanlage" type="{urn:omds3ServiceTypes-1-1-0}Schadenanlage_Type"/>
- *           <element name="FehlerSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgebnisSchaden_Type", propOrder = { - "lfdNr", - "schadenanlage", - "fehlerSchadenanlage" -}) -public class ErgebnisSchadenType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Schadenanlage") - protected SchadenanlageType schadenanlage; - @XmlElement(name = "FehlerSchadenanlage") - protected ServiceFault fehlerSchadenanlage; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der schadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenanlageType } - * - */ - public SchadenanlageType getSchadenanlage() { - return schadenanlage; - } - - /** - * Legt den Wert der schadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenanlageType } - * - */ - public void setSchadenanlage(SchadenanlageType value) { - this.schadenanlage = value; - } - - /** - * Ruft den Wert der fehlerSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getFehlerSchadenanlage() { - return fehlerSchadenanlage; - } - - /** - * Legt den Wert der fehlerSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setFehlerSchadenanlage(ServiceFault value) { - this.fehlerSchadenanlage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeokoordinatenType.java deleted file mode 100644 index 0a95afe8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:omds3ServiceTypes-1-1-0") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesInteresseType.java deleted file mode 100644 index 08c7aa72..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "geschInteresseLfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int geschInteresseLfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - */ - public int getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - */ - public void setGeschInteresseLfnr(int value) { - this.geschInteresseLfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 5d6cd3cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektKfzType.java deleted file mode 100644 index da24bb9d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseLightType.java deleted file mode 100644 index 26a27645..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseLightType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Leichtgewichtiges Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponseLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponseLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}SchadenereignisLight_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponseLight_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseLightType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisLightType schadenereignis; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisLightType } - * - */ - public void setSchadenereignis(SchadenereignisLightType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseType.java deleted file mode 100644 index c3169a11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetClaimResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Schadenereignis" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis", - "serviceFault" -}) -public class GetClaimResponseType { - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosRequestType.java deleted file mode 100644 index f672c173..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosRequestType.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetDocumentInfosRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentInfosRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosResponseType.java deleted file mode 100644 index 17ae84ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetDocumentInfosResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * ResponseTyp mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentInfosResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentInfosResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:omds3ServiceTypes-1-1-0}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentInfosResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentInfosResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 45ad4008..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,178 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 2a598100..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Typ für den Response einer Anzahl von Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index d49f70fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InformationenPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InformationenPersonType.java deleted file mode 100644 index 1a43502f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InformationenPersonType.java +++ /dev/null @@ -1,402 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_9.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_9.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_9.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_9.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_9.ELTextType; -import at.vvo.omds.types.omds2Types.v2_9.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_9.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_9.SONSTIGEPERSONType; - - -/** - * Typ zur Übergabe personenbezogener Daten, entspricht weitgehend OMDS Datensatz PERSON_Type, die Personennr ist aber optional. Die Person kann eine Adresse enthalten. Die Adresse hat aber keine Id. - * - *

Java-Klasse für InformationenPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InformationenPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <choice maxOccurs="unbounded" minOccurs="0">
- *           <element ref="{urn:omds20}EL-Anzahl"/>
- *           <element ref="{urn:omds20}EL-Einstufung"/>
- *           <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
- *           <element ref="{urn:omds20}EL-Identifizierung"/>
- *           <element ref="{urn:omds20}EL-Kommunikation"/>
- *           <element ref="{urn:omds20}EL-Legitimation"/>
- *           <element ref="{urn:omds20}EL-Text"/>
- *         </choice>
- *       </sequence>
- *       <attGroup ref="{urn:omds20}Adresse_Attribute"/>
- *       <attribute name="Personennr" type="{urn:omds20}Personennr" />
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InformationenPerson_Type", propOrder = { - "natuerlicheperson", - "sonstigeperson", - "elAnzahlOrELEinstufungOrELEntscheidungsfrage" -}) -public class InformationenPersonType { - - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElements({ - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20", type = ELAnzahlType.class), - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", type = ELEinstufungType.class), - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20", type = ELEntscheidungsfrageType.class), - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20", type = ELIdentifizierungType.class), - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", type = ELKommunikationType.class), - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20", type = ELLegitimationType.class), - @XmlElement(name = "EL-Text", namespace = "urn:omds20", type = ELTextType.class) - }) - protected List elAnzahlOrELEinstufungOrELEntscheidungsfrage; - @XmlAttribute(name = "Personennr", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String personennr; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - @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; - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * 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 set method for the elAnzahlOrELEinstufungOrELEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * {@link ELEinstufungType } - * {@link ELEntscheidungsfrageType } - * {@link ELIdentifizierungType } - * {@link ELKommunikationType } - * {@link ELLegitimationType } - * {@link ELTextType } - * - * - */ - public List getELAnzahlOrELEinstufungOrELEntscheidungsfrage() { - if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) { - elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList(); - } - return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimRequestType.java deleted file mode 100644 index aab7673c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimRequestType.java +++ /dev/null @@ -1,359 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 für die Durchführung einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="ReferenzIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimRequest_Type", propOrder = { - "vuNr", - "referenzIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "polizzennr", - "vertragsID", - "ereigniszpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "dokumente", - "schadenmelder" -}) -public class InitiateClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ReferenzIdGeschaeftsfall") - protected String referenzIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 referenzIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenzIdGeschaeftsfall() { - return referenzIdGeschaeftsfall; - } - - /** - * Legt den Wert der referenzIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenzIdGeschaeftsfall(String value) { - this.referenzIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimResponseType.java deleted file mode 100644 index 5baf7bce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/InitiateClaimResponseType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Anworttyp beim Erzeugen einer einfachen Schadenmeldung - * - *

Java-Klasse für InitiateClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InitiateClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MeldungsZusammenfassung" type="{urn:omds3ServiceTypes-1-1-0}MeldungszusammenfassungInitiateClaim_Type" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InitiateClaimResponse_Type", propOrder = { - "meldungsZusammenfassung", - "meldedat", - "serviceFault" -}) -public class InitiateClaimResponseType { - - @XmlElement(name = "MeldungsZusammenfassung") - protected MeldungszusammenfassungInitiateClaimType meldungsZusammenfassung; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der meldungsZusammenfassung-Eigenschaft ab. - * - * @return - * possible object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType getMeldungsZusammenfassung() { - return meldungsZusammenfassung; - } - - /** - * Legt den Wert der meldungsZusammenfassung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public void setMeldungsZusammenfassung(MeldungszusammenfassungInitiateClaimType value) { - this.meldungsZusammenfassung = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 3e398bf9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListRequestType.java deleted file mode 100644 index aacbb2f8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListRequestType.java +++ /dev/null @@ -1,234 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Typ für Request um Liste mit Schadens-Events zu erhalten - * - *

Java-Klasse für LossEventListRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <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="Ereigniszeitpunkt"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListRequest_Type", propOrder = { - "vuNr", - "authFilter", - "polizzennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class LossEventListRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Polizzennr") - protected List polizzennr; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType 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 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 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; - } - - /** - * Gets the value of the polizzennr property. - * - *

- * 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 set method for the polizzennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolizzennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getPolizzennr() { - if (polizzennr == null) { - polizzennr = new ArrayList(); - } - return this.polizzennr; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseResultType.java deleted file mode 100644 index d121e942..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseResultType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - *

Java-Klasse für LossEventListResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="LossEvents" type="{urn:omds3ServiceTypes-1-1-0}LossEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "lossEvents" -}) -public class LossEventListResponseResultType { - - @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; - @XmlElement(name = "LossEvents") - protected List lossEvents; - - /** - * 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; - } - - /** - * Gets the value of the lossEvents property. - * - *

- * 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 set method for the lossEvents property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLossEvents().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LossEventType } - * - * - */ - public List getLossEvents() { - if (lossEvents == null) { - lossEvents = new ArrayList(); - } - return this.lossEvents; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseType.java deleted file mode 100644 index d6dcd302..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventListResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Typ für Response mit einer Liste von Schadensevents für einen bestimmten Zeitraum - * - *

Java-Klasse für LossEventListResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventListResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:omds3ServiceTypes-1-1-0}LossEventListResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventListResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class LossEventListResponseType { - - @XmlElement(name = "Result") - protected LossEventListResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link LossEventListResponseResultType } - * - */ - public LossEventListResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link LossEventListResponseResultType } - * - */ - public void setResult(LossEventListResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventRegisteredResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventRegisteredResponseType.java deleted file mode 100644 index 2f855ed8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventRegisteredResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ des Response, wenn der Eintritt eines Schadenereignisses kommuniziert wurde - * - *

Java-Klasse für LossEventRegisteredResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEventRegisteredResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEventRegisteredResponse_Type") -public class LossEventRegisteredResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventType.java deleted file mode 100644 index ec2efb71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/LossEventType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Objekttyp mit welchem der Eintritt eines Schadenereignisses kommuniziert wird - * - *

Java-Klasse für LossEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LossEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LossEvent_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "ereigniszpkt", - "ereignisbeschrTxt" -}) -public class LossEventType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungSchadenType.java deleted file mode 100644 index 26645f25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungSchadenType.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Typ um ein Schadenobjekt in der Schadenmeldung abzubilden - * - *

Java-Klasse für MeldungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" type="{urn:omds3ServiceTypes-1-1-0}ReferenzAufBeteiligtePersonSchaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungSchaden_Type", propOrder = { - "schadenzuordnung", - "polizzennr", - "vertragsID", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class MeldungSchadenType { - - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ReferenzAufBeteiligtePersonSchadenType } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java deleted file mode 100644 index 8dc9fed8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungInitiateClaimType.java +++ /dev/null @@ -1,193 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für MeldungszusammenfassungInitiateClaim_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="MeldungszusammenfassungInitiateClaim_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" type="{urn:omds3ServiceTypes-1-1-0}ErgebnisDokumentAnlage_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}BearbStandSchaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MeldungszusammenfassungInitiateClaim_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "schaeden" -}) -public class MeldungszusammenfassungInitiateClaimType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumentAnlageType } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BearbStandSchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungType.java deleted file mode 100644 index 69e240ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/MeldungszusammenfassungType.java +++ /dev/null @@ -1,193 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer, Dokumenten-Ids sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für Meldungszusammenfassung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Meldungszusammenfassung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisDokumente" type="{urn:omds3ServiceTypes-1-1-0}ErgebnisDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ErgebnisSchaeden" type="{urn:omds3ServiceTypes-1-1-0}ErgebnisSchaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Meldungszusammenfassung_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "ergebnisDokumente", - "ergebnisSchaeden" -}) -public class MeldungszusammenfassungType { - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "ErgebnisDokumente") - protected List ergebnisDokumente; - @XmlElement(name = "ErgebnisSchaeden", required = true) - protected List ergebnisSchaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the ergebnisDokumente property. - * - *

- * 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 set method for the ergebnisDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisDokumentType } - * - * - */ - public List getErgebnisDokumente() { - if (ergebnisDokumente == null) { - ergebnisDokumente = new ArrayList(); - } - return this.ergebnisDokumente; - } - - /** - * Gets the value of the ergebnisSchaeden property. - * - *

- * 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 set method for the ergebnisSchaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgebnisSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgebnisSchadenType } - * - * - */ - public List getErgebnisSchaeden() { - if (ergebnisSchaeden == null) { - ergebnisSchaeden = new ArrayList(); - } - return this.ergebnisSchaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/NatPersonType.java deleted file mode 100644 index a4c5bf50..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/NatPersonType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:omds3ServiceTypes-1-1-0") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index bae66f30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_9.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_9.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_3_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 08bc7eb4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 7dd3c4fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index b8557ce1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,126 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index c51888e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 347270cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,1331 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.v1_3_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - private final static QName _CreateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimRequest"); - private final static QName _InformationenPerson_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InformationenPerson"); - private final static QName _CreateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "CreateClaimResponse"); - private final static QName _InitiateClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimRequest"); - private final static QName _InitiateClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "InitiateClaimResponse"); - private final static QName _AddDocToClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimRequest"); - private final static QName _AddDocToClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "AddDocToClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimResponse"); - private final static QName _GetClaimLightRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightRequest"); - private final static QName _GetClaimLightResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetClaimLightResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosRequest"); - private final static QName _GetDocumentInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "GetDocumentInfosResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SearchClaimResponse"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "Schadenzuordnung"); - private final static QName _ChangedClaimsListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListRequest"); - private final static QName _ChangedClaimsListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ChangedClaimsListResponse"); - private final static QName _LossEventListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListRequest"); - private final static QName _LossEventListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventListResponse"); - private final static QName _IdGeschaeftsfallSchadenereignis_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenereignis"); - private final static QName _IdGeschaeftsfallSchadenanlage_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "IdGeschaeftsfallSchadenanlage"); - private final static QName _DeclareEndpointRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointRequest"); - private final static QName _ArtAuthentifizierung_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "ArtAuthentifizierung"); - private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareEndpointResponse"); - private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenRequest"); - private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "SecurityContextTokenResponse"); - private final static QName _DeclareNewClaimStatusRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusRequest"); - private final static QName _DeclareNewClaimStatusResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "DeclareNewClaimStatusResponse"); - private final static QName _LossEventRegisteredRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredRequest"); - private final static QName _LossEventRegisteredResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "LossEventRegisteredResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.v1_3_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link CreateClaimRequestType } - * - */ - public CreateClaimRequestType createCreateClaimRequestType() { - return new CreateClaimRequestType(); - } - - /** - * Create an instance of {@link InformationenPersonType } - * - */ - public InformationenPersonType createInformationenPersonType() { - return new InformationenPersonType(); - } - - /** - * Create an instance of {@link CreateClaimResponseType } - * - */ - public CreateClaimResponseType createCreateClaimResponseType() { - return new CreateClaimResponseType(); - } - - /** - * Create an instance of {@link InitiateClaimRequestType } - * - */ - public InitiateClaimRequestType createInitiateClaimRequestType() { - return new InitiateClaimRequestType(); - } - - /** - * Create an instance of {@link InitiateClaimResponseType } - * - */ - public InitiateClaimResponseType createInitiateClaimResponseType() { - return new InitiateClaimResponseType(); - } - - /** - * Create an instance of {@link AddDocToClaimRequestType } - * - */ - public AddDocToClaimRequestType createAddDocToClaimRequestType() { - return new AddDocToClaimRequestType(); - } - - /** - * Create an instance of {@link AddDocToClaimResponseType } - * - */ - public AddDocToClaimResponseType createAddDocToClaimResponseType() { - return new AddDocToClaimResponseType(); - } - - /** - * Create an instance of {@link SpezifikationSchadenType } - * - */ - public SpezifikationSchadenType createSpezifikationSchadenType() { - return new SpezifikationSchadenType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimResponseLightType } - * - */ - public GetClaimResponseLightType createGetClaimResponseLightType() { - return new GetClaimResponseLightType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentInfosRequestType } - * - */ - public GetDocumentInfosRequestType createGetDocumentInfosRequestType() { - return new GetDocumentInfosRequestType(); - } - - /** - * Create an instance of {@link GetDocumentInfosResponseType } - * - */ - public GetDocumentInfosResponseType createGetDocumentInfosResponseType() { - return new GetDocumentInfosResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link ChangedClaimsListRequestType } - * - */ - public ChangedClaimsListRequestType createChangedClaimsListRequestType() { - return new ChangedClaimsListRequestType(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseType } - * - */ - public ChangedClaimsListResponseType createChangedClaimsListResponseType() { - return new ChangedClaimsListResponseType(); - } - - /** - * Create an instance of {@link LossEventListRequestType } - * - */ - public LossEventListRequestType createLossEventListRequestType() { - return new LossEventListRequestType(); - } - - /** - * Create an instance of {@link LossEventListResponseType } - * - */ - public LossEventListResponseType createLossEventListResponseType() { - return new LossEventListResponseType(); - } - - /** - * Create an instance of {@link DeclareEndpointRequestType } - * - */ - public DeclareEndpointRequestType createDeclareEndpointRequestType() { - return new DeclareEndpointRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointResponseType } - * - */ - public DeclareEndpointResponseType createDeclareEndpointResponseType() { - return new DeclareEndpointResponseType(); - } - - /** - * Create an instance of {@link SecurityContextTokenRequestType } - * - */ - public SecurityContextTokenRequestType createSecurityContextTokenRequestType() { - return new SecurityContextTokenRequestType(); - } - - /** - * Create an instance of {@link SecurityContextTokenResponseType } - * - */ - public SecurityContextTokenResponseType createSecurityContextTokenResponseType() { - return new SecurityContextTokenResponseType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusRequestType } - * - */ - public DeclareNewClaimStatusRequestType createDeclareNewClaimStatusRequestType() { - return new DeclareNewClaimStatusRequestType(); - } - - /** - * Create an instance of {@link DeclareNewClaimStatusResponseType } - * - */ - public DeclareNewClaimStatusResponseType createDeclareNewClaimStatusResponseType() { - return new DeclareNewClaimStatusResponseType(); - } - - /** - * Create an instance of {@link LossEventType } - * - */ - public LossEventType createLossEventType() { - return new LossEventType(); - } - - /** - * Create an instance of {@link LossEventRegisteredResponseType } - * - */ - public LossEventRegisteredResponseType createLossEventRegisteredResponseType() { - return new LossEventRegisteredResponseType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link MeldungSchadenType } - * - */ - public MeldungSchadenType createMeldungSchadenType() { - return new MeldungSchadenType(); - } - - /** - * Create an instance of {@link SchadenmelderType } - * - */ - public SchadenmelderType createSchadenmelderType() { - return new SchadenmelderType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungType } - * - */ - public MeldungszusammenfassungType createMeldungszusammenfassungType() { - return new MeldungszusammenfassungType(); - } - - /** - * Create an instance of {@link ErgebnisDokumentType } - * - */ - public ErgebnisDokumentType createErgebnisDokumentType() { - return new ErgebnisDokumentType(); - } - - /** - * Create an instance of {@link ErgebnisSchadenType } - * - */ - public ErgebnisSchadenType createErgebnisSchadenType() { - return new ErgebnisSchadenType(); - } - - /** - * Create an instance of {@link SchadenanlageType } - * - */ - public SchadenanlageType createSchadenanlageType() { - return new SchadenanlageType(); - } - - /** - * Create an instance of {@link MeldungszusammenfassungInitiateClaimType } - * - */ - public MeldungszusammenfassungInitiateClaimType createMeldungszusammenfassungInitiateClaimType() { - return new MeldungszusammenfassungInitiateClaimType(); - } - - /** - * Create an instance of {@link BearbStandSchadenType } - * - */ - public BearbStandSchadenType createBearbStandSchadenType() { - return new BearbStandSchadenType(); - } - - /** - * Create an instance of {@link ErgebnisDokumentAnlageType } - * - */ - public ErgebnisDokumentAnlageType createErgebnisDokumentAnlageType() { - return new ErgebnisDokumentAnlageType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link BeteiligtePersonSchadenType } - * - */ - public BeteiligtePersonSchadenType createBeteiligtePersonSchadenType() { - return new BeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SchadenbeteiligtePersonType } - * - */ - public SchadenbeteiligtePersonType createSchadenbeteiligtePersonType() { - return new SchadenbeteiligtePersonType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link ChangedClaimsListResponseResultType } - * - */ - public ChangedClaimsListResponseResultType createChangedClaimsListResponseResultType() { - return new ChangedClaimsListResponseResultType(); - } - - /** - * Create an instance of {@link SchadenStatusType } - * - */ - public SchadenStatusType createSchadenStatusType() { - return new SchadenStatusType(); - } - - /** - * Create an instance of {@link SchadenInfoType } - * - */ - public SchadenInfoType createSchadenInfoType() { - return new SchadenInfoType(); - } - - /** - * Create an instance of {@link LossEventListResponseResultType } - * - */ - public LossEventListResponseResultType createLossEventListResponseResultType() { - return new LossEventListResponseResultType(); - } - - /** - * Create an instance of {@link UsernamePasswordCredentialsType } - * - */ - public UsernamePasswordCredentialsType createUsernamePasswordCredentialsType() { - return new UsernamePasswordCredentialsType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimRequest") - public JAXBElement createCreateClaimRequest(CreateClaimRequestType value) { - return new JAXBElement(_CreateClaimRequest_QNAME, CreateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InformationenPersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InformationenPerson") - public JAXBElement createInformationenPerson(InformationenPersonType value) { - return new JAXBElement(_InformationenPerson_QNAME, InformationenPersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "CreateClaimResponse") - public JAXBElement createCreateClaimResponse(CreateClaimResponseType value) { - return new JAXBElement(_CreateClaimResponse_QNAME, CreateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimRequest") - public JAXBElement createInitiateClaimRequest(InitiateClaimRequestType value) { - return new JAXBElement(_InitiateClaimRequest_QNAME, InitiateClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InitiateClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "InitiateClaimResponse") - public JAXBElement createInitiateClaimResponse(InitiateClaimResponseType value) { - return new JAXBElement(_InitiateClaimResponse_QNAME, InitiateClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimRequest") - public JAXBElement createAddDocToClaimRequest(AddDocToClaimRequestType value) { - return new JAXBElement(_AddDocToClaimRequest_QNAME, AddDocToClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "AddDocToClaimResponse") - public JAXBElement createAddDocToClaimResponse(AddDocToClaimResponseType value) { - return new JAXBElement(_AddDocToClaimResponse_QNAME, AddDocToClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationSchadenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightRequest") - public JAXBElement createGetClaimLightRequest(SpezifikationSchadenType value) { - return new JAXBElement(_GetClaimLightRequest_QNAME, SpezifikationSchadenType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseLightType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetClaimLightResponse") - public JAXBElement createGetClaimLightResponse(GetClaimResponseLightType value) { - return new JAXBElement(_GetClaimLightResponse_QNAME, GetClaimResponseLightType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosRequest") - public JAXBElement createGetDocumentInfosRequest(GetDocumentInfosRequestType value) { - return new JAXBElement(_GetDocumentInfosRequest_QNAME, GetDocumentInfosRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentInfosResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "GetDocumentInfosResponse") - public JAXBElement createGetDocumentInfosResponse(GetDocumentInfosResponseType value) { - return new JAXBElement(_GetDocumentInfosResponse_QNAME, GetDocumentInfosResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListRequest") - public JAXBElement createChangedClaimsListRequest(ChangedClaimsListRequestType value) { - return new JAXBElement(_ChangedClaimsListRequest_QNAME, ChangedClaimsListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ChangedClaimsListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ChangedClaimsListResponse") - public JAXBElement createChangedClaimsListResponse(ChangedClaimsListResponseType value) { - return new JAXBElement(_ChangedClaimsListResponse_QNAME, ChangedClaimsListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListRequest") - public JAXBElement createLossEventListRequest(LossEventListRequestType value) { - return new JAXBElement(_LossEventListRequest_QNAME, LossEventListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventListResponse") - public JAXBElement createLossEventListResponse(LossEventListResponseType value) { - return new JAXBElement(_LossEventListResponse_QNAME, LossEventListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenereignis") - public JAXBElement createIdGeschaeftsfallSchadenereignis(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenereignis_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "IdGeschaeftsfallSchadenanlage") - public JAXBElement createIdGeschaeftsfallSchadenanlage(String value) { - return new JAXBElement(_IdGeschaeftsfallSchadenanlage_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointRequest") - public JAXBElement createDeclareEndpointRequest(DeclareEndpointRequestType value) { - return new JAXBElement(_DeclareEndpointRequest_QNAME, DeclareEndpointRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "ArtAuthentifizierung") - public JAXBElement createArtAuthentifizierung(String value) { - return new JAXBElement(_ArtAuthentifizierung_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareEndpointResponse") - public JAXBElement createDeclareEndpointResponse(DeclareEndpointResponseType value) { - return new JAXBElement(_DeclareEndpointResponse_QNAME, DeclareEndpointResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenRequest") - public JAXBElement createSecurityContextTokenRequest(SecurityContextTokenRequestType value) { - return new JAXBElement(_SecurityContextTokenRequest_QNAME, SecurityContextTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "SecurityContextTokenResponse") - public JAXBElement createSecurityContextTokenResponse(SecurityContextTokenResponseType value) { - return new JAXBElement(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusRequest") - public JAXBElement createDeclareNewClaimStatusRequest(DeclareNewClaimStatusRequestType value) { - return new JAXBElement(_DeclareNewClaimStatusRequest_QNAME, DeclareNewClaimStatusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareNewClaimStatusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "DeclareNewClaimStatusResponse") - public JAXBElement createDeclareNewClaimStatusResponse(DeclareNewClaimStatusResponseType value) { - return new JAXBElement(_DeclareNewClaimStatusResponse_QNAME, DeclareNewClaimStatusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredRequest") - public JAXBElement createLossEventRegisteredRequest(LossEventType value) { - return new JAXBElement(_LossEventRegisteredRequest_QNAME, LossEventType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LossEventRegisteredResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "LossEventRegisteredResponse") - public JAXBElement createLossEventRegisteredResponse(LossEventRegisteredResponseType value) { - return new JAXBElement(_LossEventRegisteredResponse_QNAME, LossEventRegisteredResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjektSpezifikationType.java deleted file mode 100644 index 9c22d7d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ObjektSpezifikationType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - SchadenObjektSpezifikationType.class, - PolizzenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OrtType.java deleted file mode 100644 index 00368194..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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_9.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:omds3ServiceTypes-1-1-0}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 4ad21af0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 1ba481e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 2e775fee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type", propOrder = { - "geschInteresseLfnr" -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 0cf7fb02..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,227 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OmdsPackage } - * - */ - public OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OmdsPackage } - * - */ - public void setOmdsPackage(OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - protected byte[] content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SachbearbVUType.java deleted file mode 100644 index 72b40e84..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:omds3ServiceTypes-1-1-0}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenInfoType.java deleted file mode 100644 index 72853896..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenInfoType.java +++ /dev/null @@ -1,174 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchadenInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenInfo_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenInfo_Type", propOrder = { - "idGeschaeftsfallSchadenanlage", - "bearbStandCd", - "schadennr", - "schadenzuordnung", - "sachbearbVU" -}) -public class SchadenInfoType { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenLightType.java deleted file mode 100644 index 7bedc28b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenLightType.java +++ /dev/null @@ -1,450 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "schadenzuordnung", - "polizzennr", - "vertragsID", - "spartenCd", - "spartenerweiterung", - "schadUrsCd", - "schadUrsTxt", - "erledDat" -}) -public class SchadenLightType { - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected String vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected List nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der vormaligeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeSchadennr() { - return vormaligeSchadennr; - } - - /** - * Legt den Wert der vormaligeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeSchadennr(String value) { - this.vormaligeSchadennr = value; - } - - /** - * Gets the value of the nachfolgendeSchadennr property. - * - *

- * 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 set method for the nachfolgendeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNachfolgendeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getNachfolgendeSchadennr() { - if (nachfolgendeSchadennr == null) { - nachfolgendeSchadennr = new ArrayList(); - } - return this.nachfolgendeSchadennr; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenObjektSpezifikationType.java deleted file mode 100644 index 52a4b13f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenStatusType.java deleted file mode 100644 index 59b850e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenStatusType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AbstraktesEreignisStatusAenderungType; - - -/** - * Objekt, welches GeschäftsfallId und Schadennummer sowie den Bearbeitungsstand enthält - * - *

Java-Klasse für SchadenStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenStatus_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}AbstraktesEreignisStatusAenderung_Type">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}SchadenInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenStatus_Type", propOrder = { - "idGeschaeftsfallSchadenereignis", - "vuNr", - "ordnungsbegriffZuordFremd", - "schaeden" -}) -public class SchadenStatusType - extends AbstraktesEreignisStatusAenderungType -{ - - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * 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; - } - - /** - * Ordnungsbegriff des Schadenmelders auf Ebene des Schadenereignis Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenInfoType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenType.java deleted file mode 100644 index fb2cba76..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenType.java +++ /dev/null @@ -1,720 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_9.WaehrungsCdType; - - -/** - * Typ um ein Schadenobjekt in der Schadendarstellung abzubilden - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="IdGeschaeftsfallSchadenanlage" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung" minOccurs="0"/>
- *         <element name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" minOccurs="0"/>
- *         <element name="SchadUrsTxt" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Schadenbeteiligte" type="{urn:omds3ServiceTypes-1-1-0}SchadenbeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Schadensreserve" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *         <element name="Spartenerweiterung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="10"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "vuNr", - "bearbStandCd", - "idGeschaeftsfallSchadenanlage", - "schadennr", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "polizzennr", - "vertragsID", - "sachbearbVU", - "ordnungsbegriffZuordFremd", - "schadenzuordnung", - "schadUrsCd", - "schadUrsTxt", - "erledDat", - "schadenTxt", - "schadenbeteiligte", - "leistungGeschaetzt", - "schadensreserve", - "spartenCd", - "spartenerweiterung", - "waehrungsCd", - "spartendetails", - "dokumente" -}) -public class SchadenType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadUrsCd") - protected String schadUrsCd; - @XmlElement(name = "SchadUrsTxt") - protected String schadUrsTxt; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Schadenbeteiligte") - protected List schadenbeteiligte; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "Schadensreserve") - protected BigDecimal schadensreserve; - @XmlElement(name = "SpartenCd") - protected String spartenCd; - @XmlElement(name = "Spartenerweiterung") - protected String spartenerweiterung; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * 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 bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadUrsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsCd() { - return schadUrsCd; - } - - /** - * Legt den Wert der schadUrsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsCd(String value) { - this.schadUrsCd = value; - } - - /** - * Ruft den Wert der schadUrsTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadUrsTxt() { - return schadUrsTxt; - } - - /** - * Legt den Wert der schadUrsTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadUrsTxt(String value) { - this.schadUrsTxt = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the schadenbeteiligte property. - * - *

- * 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 set method for the schadenbeteiligte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenbeteiligte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenbeteiligtePersonType } - * - * - */ - public List getSchadenbeteiligte() { - if (schadenbeteiligte == null) { - schadenbeteiligte = new ArrayList(); - } - return this.schadenbeteiligte; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der schadensreserve-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSchadensreserve() { - return schadensreserve; - } - - /** - * Legt den Wert der schadensreserve-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSchadensreserve(BigDecimal value) { - this.schadensreserve = value; - } - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - - /** - * Ruft den Wert der spartenerweiterung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenerweiterung() { - return spartenerweiterung; - } - - /** - * Legt den Wert der spartenerweiterung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenerweiterung(String value) { - this.spartenerweiterung = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenanlageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenanlageType.java deleted file mode 100644 index 281c3bbc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenanlageType.java +++ /dev/null @@ -1,174 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Schadenanlage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenanlage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}Schadenzuordnung"/>
- *         <element name="BearbStandCd" type="{urn:omds3ServiceTypes-1-1-0}BearbStandCd_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:omds3ServiceTypes-1-1-0}SachbearbVUType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenanlage_Type", propOrder = { - "idGeschaeftsfallSchadenanlage", - "schadenzuordnung", - "bearbStandCd", - "schadennr", - "sachbearbVU" -}) -public class SchadenanlageType { - - @XmlElement(name = "IdGeschaeftsfallSchadenanlage", required = true) - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Anhand der Schadenzuordnung kann man erkennen, um welche Schadensparte es sich handelt. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenbeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenbeteiligtePersonType.java deleted file mode 100644 index 3c9e2498..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenbeteiligtePersonType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.ZAHLUNGType; - - -/** - *

Java-Klasse für SchadenbeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenbeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenbeteiligtePerson_Type", propOrder = { - "geschInteresseLfnr", - "zahlung" -}) -public class SchadenbeteiligtePersonType { - - @XmlElement(name = "GeschInteresseLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List geschInteresseLfnr; - @XmlElement(name = "ZAHLUNG", namespace = "urn:omds20") - protected List zahlung; - @XmlAttribute(name = "BetLfnr", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetRolleCd", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String betRolleCd; - @XmlAttribute(name = "BetTxt", namespace = "urn:omds3ServiceTypes-1-1-0") - protected String betTxt; - - /** - * Gets the value of the geschInteresseLfnr property. - * - *

- * 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 set method for the geschInteresseLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschInteresseLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getGeschInteresseLfnr() { - if (geschInteresseLfnr == null) { - geschInteresseLfnr = new ArrayList(); - } - return this.geschInteresseLfnr; - } - - /** - * Gets the value of the zahlung property. - * - *

- * 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 set method for the zahlung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZAHLUNG().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZAHLUNGType } - * - * - */ - public List getZAHLUNG() { - if (zahlung == null) { - zahlung = new ArrayList(); - } - return this.zahlung; - } - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betRolleCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetRolleCd() { - return betRolleCd; - } - - /** - * Legt den Wert der betRolleCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetRolleCd(String value) { - this.betRolleCd = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisLightType.java deleted file mode 100644 index 5911490e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisLightType.java +++ /dev/null @@ -1,252 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 zur leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallId_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}SchadenLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "schaeden", - "meldedat" -}) -public class SchadenereignisLightType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected List vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Gets the value of the vormaligeIdGeschaeftsfall property. - * - *

- * 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 set method for the vormaligeIdGeschaeftsfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeIdGeschaeftsfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeIdGeschaeftsfall() { - if (vormaligeIdGeschaeftsfall == null) { - vormaligeIdGeschaeftsfall = new ArrayList(); - } - return this.vormaligeIdGeschaeftsfall; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisType.java deleted file mode 100644 index 1b4266e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenereignisType.java +++ /dev/null @@ -1,459 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Objekttyp für die Darstellungen von Schadenereignissen - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *         <element name="VormaligeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="NachfolgendeIdGeschaeftsfall" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="EreignisZpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SchadOrt" type="{urn:omds3ServiceTypes-1-1-0}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePersonSchaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:omds3ServiceTypes-1-1-0}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:omds3ServiceTypes-1-1-0}Schaden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="Schadenmelder" type="{urn:omds3ServiceTypes-1-1-0}Schadenmelder_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "vuNr", - "idGeschaeftsfallSchadenereignis", - "vormaligeIdGeschaeftsfall", - "nachfolgendeIdGeschaeftsfall", - "ordnungsbegriffZuordFremd", - "ereignisZpkt", - "ereignisbeschrTxt", - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schaeden", - "meldedat", - "schadenmelder" -}) -public class SchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis", required = true) - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "VormaligeIdGeschaeftsfall") - protected String vormaligeIdGeschaeftsfall; - @XmlElement(name = "NachfolgendeIdGeschaeftsfall") - protected String nachfolgendeIdGeschaeftsfall; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected List ordnungsbegriffZuordFremd; - @XmlElement(name = "EreignisZpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereignisZpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schaeden") - protected List schaeden; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "Schadenmelder", required = true) - protected SchadenmelderType schadenmelder; - - /** - * 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der vormaligeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVormaligeIdGeschaeftsfall() { - return vormaligeIdGeschaeftsfall; - } - - /** - * Legt den Wert der vormaligeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVormaligeIdGeschaeftsfall(String value) { - this.vormaligeIdGeschaeftsfall = value; - } - - /** - * Ruft den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeIdGeschaeftsfall() { - return nachfolgendeIdGeschaeftsfall; - } - - /** - * Legt den Wert der nachfolgendeIdGeschaeftsfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeIdGeschaeftsfall(String value) { - this.nachfolgendeIdGeschaeftsfall = value; - } - - /** - * Gets the value of the ordnungsbegriffZuordFremd property. - * - *

- * 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 set method for the ordnungsbegriffZuordFremd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOrdnungsbegriffZuordFremd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOrdnungsbegriffZuordFremd() { - if (ordnungsbegriffZuordFremd == null) { - ordnungsbegriffZuordFremd = new ArrayList(); - } - return this.ordnungsbegriffZuordFremd; - } - - /** - * Ruft den Wert der ereignisZpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreignisZpkt() { - return ereignisZpkt; - } - - /** - * Legt den Wert der ereignisZpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreignisZpkt(XMLGregorianCalendar value) { - this.ereignisZpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonSchadenType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderType.java deleted file mode 100644 index 18d4f3bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderVermittlerType.java deleted file mode 100644 index 329cb16d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenzuordnungType.java deleted file mode 100644 index 32ebe2a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimRequestType.java deleted file mode 100644 index f1bdd10a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimRequestType.java +++ /dev/null @@ -1,283 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3ServiceTypes-1-1-0}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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType 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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseResultType.java deleted file mode 100644 index b91c6e14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseResultType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:omds3ServiceTypes-1-1-0}Schadenereignis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseType.java deleted file mode 100644 index 0b3943e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SearchClaimResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:omds3ServiceTypes-1-1-0}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenRequestType.java deleted file mode 100644 index 612f1f30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Request-Type zum Bezug eines Security-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Credentials" type="{urn:omds3ServiceTypes-1-1-0}Credentials_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = { - "credentials" -}) -public class SecurityContextTokenRequestType { - - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenResponseType.java deleted file mode 100644 index d98e84e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SecurityContextTokenResponseType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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; - - -/** - * Response-Type zum Bezug eines Securtity-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = { - "token", - "dauerhaftGueltig", - "gueltigBis" -}) -public class SecurityContextTokenResponseType { - - @XmlElement(name = "Token", required = true) - protected String token; - @XmlElement(name = "DauerhaftGueltig") - protected boolean dauerhaftGueltig; - @XmlElement(name = "GueltigBis") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der token-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Legt den Wert der token-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Ruft den Wert der dauerhaftGueltig-Eigenschaft ab. - * - */ - public boolean isDauerhaftGueltig() { - return dauerhaftGueltig; - } - - /** - * Legt den Wert der dauerhaftGueltig-Eigenschaft fest. - * - */ - public void setDauerhaftGueltig(boolean value) { - this.dauerhaftGueltig = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenKfzType.java deleted file mode 100644 index 3531f138..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine spezielle Spartenerweiterung der Schadenmeldung für Kfz. - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3ServiceTypes-1-1-0}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenType.java deleted file mode 100644 index 0e2c5658..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpartendetailSchadenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpezifikationSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpezifikationSchadenType.java deleted file mode 100644 index c4935a6c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/SpezifikationSchadenType.java +++ /dev/null @@ -1,180 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - -import at.vvo.omds.types.omds3Types.r1_3_0.common.AuthorizationFilter; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für SpezifikationSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezifikationSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:omds3ServiceTypes-1-1-0}IdGeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezifikationSchaden_Type", propOrder = { - "vuNr", - "authFilter", - "idGeschaeftsfallSchadenereignis", - "idGeschaeftsfallSchadenanlage", - "schadennr" -}) -public class SpezifikationSchadenType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "IdGeschaeftsfallSchadenereignis") - protected String idGeschaeftsfallSchadenereignis; - @XmlElement(name = "IdGeschaeftsfallSchadenanlage") - protected String idGeschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 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 idGeschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenereignis() { - return idGeschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenereignis(String value) { - this.idGeschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdGeschaeftsfallSchadenanlage() { - return idGeschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der idGeschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdGeschaeftsfallSchadenanlage(String value) { - this.idGeschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UploadDokumentType.java deleted file mode 100644 index e76674df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UploadDokumentType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -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 fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - protected byte[] content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 60129bfb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataResponse.java deleted file mode 100644 index c2d25a51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_9.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link AvailableServices } - * - */ - public AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AvailableServices } - * - */ - public void setAvailableServices(AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UsernamePasswordCredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UsernamePasswordCredentialsType.java deleted file mode 100644 index f8219bf0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/UsernamePasswordCredentialsType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Konkrete Implementierung von Credentials mit Username und Password - * - *

Java-Klasse für UsernamePasswordCredentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UsernamePasswordCredentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsernamePasswordCredentials_Type") -public class UsernamePasswordCredentialsType { - - @XmlAttribute(name = "Username", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String username; - @XmlAttribute(name = "Password", namespace = "urn:omds3ServiceTypes-1-1-0", required = true) - protected String password; - - /** - * Ruft den Wert der username-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Legt den Wert der username-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Ruft den Wert der password-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Legt den Wert der password-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ZeitraumType.java deleted file mode 100644 index 7bf01734..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/ZeitraumType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3ServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3ServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/package-info.java deleted file mode 100644 index b7de7bc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_3_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_3_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index e86df96b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbstraktesEreignisStatusAenderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbstraktesEreignisStatusAenderungType.java deleted file mode 100644 index 93d74774..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AbstraktesEreignisStatusAenderungType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 - * - *

Java-Klasse für AbstraktesEreignisStatusAenderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstraktesEreignisStatusAenderung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstraktesEreignisStatusAenderung_Type") -public abstract class AbstraktesEreignisStatusAenderungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseArtCdType.java deleted file mode 100644 index 2f037ac6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseType.java deleted file mode 100644 index a296d883..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AdresseType.java +++ /dev/null @@ -1,245 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; - - -/** - * Typ für eine Adresse mit ObjektId - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AgentFilterType.java deleted file mode 100644 index ad3fb37a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 java.util.ArrayList; -import java.util.List; - - -/** - * Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AntragsartType.java deleted file mode 100644 index 41a716cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AntragsartType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AuthorizationFilter.java deleted file mode 100644 index c8917e03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BankverbindungType.java deleted file mode 100644 index 1f406cf0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BankverbindungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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; - - -/** - * beschreibt eine Bankverbindug - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bankverbindung_Type", propOrder = { - "kontoinhaber", - "bank", - "bic", - "iban" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 456462a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BerechnungsvarianteType.java deleted file mode 100644 index 70c26c32..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 108896f8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,82 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; - - -/** - * Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BezugsrechtType.java deleted file mode 100644 index 0d10ae91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BezugsrechtType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.PERSONType; - -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 Bezugsrecht - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusSystemType.java deleted file mode 100644 index f7e7f6f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; - - -/** - * Type Bonus Malus System - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 655e1aa1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessRequestType.java deleted file mode 100644 index 9ebb34f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CommonProcessRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Geschaeftsfallnummer" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateRequestType.class, - CreateOfferRequestType.class, - CreateApplicationRequestType.class, - SubmitApplicationRequestType.class -}) -public abstract class CommonProcessRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - - /** - * Optional eine Geschaeftsfallnummer, die mehrere Request-Responses einem Geschaeftsfall zuordnet - * - * @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessResponseType.java deleted file mode 100644 index e1497040..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateResponseType.class, - CreateOfferResponseType.class, - CreateApplicationResponseType.class, - SubmitApplicationResponseType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonRequestType.java deleted file mode 100644 index e5b184d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentRequestType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "korrelationsId" -}) -@XmlSeeAlso({ - CommonSearchRequestType.class, - GetApplicationDocumentRequestType.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 technischeParameter; - @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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonResponseType.java deleted file mode 100644 index 05f882c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentResponseType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status" -}) -@XmlSeeAlso({ - CommonSearchResponseType.class, - GetApplicationDocumentResponseType.class, - CommonProcessResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchRequestType.java deleted file mode 100644 index d821a996..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchResponseType.java deleted file mode 100644 index 401f153a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DateianhangType.java deleted file mode 100644 index 2221882b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DateianhangType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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; - - -/** - * Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann - * - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Dateianhang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DateiMimeType" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Dateianhang_Type", propOrder = { - "dateiMimeType", - "dateiType", - "dateiName", - "dateiData", - "dateiBeschreibung" -}) -public class DateianhangType { - - @XmlElement(name = "DateiMimeType", required = true) - protected String dateiMimeType; - @XmlElement(name = "DateiType") - protected Integer dateiType; - @XmlElement(name = "DateiName", required = true) - protected String dateiName; - @XmlElement(name = "DateiData", required = true) - protected byte[] dateiData; - @XmlElement(name = "DateiBeschreibung") - protected String dateiBeschreibung; - - /** - * Ruft den Wert der dateiMimeType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateiMimeType() { - return dateiMimeType; - } - - /** - * Legt den Wert der dateiMimeType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateiMimeType(String value) { - this.dateiMimeType = 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 - * byte[] - */ - public byte[] getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setDateiData(byte[] 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DatenverwendungType.java deleted file mode 100644 index d5f9d0c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungProzentType.java deleted file mode 100644 index 429d2378..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungProzentType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Deckung Prozent - * - *

Java-Klasse für DeckungProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungProzent" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungProzent_Type", propOrder = { - "deckungActive", - "deckungProzent" -}) -public class DeckungProzentType { - - protected boolean deckungActive; - protected int deckungProzent; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungProzent-Eigenschaft ab. - * - */ - public int getDeckungProzent() { - return deckungProzent; - } - - /** - * Legt den Wert der deckungProzent-Eigenschaft fest. - * - */ - public void setDeckungProzent(int value) { - this.deckungProzent = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsType.java deleted file mode 100644 index c8f2ea1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Deckung - * - *

Java-Klasse für DeckungVs_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVs_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVs_Type", propOrder = { - "versicherungssumme" -}) -public class DeckungVsType { - - @XmlElement(name = "Versicherungssumme") - protected int versicherungssumme; - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - */ - public int getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - */ - public void setVersicherungssumme(int value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsVIType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsVIType.java deleted file mode 100644 index 415f51b8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DeckungVsVIType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Deckung - * - *

Java-Klasse für DeckungVsVI_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeckungVsVI_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="deckungVs" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="VersichertesInteresse" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeckungVsVI_Type", propOrder = { - "deckungActive", - "deckungVs", - "versichertesInteresse" -}) -public class DeckungVsVIType { - - protected boolean deckungActive; - protected int deckungVs; - @XmlElement(name = "VersichertesInteresse", required = true) - protected Object versichertesInteresse; - - /** - * Ruft den Wert der deckungActive-Eigenschaft ab. - * - */ - public boolean isDeckungActive() { - return deckungActive; - } - - /** - * Legt den Wert der deckungActive-Eigenschaft fest. - * - */ - public void setDeckungActive(boolean value) { - this.deckungActive = value; - } - - /** - * Ruft den Wert der deckungVs-Eigenschaft ab. - * - */ - public int getDeckungVs() { - return deckungVs; - } - - /** - * Legt den Wert der deckungVs-Eigenschaft fest. - * - */ - public void setDeckungVs(int value) { - this.deckungVs = value; - } - - /** - * Ruft den Wert der versichertesInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getVersichertesInteresse() { - return versichertesInteresse; - } - - /** - * Legt den Wert der versichertesInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setVersichertesInteresse(Object value) { - this.versichertesInteresse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DirectionCdType.java deleted file mode 100644 index e8ffe68b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DirectionCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentInfoType.java deleted file mode 100644 index 3e87c319..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentInfoType.java +++ /dev/null @@ -1,228 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente" -}) -public class DokumentInfoType { - - @XmlElement(name = "Content") - protected byte[] 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 referenzWeitereDokumente; - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentenReferenzType.java deleted file mode 100644 index 83cc6302..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,258 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementIdType.java deleted file mode 100644 index 8229ee46..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementIdType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementarproduktType.java deleted file mode 100644 index 6c917207..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ElementarproduktType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.class -}) -public abstract class ElementarproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheElementarproduktdaten") - protected List 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; - } - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ErsatzpolizzenType.java deleted file mode 100644 index 8f9b4b73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/FahrzeugType.java deleted file mode 100644 index 7877c108..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/FahrzeugType.java +++ /dev/null @@ -1,832 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.Entsch2Type; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.math.BigDecimal; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index bf17cb52..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KontierungType.java deleted file mode 100644 index 6e91732a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KontierungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KostenFixOderProzentType.java deleted file mode 100644 index edfeb027..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedInt") - protected Long prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setProzentVs(Long value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KreditkarteType.java deleted file mode 100644 index f6b85526..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjectFactory.java deleted file mode 100644 index e20748ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjectFactory.java +++ /dev/null @@ -1,423 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_4_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _Geschaeftsfallnummer_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Geschaeftsfallnummer"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link DeckungVsType } - * - */ - public DeckungVsType createDeckungVsType() { - return new DeckungVsType(); - } - - /** - * Create an instance of {@link DeckungVsVIType } - * - */ - public DeckungVsVIType createDeckungVsVIType() { - return new DeckungVsVIType(); - } - - /** - * Create an instance of {@link DeckungProzentType } - * - */ - public DeckungProzentType createDeckungProzentType() { - return new DeckungProzentType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Geschaeftsfallnummer") - public JAXBElement createGeschaeftsfallnummer(ObjektIdType value) { - return new JAXBElement(_Geschaeftsfallnummer_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektIdType.java deleted file mode 100644 index 453094b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektIdType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 5965c4dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffeneSchaedenType.java deleted file mode 100644 index b9de9f81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffenerSchadenType.java deleted file mode 100644 index 03484523..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PartnerRoleType.java deleted file mode 100644 index 1d1308c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PersonType.java deleted file mode 100644 index 90d28840..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PersonType.java +++ /dev/null @@ -1,409 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.*; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -public class PersonType { - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 1dee1ab5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.PolicyPartnerRole; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenversandType.java deleted file mode 100644 index fb529649..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PolizzenversandType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PraemieType.java deleted file mode 100644 index c04137f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/PraemieType.java +++ /dev/null @@ -1,268 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.WaehrungsCdType; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag" -}) -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg", required = true) - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - protected Double abschlag; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAbschlag(Double value) { - this.abschlag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktType.java deleted file mode 100644 index 71b0d6d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktType.java +++ /dev/null @@ -1,220 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ZusatzproduktKfzType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class -}) -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration", required = true) - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit", required = true) - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * 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 produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktbausteinType.java deleted file mode 100644 index 41ed74b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ResponseStatusType.java deleted file mode 100644 index 01a2bf96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ResponseStatusType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 1f906c6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Geschaeftsfallnummer"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * Eine Geschaeftsfallnummer - * - * @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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SelbstbehaltType.java deleted file mode 100644 index 17034d87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedInt") - protected Long selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setSelbstbehaltProzentVs(Long value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ServiceFault.java deleted file mode 100644 index e3ea848e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/StatusType.java deleted file mode 100644 index ed6b56a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="4"/>
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 0abac594..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/UploadDokumentType.java deleted file mode 100644 index 6acfd0b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/UploadDokumentType.java +++ /dev/null @@ -1,139 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.activation.DataHandler; -import javax.xml.bind.annotation.*; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VarianteType.java deleted file mode 100644 index bc36fa29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Variante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Variante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Premiumschutz"/>
- *     <enumeration value="Classicschutz"/>
- *     <enumeration value="Basisschutz"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Variante_Type") -@XmlEnum -public enum VarianteType { - - @XmlEnumValue("Premiumschutz") - PREMIUMSCHUTZ("Premiumschutz"), - @XmlEnumValue("Classicschutz") - CLASSICSCHUTZ("Classicschutz"), - @XmlEnumValue("Basisschutz") - BASISSCHUTZ("Basisschutz"); - private final String value; - - VarianteType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static VarianteType fromValue(String v) { - for (VarianteType c: VarianteType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VerkaufsproduktType.java deleted file mode 100644 index d2f93866..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,219 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkaufsproduktKfzType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * 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 verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersichertesInteresseType.java deleted file mode 100644 index ac8e309f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,53 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; - - -/** - * Abstrakter Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type") -@XmlSeeAlso({ - FahrzeugType.class -}) -public abstract class VersichertesInteresseType { - - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersicherungssteuerType.java deleted file mode 100644 index 0cbec1eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,119 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VertragspersonType.java deleted file mode 100644 index c2978703..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VertragspersonType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.VtgRolleCdType; - -import javax.xml.bind.annotation.*; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkularglaeubigerType.java deleted file mode 100644 index 1616832b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkulierungType.java deleted file mode 100644 index a2d794c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VinkulierungType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds2Types.v2_11.PERSONType; - -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 Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenDetailType.java deleted file mode 100644 index a2e46017..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Type Vorversicherungen Detail - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenType.java deleted file mode 100644 index aa8465e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/VorversicherungenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VorversicherungenKfzType; - -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 Beschreibung der Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenKfzType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlungsdatenType.java deleted file mode 100644 index eae504e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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; - - -/** - * Beschreibt die Zahlungsdaten - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlwegType.java deleted file mode 100644 index 7005ace2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZahlwegType.java +++ /dev/null @@ -1,204 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.*; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link Kundenkonto } - * - */ - public Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Kundenkonto } - * - */ - public void setKundenkonto(Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZeitraumType.java deleted file mode 100644 index fbf158ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZeitraumType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZulassungsdatenType.java deleted file mode 100644 index 43ac237e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index fc6e861e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index e47dff25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 570b0e6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index 7efa3b39..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungen - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/package-info.java deleted file mode 100644 index b8b32e70..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_4_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStateChangeEventType.java deleted file mode 100644 index 5486e3bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStateChangeEventType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Event einer Statusänderung - * - *

Java-Klasse für AbstractStateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStateChangeEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStateChangeEvent_Type") -@XmlSeeAlso({ - StateChangeEventType.class -}) -public abstract class AbstractStateChangeEventType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStatusGeschaeftsfallType.java deleted file mode 100644 index 879dad9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AbstractStatusGeschaeftsfallType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -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 Status eines Geschaeftsfalls - * - *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStatusGeschaeftsfall_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStatusGeschaeftsfall_Type") -@XmlSeeAlso({ - StatusAntragsGeschaeftsfall.class -}) -public abstract class AbstractStatusGeschaeftsfallType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index 80733d54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.UploadDokumentType; - -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 des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 1963907c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/CredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/CredentialsType.java deleted file mode 100644 index 2d6f016a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/CredentialsType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können. - * - *

Java-Klasse für Credentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Credentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Credentials_Type") -public abstract class CredentialsType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointRequestType.java deleted file mode 100644 index 13c02dae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointRequestType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -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 den DeclareEndpointRequest - * - *

Java-Klasse für DeclareEndpointRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="BasisUrlEndpoint">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}ArtAuthentifizierung"/>
- *         <element name="Credentials" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Credentials_Type"/>
- *         <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointRequest_Type", propOrder = { - "vuNr", - "basisUrlEndpoint", - "artAuthentifizierung", - "credentials", - "authorizationFilter" -}) -public class DeclareEndpointRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "BasisUrlEndpoint", required = true) - protected String basisUrlEndpoint; - @XmlElement(name = "ArtAuthentifizierung", required = true) - protected String artAuthentifizierung; - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - @XmlElement(name = "AuthorizationFilter") - protected AuthorizationFilter authorizationFilter; - - /** - * 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 basisUrlEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBasisUrlEndpoint() { - return basisUrlEndpoint; - } - - /** - * Legt den Wert der basisUrlEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBasisUrlEndpoint(String value) { - this.basisUrlEndpoint = value; - } - - /** - * Ruft den Wert der artAuthentifizierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtAuthentifizierung() { - return artAuthentifizierung; - } - - /** - * Legt den Wert der artAuthentifizierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtAuthentifizierung(String value) { - this.artAuthentifizierung = value; - } - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - - /** - * Ruft den Wert der authorizationFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - public AuthorizationFilter getAuthorizationFilter() { - return authorizationFilter; - } - - /** - * Legt den Wert der authorizationFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - public void setAuthorizationFilter(AuthorizationFilter value) { - this.authorizationFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointResponseType.java deleted file mode 100644 index f7f5bef5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareEndpointResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response um als Makler der VU einen Endpoint bekannt zu geben - * - *

Java-Klasse für DeclareEndpointResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareEndpointResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1000"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareEndpointResponse_Type", propOrder = { - "registrierteBasisUrlMaklerEndpoint", - "serviceFault" -}) -public class DeclareEndpointResponseType { - - @XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint") - protected String registrierteBasisUrlMaklerEndpoint; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrierteBasisUrlMaklerEndpoint() { - return registrierteBasisUrlMaklerEndpoint; - } - - /** - * Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrierteBasisUrlMaklerEndpoint(String value) { - this.registrierteBasisUrlMaklerEndpoint = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesRequestType.java deleted file mode 100644 index fa699502..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesRequestType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ fuer die Bekanntgabe von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="StateChange" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesRequest_Type", propOrder = { - "stateChange" -}) -public class DeclareStateChangesRequestType { - - @XmlElement(name = "StateChange", required = true) - protected List stateChange; - - /** - * Gets the value of the stateChange property. - * - *

- * 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 set method for the stateChange property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStateChange().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getStateChange() { - if (stateChange == null) { - stateChange = new ArrayList(); - } - return this.stateChange; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesResponseType.java deleted file mode 100644 index 7981ba19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DeclareStateChangesResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ fuer die Annahme von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesResponse_Type") -public class DeclareStateChangesResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index b7c298ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 752d8c5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,269 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType; - -import javax.xml.bind.annotation.*; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 8f653f9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index b61e2d1e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,269 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType; - -import javax.xml.bind.annotation.*; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 143c24c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 2f843afe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,180 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index baf4451e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -import javax.xml.bind.annotation.*; -import java.math.BigInteger; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesRequestType.java deleted file mode 100644 index 056c9b4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonSearchRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.GeschaeftsobjektArtType; - -import javax.xml.bind.annotation.*; - - -/** - * Typ des Requestobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
- *       <sequence>
- *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesRequest_Type", propOrder = { - "geschaeftsobjektArt" -}) -public class GetStateChangesRequestType - extends CommonSearchRequestType -{ - - @XmlElement(name = "GeschaeftsobjektArt") - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType geschaeftsobjektArt; - - /** - * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getGeschaeftsobjektArt() { - return geschaeftsobjektArt; - } - - /** - * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { - this.geschaeftsobjektArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesResponseType.java deleted file mode 100644 index fda81939..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/GetStateChangesResponseType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonSearchResponseType; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ des Responseobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
- *       <sequence>
- *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesResponse_Type", propOrder = { - "event" -}) -public class GetStateChangesResponseType - extends CommonSearchResponseType -{ - - @XmlElement(name = "Event") - protected List event; - - /** - * Gets the value of the event property. - * - *

- * 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 set method for the event property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getEvent() { - if (event == null) { - event = new ArrayList(); - } - return this.event; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/ObjectFactory.java deleted file mode 100644 index 34b9c708..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,365 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_4_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest"); - private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse"); - private final static QName _DeclareStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesRequest"); - private final static QName _DeclareStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesResponse"); - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - private final static QName _DeclareEndpointRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareEndpointRequest"); - private final static QName _ArtAuthentifizierung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "ArtAuthentifizierung"); - private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareEndpointResponse"); - private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenRequest"); - private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetStateChangesRequestType } - * - */ - public GetStateChangesRequestType createGetStateChangesRequestType() { - return new GetStateChangesRequestType(); - } - - /** - * Create an instance of {@link GetStateChangesResponseType } - * - */ - public GetStateChangesResponseType createGetStateChangesResponseType() { - return new GetStateChangesResponseType(); - } - - /** - * Create an instance of {@link DeclareStateChangesRequestType } - * - */ - public DeclareStateChangesRequestType createDeclareStateChangesRequestType() { - return new DeclareStateChangesRequestType(); - } - - /** - * Create an instance of {@link DeclareStateChangesResponseType } - * - */ - public DeclareStateChangesResponseType createDeclareStateChangesResponseType() { - return new DeclareStateChangesResponseType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link DeclareEndpointRequestType } - * - */ - public DeclareEndpointRequestType createDeclareEndpointRequestType() { - return new DeclareEndpointRequestType(); - } - - /** - * Create an instance of {@link DeclareEndpointResponseType } - * - */ - public DeclareEndpointResponseType createDeclareEndpointResponseType() { - return new DeclareEndpointResponseType(); - } - - /** - * Create an instance of {@link SecurityContextTokenRequestType } - * - */ - public SecurityContextTokenRequestType createSecurityContextTokenRequestType() { - return new SecurityContextTokenRequestType(); - } - - /** - * Create an instance of {@link SecurityContextTokenResponseType } - * - */ - public SecurityContextTokenResponseType createSecurityContextTokenResponseType() { - return new SecurityContextTokenResponseType(); - } - - /** - * Create an instance of {@link StateChangeEventType } - * - */ - public StateChangeEventType createStateChangeEventType() { - return new StateChangeEventType(); - } - - /** - * Create an instance of {@link StatusAntragsGeschaeftsfall } - * - */ - public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { - return new StatusAntragsGeschaeftsfall(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link UsernamePasswordCredentialsType } - * - */ - public UsernamePasswordCredentialsType createUsernamePasswordCredentialsType() { - return new UsernamePasswordCredentialsType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest") - public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { - return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse") - public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { - return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesRequest") - public JAXBElement createDeclareStateChangesRequest(DeclareStateChangesRequestType value) { - return new JAXBElement(_DeclareStateChangesRequest_QNAME, DeclareStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesResponse") - public JAXBElement createDeclareStateChangesResponse(DeclareStateChangesResponseType value) { - return new JAXBElement(_DeclareStateChangesResponse_QNAME, DeclareStateChangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareEndpointRequest") - public JAXBElement createDeclareEndpointRequest(DeclareEndpointRequestType value) { - return new JAXBElement(_DeclareEndpointRequest_QNAME, DeclareEndpointRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "ArtAuthentifizierung") - public JAXBElement createArtAuthentifizierung(String value) { - return new JAXBElement(_ArtAuthentifizierung_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareEndpointResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareEndpointResponse") - public JAXBElement createDeclareEndpointResponse(DeclareEndpointResponseType value) { - return new JAXBElement(_DeclareEndpointResponse_QNAME, DeclareEndpointResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "SecurityContextTokenRequest") - public JAXBElement createSecurityContextTokenRequest(SecurityContextTokenRequestType value) { - return new JAXBElement(_SecurityContextTokenRequest_QNAME, SecurityContextTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "SecurityContextTokenResponse") - public JAXBElement createSecurityContextTokenResponse(SecurityContextTokenResponseType value) { - return new JAXBElement(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenRequestType.java deleted file mode 100644 index 8013f517..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Request-Type zum Bezug eines Security-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Credentials" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Credentials_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = { - "credentials" -}) -public class SecurityContextTokenRequestType { - - @XmlElement(name = "Credentials", required = true) - protected CredentialsType credentials; - - /** - * Ruft den Wert der credentials-Eigenschaft ab. - * - * @return - * possible object is - * {@link CredentialsType } - * - */ - public CredentialsType getCredentials() { - return credentials; - } - - /** - * Legt den Wert der credentials-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CredentialsType } - * - */ - public void setCredentials(CredentialsType value) { - this.credentials = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenResponseType.java deleted file mode 100644 index e1042b15..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/SecurityContextTokenResponseType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Response-Type zum Bezug eines Securtity-Context-Tokens - * - *

Java-Klasse für SecurityContextTokenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SecurityContextTokenResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = { - "token", - "dauerhaftGueltig", - "gueltigBis" -}) -public class SecurityContextTokenResponseType { - - @XmlElement(name = "Token", required = true) - protected String token; - @XmlElement(name = "DauerhaftGueltig") - protected boolean dauerhaftGueltig; - @XmlElement(name = "GueltigBis") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigBis; - - /** - * Ruft den Wert der token-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Legt den Wert der token-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Ruft den Wert der dauerhaftGueltig-Eigenschaft ab. - * - */ - public boolean isDauerhaftGueltig() { - return dauerhaftGueltig; - } - - /** - * Legt den Wert der dauerhaftGueltig-Eigenschaft fest. - * - */ - public void setDauerhaftGueltig(boolean value) { - this.dauerhaftGueltig = value; - } - - /** - * Ruft den Wert der gueltigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigBis() { - return gueltigBis; - } - - /** - * Legt den Wert der gueltigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigBis(XMLGregorianCalendar value) { - this.gueltigBis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StateChangeEventType.java deleted file mode 100644 index 13f63aed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StateChangeEventType.java +++ /dev/null @@ -1,267 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Standard-Event einer Statusänderung - * - *

Java-Klasse für StateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StateChangeEvent_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
- *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StateChangeEvent_Type", propOrder = { - "objektart", - "objektId", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "aenderungsdatum", - "statusGueltigAbDatum", - "bisherigerStatus", - "neuerStatus" -}) -public class StateChangeEventType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - @XmlSchemaType(name = "anySimpleType") - protected String geschaeftsfallArt; - @XmlElement(name = "Aenderungsdatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar aenderungsdatum; - @XmlElement(name = "StatusGueltigAbDatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar statusGueltigAbDatum; - @XmlElement(name = "BisherigerStatus") - protected AbstractStatusGeschaeftsfallType bisherigerStatus; - @XmlElement(name = "NeuerStatus", required = true) - protected AbstractStatusGeschaeftsfallType neuerStatus; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der aenderungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAenderungsdatum() { - return aenderungsdatum; - } - - /** - * Legt den Wert der aenderungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAenderungsdatum(XMLGregorianCalendar value) { - this.aenderungsdatum = value; - } - - /** - * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStatusGueltigAbDatum() { - return statusGueltigAbDatum; - } - - /** - * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { - this.statusGueltigAbDatum = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der neuerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getNeuerStatus() { - return neuerStatus; - } - - /** - * Legt den Wert der neuerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { - this.neuerStatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StatusAntragsGeschaeftsfall.java deleted file mode 100644 index 152737c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/StatusAntragsGeschaeftsfall.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Status eines Antrags - * - *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StatusAntragsGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { - "antragstatus" -}) -public class StatusAntragsGeschaeftsfall - extends AbstractStatusGeschaeftsfallType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/UsernamePasswordCredentialsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/UsernamePasswordCredentialsType.java deleted file mode 100644 index 0be62ecd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/UsernamePasswordCredentialsType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Konkrete Implementierung von Credentials mit Username und Password - * - *

Java-Klasse für UsernamePasswordCredentials_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UsernamePasswordCredentials_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsernamePasswordCredentials_Type") -public class UsernamePasswordCredentialsType { - - @XmlAttribute(name = "Username", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", required = true) - protected String username; - @XmlAttribute(name = "Password", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", required = true) - protected String password; - - /** - * Ruft den Wert der username-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Legt den Wert der username-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Ruft den Wert der password-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Legt den Wert der password-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/package-info.java deleted file mode 100644 index 31eacbac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_4_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index aed519cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,61 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class -}) -public abstract class CalculateRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 29250445..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType; - -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 Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class -}) -public abstract class CalculateResponseType - extends CommonProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index 425119a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class -}) -public abstract class CreateApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 5aa5a6b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class -}) -public abstract class CreateApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index 8907c818..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType; - -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 Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class -}) -public abstract class CreateOfferRequestType - extends CommonProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index b2b85a40..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class -}) -public abstract class CreateOfferResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index d9e08b8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonRequestType; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 629a3bb7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index 068d68a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 69dfcae5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,545 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.*; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezAntragKfzType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "vinkulierung", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten" -}) -@XmlSeeAlso({ - SpezAntragKfzType.class -}) -public abstract class SpezAntragType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 6201d802..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezBerechnungKfzType; - -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 Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type") -@XmlSeeAlso({ - SpezBerechnungKfzType.class -}) -public abstract class SpezBerechnungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index d11ac41f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,124 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezOffertKfzType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertKfzType.class -}) -public abstract class SpezOffertType { - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index af201f20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class -}) -public abstract class SubmitApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index 198a69db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,126 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class -}) -public abstract class SubmitApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 0ab9c053..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/package-info.java deleted file mode 100644 index 0aa1b3dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 8a78f3ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index 6a6ad8a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 49f644f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; - -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 des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index 318ac7de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; - -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 des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index fe27f64e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; - -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 des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index cee4b100..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; - -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 des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 4507f2e6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; - -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 des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index f50a81d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; - -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 des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link Offertantwort } - * - */ - public Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Offertantwort } - * - */ - public void setOffertantwort(Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 20814f9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType; - -import javax.xml.bind.annotation.*; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 9f23b067..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,291 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.math.BigInteger; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index ac250219..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds2Types.v2_11.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_11.ELVersicherungssummeType; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index 5f6f23df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.*; - - -/** - * Typ für das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 42b51074..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index b2b30250..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,260 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.VinkulierungType; - -import javax.xml.bind.annotation.*; -import java.math.BigDecimal; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 125ff138..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index 84dfd693..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,349 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index d7303eab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index b9a0661c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 2c63b050..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 675bd1df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index 87994526..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SpezAntragType; - -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 der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "zusaetzlicheKfzDaten" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index b5677f67..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SpezBerechnungType; - -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 der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index afd55c33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SpezOffertType; - -import javax.xml.bind.annotation.*; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 947a0355..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType; - -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 des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index 1a38d740..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType; - -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 des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index fcebbc1f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 1e4454c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index 61b84b73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 46fdc151..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,234 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds2Types.v2_11.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index a6b010d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index f59075a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index 4efd2216..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.VorversicherungenType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Type Vorversicherungen für Kfz - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungKfz } - * - * - */ - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index c938bdc3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index 2b1f4c91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 164c66d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,266 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index e0b5ef93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 9713f944..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsService.java deleted file mode 100644 index 1eca6f07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_4_0.service; - -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import java.net.MalformedURLException; -import java.net.URL; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-10-14T12:32:10.512+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 2bde5787..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,335 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_4_0.service; - -import javax.jws.WebService; -import javax.xml.ws.soap.MTOM; -import java.util.logging.Logger; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-10-14T12:32:10.463+02:00 - * Generated source version: 3.2.0 - * - */ - -@WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType") -@MTOM(enabled = true, threshold = 1024) -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getStateChanges(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType getStateChanges(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getStateChanges"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.LoginRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType.java deleted file mode 100644 index c0e059ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,153 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_4_0.service; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-10-14T12:32:10.495+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds2Types.v2_11.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - @WebParam(partName = "parameters", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - @WebParam(partName = "parameters", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - @WebParam(partName = "parameters", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - @WebParam(partName = "parameters", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - @WebParam(partName = "parameters", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getStateChanges") - @WebResult(name = "GetStateChangesResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType getStateChanges( - @WebParam(partName = "parameters", name = "GetStateChangesRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - @WebParam(partName = "parameters", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - @WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index ded06b45..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,280 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import javax.xml.namespace.QName; -import javax.xml.ws.soap.MTOMFeature; -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-10-14T12:32:10.341+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); -// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); -// OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_parameters); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_parameters); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getStateChanges..."); - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType _getStateChanges_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters); - System.out.println("getStateChanges.result=" + _getStateChanges__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest _getUserData_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageRequest _getArcImage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.LoginRequestType _login_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_parameters); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/ServiceFaultMsg.java deleted file mode 100644 index 99cda904..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.service; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2019-10-14T12:32:10.442+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcContent.java deleted file mode 100644 index 81de978a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,90 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - protected byte[] arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setArcImage(byte[] value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 9ac39bd4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,228 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementIdType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index e9d11879..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 8f1bb7c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index d743cacf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 1fe9ad3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 7ad7b2fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 96a0c5ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 1961e22a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index ef03b30c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index d51491f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,147 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index a2df7578..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 1f30dccd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 67396dd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,235 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds2Types.v2_11.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_11.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementIdType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; -import java.util.ArrayList; -import java.util.List; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 7b0574ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,145 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AgentFilterType; - -import javax.xml.bind.annotation.*; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index ab562c06..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index eea8e29c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,126 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.AgentFilterType; - -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 java.util.ArrayList; -import java.util.List; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index b9ea9c99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 91c56b24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,457 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_4_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 4b52c5fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.PartnerRoleType; - -import javax.xml.bind.annotation.*; -import java.util.ArrayList; -import java.util.List; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 7325606a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,227 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OmdsPackage } - * - */ - public OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OmdsPackage } - * - */ - public void setOmdsPackage(OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - protected byte[] content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * byte[] - */ - public byte[] getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * byte[] - */ - public void setContent(byte[] value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 97fac44d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 1316fa98..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; - -import at.vvo.omds.types.omds2Types.v2_11.PERSONType; - -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 java.util.ArrayList; -import java.util.List; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link AvailableServices } - * - */ - public AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AvailableServices } - * - */ - public void setAvailableServices(AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/package-info.java deleted file mode 100644 index ce52a7f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_4_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AListenAttributType.java deleted file mode 100644 index 277fc653..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AListenAttributType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java deleted file mode 100644 index 79fdd485..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 0ba3fc8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbtretungType.java deleted file mode 100644 index 8932ab70..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AbtretungType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseArtCdType.java deleted file mode 100644 index 6c23a2f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseType.java deleted file mode 100644 index 4dd6e453..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AdresseType.java +++ /dev/null @@ -1,250 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AgentFilterType.java deleted file mode 100644 index 7d0da347..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AntragsartType.java deleted file mode 100644 index c7261627..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AntragsartType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java deleted file mode 100644 index d9ccdbf8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java deleted file mode 100644 index 7a2d243c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java deleted file mode 100644 index 85807785..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java deleted file mode 100644 index 97c6ef4b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java deleted file mode 100644 index d0643b3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index d6df6ec2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index b1c62544..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,158 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index 609dc186..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 7918e229..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java deleted file mode 100644 index f7690c9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,188 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenType.java deleted file mode 100644 index c48c5165..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMsgType.java deleted file mode 100644 index 72e74a5e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMsgType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java deleted file mode 100644 index 29496034..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - protected List value; - @XmlElement(name = "Default") - protected List _default; - @XmlElement(name = "MaxAnz") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java deleted file mode 100644 index a5e3bde1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java +++ /dev/null @@ -1,216 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java deleted file mode 100644 index 4917b8d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AuthorizationFilter.java deleted file mode 100644 index ab723ba3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BankverbindungType.java deleted file mode 100644 index f04d3ac1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BankverbindungType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 4d42e784..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,166 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisProduktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type">
- *       <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>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisProduktbaustein_Type", propOrder = { - "id", - "bezeichnung", - "bedingungen", - "meldungen" -}) -@XmlSeeAlso({ - ProduktbausteinType.class -}) -public abstract class BasisProduktbausteinType - extends ModellelementType -{ - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - protected List bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BerechnungsvarianteType.java deleted file mode 100644 index fccd1663..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 8bb807d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtType.java deleted file mode 100644 index 404e1970..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_11.PERSONType; - - -/** - * Type Bezugsrecht (nur Kontext Kfz) - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusSystemType.java deleted file mode 100644 index 99d9831e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 1e0e2f98..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessRequestType.java deleted file mode 100644 index ae85fba1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.common.CalculateRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateRequestType.class, - CreateOfferRequestType.class, - CreateApplicationRequestType.class, - SubmitApplicationRequestType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessResponseType.java deleted file mode 100644 index e51d27ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.common.CalculateResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - CalculateResponseType.class, - CreateOfferResponseType.class, - CreateApplicationResponseType.class, - SubmitApplicationResponseType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java deleted file mode 100644 index 0e48d1b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "korrelationsId" -}) -@XmlSeeAlso({ - GetApplicationDocumentRequestType.class, - CommonSearchRequestType.class, - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.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 technischeParameter; - @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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java deleted file mode 100644 index 2abb1aca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status" -}) -@XmlSeeAlso({ - GetApplicationDocumentResponseType.class, - CommonSearchResponseType.class, - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class, - CommonProcessResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchRequestType.java deleted file mode 100644 index cfecae62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchResponseType.java deleted file mode 100644 index a2ded86d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DateianhangType.java deleted file mode 100644 index d9eae891..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DateianhangType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann - * - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DatenverwendungType.java deleted file mode 100644 index ed475d7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DirectionCdType.java deleted file mode 100644 index 33805e58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DirectionCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentInfoType.java deleted file mode 100644 index d3a2ba16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentInfoType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente" -}) -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 referenzWeitereDokumente; - - /** - * 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentenReferenzType.java deleted file mode 100644 index 235bf3cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/EintragSchluessellisteType.java deleted file mode 100644 index 05533699..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementIdType.java deleted file mode 100644 index 258f567e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index 984080e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ElementarproduktSachPrivatType.class -}) -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java deleted file mode 100644 index 8ca19637..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt (1. Generation, wird nur in Kfz verwendet) - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "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 = "ZusaetzlicheElementarproduktdaten") - protected List 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; - } - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ErsatzpolizzenType.java deleted file mode 100644 index 72e9e5cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java deleted file mode 100644 index 0c3ca19e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_NatPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Geburtsland" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_NatPersonType", propOrder = { - "geburtsland", - "usIndizien", - "usSteuerpflicht" -}) -public class FATCANatPersonType { - - @XmlElement(name = "Geburtsland", required = true) - protected AttributEnumType geburtsland; - @XmlElement(name = "US_Indizien") - protected boolean usIndizien; - @XmlElement(name = "US_Steuerpflicht") - protected boolean usSteuerpflicht; - - /** - * Ruft den Wert der geburtsland-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGeburtsland() { - return geburtsland; - } - - /** - * Legt den Wert der geburtsland-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGeburtsland(AttributEnumType value) { - this.geburtsland = value; - } - - /** - * Ruft den Wert der usIndizien-Eigenschaft ab. - * - */ - public boolean isUSIndizien() { - return usIndizien; - } - - /** - * Legt den Wert der usIndizien-Eigenschaft fest. - * - */ - public void setUSIndizien(boolean value) { - this.usIndizien = value; - } - - /** - * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. - * - */ - public boolean isUSSteuerpflicht() { - return usSteuerpflicht; - } - - /** - * Legt den Wert der usSteuerpflicht-Eigenschaft fest. - * - */ - public void setUSSteuerpflicht(boolean value) { - this.usSteuerpflicht = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java deleted file mode 100644 index 162924b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_SonstPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_SonstPersonType", propOrder = { - "landFirmensitz" -}) -public class FATCASonstPersonType { - - @XmlElement(name = "LandFirmensitz", required = true) - protected AttributEnumType landFirmensitz; - - /** - * Ruft den Wert der landFirmensitz-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLandFirmensitz() { - return landFirmensitz; - } - - /** - * Legt den Wert der landFirmensitz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLandFirmensitz(AttributEnumType value) { - this.landFirmensitz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java deleted file mode 100644 index 07445fea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- *         <element name="FATCA_SonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_Type", propOrder = { - "fatcaNatPerson", - "fatcaSonstPerson" -}) -public class FATCAType { - - @XmlElement(name = "FATCA_NatPerson") - protected FATCANatPersonType fatcaNatPerson; - @XmlElement(name = "FATCA_SonstPerson") - protected Object fatcaSonstPerson; - - /** - * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCANatPersonType } - * - */ - public FATCANatPersonType getFATCANatPerson() { - return fatcaNatPerson; - } - - /** - * Legt den Wert der fatcaNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCANatPersonType } - * - */ - public void setFATCANatPerson(FATCANatPersonType value) { - this.fatcaNatPerson = value; - } - - /** - * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getFATCASonstPerson() { - return fatcaSonstPerson; - } - - /** - * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setFATCASonstPerson(Object value) { - this.fatcaSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FahrzeugType.java deleted file mode 100644 index 36798d32..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FahrzeugType.java +++ /dev/null @@ -1,836 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import java.math.BigDecimal; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_11.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java deleted file mode 100644 index ec67fb46..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GMSG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
-     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "land", - "steuernummer" - }) - public static class SteuerlichAnsaessig { - - @XmlElement(name = "Land", required = true) - protected AttributEnumType land; - @XmlElement(name = "Steuernummer", required = true) - protected AttributStringType steuernummer; - - /** - * Ruft den Wert der land-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLand() { - return land; - } - - /** - * Legt den Wert der land-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLand(AttributEnumType value) { - this.land = value; - } - - /** - * Ruft den Wert der steuernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getSteuernummer() { - return steuernummer; - } - - /** - * Legt den Wert der steuernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setSteuernummer(AttributStringType value) { - this.steuernummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index f2f1b336..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index a3264cca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GlaeubigerSicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { - "institut", - "plz", - "strasse", - "vertragsnummer" -}) -public class GlaeubigerSicherstellungType { - - @XmlElement(name = "Institut", required = true) - protected String institut; - @XmlElement(name = "PLZ", required = true) - protected String plz; - @XmlElement(name = "Strasse", required = true) - protected String strasse; - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - - /** - * Ruft den Wert der institut-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInstitut() { - return institut; - } - - /** - * Legt den Wert der institut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInstitut(String value) { - this.institut = 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 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 vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java deleted file mode 100644 index f43b77ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Gruppe von Bausteinen, aus der eine Auswahl möglich ist - * - *

Java-Klasse für Gruppe complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Gruppe">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type">
- *       <sequence>
- *         <element name="Elemente" type="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type" maxOccurs="unbounded"/>
- *         <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Gruppe", propOrder = { - "elemente", - "min", - "max" -}) -public class Gruppe - extends ModellelementType -{ - - @XmlElement(name = "Elemente", required = true) - protected List elemente; - @XmlElement(name = "Min") - protected int min; - @XmlElement(name = "Max") - protected Integer max; - - /** - * Gets the value of the elemente property. - * - *

- * 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 set method for the elemente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElemente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ModellelementType } - * - * - */ - public List getElemente() { - if (elemente == null) { - elemente = new ArrayList(); - } - return this.elemente; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - */ - public int getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - */ - public void setMin(int 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KontierungType.java deleted file mode 100644 index c9174732..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KontierungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java deleted file mode 100644 index fff2ba93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KreditkarteType.java deleted file mode 100644 index 816bdc54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java deleted file mode 100644 index 7666355f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 gemeinsamer Basistyp von Produktbausteinen und Gruppen - * - *

Java-Klasse für Modellelement_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Modellelement_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Modellelement_Type") -@XmlSeeAlso({ - BasisProduktbausteinType.class, - Gruppe.class -}) -public abstract class ModellelementType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java deleted file mode 100644 index bad4a2ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java +++ /dev/null @@ -1,557 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektIdType.java deleted file mode 100644 index 2c9374f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektSpezifikationType.java deleted file mode 100644 index a9c2e500..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; -import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffeneSchaedenType.java deleted file mode 100644 index f0492c3c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffenerSchadenType.java deleted file mode 100644 index e1d3f10d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PEPType.java deleted file mode 100644 index e30c937a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PEPType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PEP_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PEP_Type", propOrder = { - "beschreibung" -}) -public class PEPType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PartnerRoleType.java deleted file mode 100644 index 30aa6e71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersBankverbindungType.java deleted file mode 100644 index 206ca781..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonPersonenspartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonPersonenspartenType.java deleted file mode 100644 index 49f6882b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonPersonenspartenType.java +++ /dev/null @@ -1,402 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Erweiterung des Person_Type für die Verwendung in Personensparten - * - *

Java-Klasse für Person_Personensparten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Personensparten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Person_Type">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiko" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Risikozuschlag" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Personensparten_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiko", - "risikozuschlag", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit" -}) -public class PersonPersonenspartenType - extends PersonType -{ - - @XmlElement(name = "Gewicht", required = true) - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected Raucher raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiko") - protected AttributEnumType freizeitSportRisiko; - @XmlElement(name = "Risikozuschlag") - protected Object risikozuschlag; - @XmlElement(name = "GesetzlicheUV") - protected Object gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected Object personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected Object berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected Object manuelleTaetigkeit; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link Raucher } - * - */ - public Raucher getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Raucher } - * - */ - public void setRaucher(Raucher value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Ruft den Wert der freizeitSportRisiko-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getFreizeitSportRisiko() { - return freizeitSportRisiko; - } - - /** - * Legt den Wert der freizeitSportRisiko-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setFreizeitSportRisiko(AttributEnumType value) { - this.freizeitSportRisiko = value; - } - - /** - * Ruft den Wert der risikozuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikozuschlag() { - return risikozuschlag; - } - - /** - * Legt den Wert der risikozuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikozuschlag(Object value) { - this.risikozuschlag = value; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setGesetzlicheUV(Object value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setPersonenartKranken(Object value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBerufsgruppe(Object value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setManuelleTaetigkeit(Object value) { - this.manuelleTaetigkeit = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonType.java deleted file mode 100644 index 48c7a76b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PersonType.java +++ /dev/null @@ -1,425 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_11.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_11.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_11.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_11.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_11.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_11.ELTextType; -import at.vvo.omds.types.omds2Types.v2_11.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_11.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_11.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -@XmlSeeAlso({ - PersonPersonenspartenType.class -}) -public class PersonType { - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PfandglaeubigerType.java deleted file mode 100644 index 366b9bc4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Pfandglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pfandglaeubiger_Type", propOrder = { - "anteil", - "glaeubiger" -}) -public class PfandglaeubigerType { - - @XmlElement(name = "Anteil") - protected double anteil; - @XmlElement(name = "Glaeubiger", required = true) - protected GlaeubigerSicherstellungType glaeubiger; - - /** - * Ruft den Wert der anteil-Eigenschaft ab. - * - */ - public double getAnteil() { - return anteil; - } - - /** - * Legt den Wert der anteil-Eigenschaft fest. - * - */ - public void setAnteil(double value) { - this.anteil = value; - } - - /** - * Ruft den Wert der glaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType getGlaeubiger() { - return glaeubiger; - } - - /** - * Legt den Wert der glaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - public void setGlaeubiger(GlaeubigerSicherstellungType value) { - this.glaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 92a87107..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; -import at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenversandType.java deleted file mode 100644 index a008d3d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PolizzenversandType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PraemieType.java deleted file mode 100644 index 67a456bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/PraemieType.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_11.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag" -}) -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg", required = true) - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - protected Double abschlag; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAbschlag(Double value) { - this.abschlag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java deleted file mode 100644 index c6fa32fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktSachPrivatType.class -}) -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java deleted file mode 100644 index 169cdfc3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java +++ /dev/null @@ -1,225 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt (1. Generation, wird nur in Kfz verwendet) - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class, - ProduktGenerischType.class -}) -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit", required = true) - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * 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 produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index 5f2823ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java deleted file mode 100644 index 85097617..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,141 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class, - ZusatzproduktType.class -}) -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Raucher.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Raucher.java deleted file mode 100644 index 90dcd0a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Raucher.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher") -public abstract class Raucher { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RaucherType.java deleted file mode 100644 index 9252893c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RaucherType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java deleted file mode 100644 index 6201ca26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Ein Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -public class Referenz { - - @XmlElement(name = "Link", required = true) - protected Object link; - @XmlElement(name = "Bezeichnung") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java deleted file mode 100644 index 3bcab36d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - @XmlElement(name = "Referenzen") - protected List referenzen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java deleted file mode 100644 index 23bae784..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,501 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 19215245..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java deleted file mode 100644 index 4a5669b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ServiceFault.java deleted file mode 100644 index 1c456746..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java deleted file mode 100644 index e05d2b62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Typ fuer Sicherstellungen in der Personenversicherung - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -public class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "Betrag") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * 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; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/StatusType.java deleted file mode 100644 index 61930824..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="4"/>
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 42a32d02..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TreuhaenderfrageType.java deleted file mode 100644 index c7bf4bab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender" -}) -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - protected boolean treuhaender; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - public void setTreuhaender(boolean value) { - this.treuhaender = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/UploadDokumentType.java deleted file mode 100644 index 9c7e7fdf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/UploadDokumentType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index 518caa8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktSachPrivatType.class -}) -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java deleted file mode 100644 index c304ced9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,224 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.omds2Types.v2_11.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel (1. Generation, wird nur in Kfz verwendet) - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class, - VerkaufsproduktGenerischType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * 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 verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerpfaendungType.java deleted file mode 100644 index 54622e84..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerpfaendungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Sicherstellung vom Typ Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index cb2a2024..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 at.vvo.omds.types.omds2Types.v2_11.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int ueberdachteFlaecheInQm; - - /** - * 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 adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java deleted file mode 100644 index 97e68096..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index 5ad5f560..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertePersonType.class, - VersicherteLiegenschaftType.class, - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class -}) -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseType.java deleted file mode 100644 index a3b834f8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,59 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type") -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -public abstract class VersichertesInteresseType { - - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherungssteuerType.java deleted file mode 100644 index 1cb86d87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VertragspersonType.java deleted file mode 100644 index 7352ba87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 at.vvo.omds.types.omds2Types.v2_11.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkularglaeubigerType.java deleted file mode 100644 index 66423745..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungPersonenType.java deleted file mode 100644 index 75c1c807..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungType.java deleted file mode 100644 index c36e56ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_11.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungType.java deleted file mode 100644 index 37b6512c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Angaben zu einer Vorversicherung - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java deleted file mode 100644 index 2c3e815c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,191 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Details zu einer Vorversicherung - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class, - VorversicherungType.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenImplType.java deleted file mode 100644 index fbf57910..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Standardimplementierung Vorversicherungen - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java deleted file mode 100644 index 0fdad672..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenKfzType.class, - VorversicherungenImplType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlungsdatenType.java deleted file mode 100644 index f0c0e843..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Beschreibt die Zahlungsdaten - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlwegType.java deleted file mode 100644 index dd2a43dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZeitraumType.java deleted file mode 100644 index 021e76b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZeitraumType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZulassungsdatenType.java deleted file mode 100644 index 96ad1677..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index b6291f7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 00753342..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index 14893e91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Personendaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index e0ff658b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index c663f448..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index 36c44d1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java deleted file mode 100644 index 888bbf07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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_5_0.on2antrag.leben.ZusatzversicherungLebenType; - - -/** - * Basistyp für ein Zusatzprodukt, 2. Generation - * - *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ZusatzversicherungLebenType.class -}) -public class ZusatzproduktGenerischType - extends ZusatzproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java deleted file mode 100644 index 4c162ee4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Basistyp für ein Zusatzprodukt (wird nirgends verwendet) - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * 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; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java deleted file mode 100644 index cc40d51e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_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; - - -/** - * Zustimmung Gesundheitsdaten - * - *

Java-Klasse für ZustimmungGesundheitsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZustimmungGesundheitsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Zustimmung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZustimmungGesundheitsdaten_Type", propOrder = { - "lfnr", - "zustimmung" -}) -public class ZustimmungGesundheitsdatenType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "Zustimmung") - protected boolean zustimmung; - - /** - * 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; - } - - /** - * Ruft den Wert der zustimmung-Eigenschaft ab. - * - */ - public boolean isZustimmung() { - return zustimmung; - } - - /** - * Legt den Wert der zustimmung-Eigenschaft fest. - * - */ - public void setZustimmung(boolean value) { - this.zustimmung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/package-info.java deleted file mode 100644 index 5512a0d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index 178e068f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 5020080c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index a6ac8c36..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 3bbb8455..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 5da80029..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index f0399214..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 7bc6c3f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 26cff4c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 28e6d3a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/ObjectFactory.java deleted file mode 100644 index 3adb9f6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/package-info.java deleted file mode 100644 index e871387f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index eca826e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateSachPrivatRequestType.class -}) -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 3fcc7f73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class, - CalculateRequestGenType.class -}) -public abstract class CalculateRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index 43d00b38..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateSachPrivatResponseType.class -}) -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index e1e887ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class, - CalculateResponseGenType.class -}) -public abstract class CalculateResponseType - extends CommonProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index 438ee35c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationSachPrivatRequestType.class -}) -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index 31fbcbe6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class, - CreateApplicationRequestGenType.class -}) -public abstract class CreateApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index f6584d64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationSachPrivatResponseType.class -}) -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 7e8c8364..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class, - CreateApplicationResponseGenType.class -}) -public abstract class CreateApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index 859f073e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferSachPrivatRequestType.class -}) -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index 575c0f60..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class, - CreateOfferRequestGenType.class -}) -public abstract class CreateOfferRequestType - extends CommonProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index f87c4dd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferSachPrivatResponseType.class -}) -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index a1205779..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class, - CreateOfferResponseGenType.class -}) -public abstract class CreateOfferResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 54b38bf5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index f38bfaca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index fc685f57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java deleted file mode 100644 index 382cf43c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java +++ /dev/null @@ -1,529 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZahlungsdatenType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntragBasis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragBasis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragBasis_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten" -}) -@XmlSeeAlso({ - SpezAntragType.class -}) -public abstract class SpezAntragBasisType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 26bd9fe7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,532 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.AntragSachPrivatType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten" -}) -@XmlSeeAlso({ - SpezAntragKfzType.class, - AntragSachPrivatType.class -}) -public abstract class SpezAntragType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 082c1919..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.BerechnungSachPrivatType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - SpezBerechnungKfzType.class, - BerechnungSachPrivatType.class -}) -public abstract class SpezBerechnungType { - - @XmlElement(name = "Personen") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index 3e07b2c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.OffertSachPrivatType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertKfzType.class, - OffertSachPrivatType.class -}) -public abstract class SpezOffertType { - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index 8d3fa9b0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationSachPrivatRequestType.class -}) -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index 225c7141..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class, - SubmitApplicationRequestGenType.class -}) -public abstract class SubmitApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index 1efff268..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationSachPrivatResponseType.class -}) -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index c3d63b03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class, - SubmitApplicationResponseGenType.class -}) -public abstract class SubmitApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 3b5969cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/package-info.java deleted file mode 100644 index d895e4b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 7d670802..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index 067bac5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 4d704947..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index 768ee322..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index 469f667b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index 395b60fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 9489ba71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 3ed666f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 48b566f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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_5_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 3d6cd3d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 46f6dd1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import java.math.BigDecimal; -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 at.vvo.omds.types.omds2Types.v2_11.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_11.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index 6047c6c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 34bd399f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index 71bb49bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,264 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import java.math.BigDecimal; -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_5_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 6f7df1e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index b42abd26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,349 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 3a7f0fe0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 67fbcafc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 7b4c7bb5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 354d5d1d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index 77f63ce4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index 7e2b8bda..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 7eb0135a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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_5_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index e03ab311..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index a273402f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index 202cadb7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 8d7abfb2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index 6ea59368..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index d337ea1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_11.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index db2155ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index 3685291b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index 18e5f8ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenType; - - -/** - * Type Vorversicherungen für Kfz - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index f4eaf64a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index 60c572e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 9b72b801..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index f0eb1509..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 507c810e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/RentenoptionType.java deleted file mode 100644 index 666400a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/RentenoptionType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Rentenoption - * - *

Java-Klasse für Rentenoption_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Rentenoption_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rentenoption_Type") -public class RentenoptionType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/TarifLebenType.java deleted file mode 100644 index 122fa725..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/TarifLebenType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.AttributMultiEnumType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Leben. - * - *

Java-Klasse für TarifLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
- *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RefSicherstellungLfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMultiEnum_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifLeben_Type", propOrder = { - "garantierteAblebenssumme", - "rentenoption", - "zusatzbausteine", - "refSicherstellungLfdNr", - "fondsauswahl" -}) -public class TarifLebenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "GarantierteAblebenssumme", required = true) - protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; - @XmlElement(name = "Rentenoption") - protected RentenoptionType rentenoption; - @XmlElement(name = "Zusatzbausteine") - protected List zusatzbausteine; - @XmlElement(name = "RefSicherstellungLfdNr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfdNr; - @XmlElement(name = "Fondsauswahl") - protected AttributMultiEnumType fondsauswahl; - - /** - * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { - return garantierteAblebenssumme; - } - - /** - * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { - this.garantierteAblebenssumme = value; - } - - /** - * Ruft den Wert der rentenoption-Eigenschaft ab. - * - * @return - * possible object is - * {@link RentenoptionType } - * - */ - public RentenoptionType getRentenoption() { - return rentenoption; - } - - /** - * Legt den Wert der rentenoption-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RentenoptionType } - * - */ - public void setRentenoption(RentenoptionType value) { - this.rentenoption = value; - } - - /** - * Gets the value of the zusatzbausteine property. - * - *

- * 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 set method for the zusatzbausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzbausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzversicherungLebenType } - * - * - */ - public List getZusatzbausteine() { - if (zusatzbausteine == null) { - zusatzbausteine = new ArrayList(); - } - return this.zusatzbausteine; - } - - /** - * Ruft den Wert der refSicherstellungLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRefSicherstellungLfdNr() { - return refSicherstellungLfdNr; - } - - /** - * Legt den Wert der refSicherstellungLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRefSicherstellungLfdNr(Integer value) { - this.refSicherstellungLfdNr = value; - } - - /** - * Ruft den Wert der fondsauswahl-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType getFondsauswahl() { - return fondsauswahl; - } - - /** - * Legt den Wert der fondsauswahl-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributMultiEnumType } - * - */ - public void setFondsauswahl(AttributMultiEnumType value) { - this.fondsauswahl = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersichertePersonLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersichertePersonLebenType.java deleted file mode 100644 index 69c16fd3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersichertePersonLebenType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType; - - -/** - * Typ für ein Produkt in der Sparte Leben. - * - *

Java-Klasse für VersichertePersonLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePersonLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePersonLeben_Type", propOrder = { - "personRefLfnr", - "tarife", - "refSicherstellungLfnr" -}) -public class VersichertePersonLebenType - extends ProduktGenerischType -{ - - @XmlElement(name = "PersonRefLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int personRefLfnr; - @XmlElement(name = "Tarife", required = true) - protected List tarife; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfnr; - - /** - * 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; - } - - /** - * Gets the value of the tarife property. - * - *

- * 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 set method for the tarife property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarife().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TarifLebenType } - * - * - */ - public List getTarife() { - if (tarife == null) { - tarife = new ArrayList(); - } - return this.tarife; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java deleted file mode 100644 index bce8c7dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AttributDezimalType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AttributDoubleType; - - -/** - * Definition einer Versicherungssumme in einem Zusatzbaustein - * - *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherungssummeZusatzbaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type"/>
- *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { - "prozentVersicherungssumme", - "betrag" -}) -public class VersicherungssummeZusatzbausteinType { - - @XmlElement(name = "ProzentVersicherungssumme") - protected AttributDoubleType prozentVersicherungssumme; - @XmlElement(name = "Betrag") - protected AttributDezimalType betrag; - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDoubleType } - * - */ - public AttributDoubleType getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDoubleType } - * - */ - public void setProzentVersicherungssumme(AttributDoubleType value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDezimalType } - * - */ - public AttributDezimalType getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDezimalType } - * - */ - public void setBetrag(AttributDezimalType value) { - this.betrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/WartefristType.java deleted file mode 100644 index 13e442d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/WartefristType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element zur Abbildung einer Wartefrist - * - *

Java-Klasse für Wartefrist_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wartefrist_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wartefrist_Type") -public abstract class WartefristType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java deleted file mode 100644 index 29a369c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungBerufsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java deleted file mode 100644 index fb5fb1ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungErwerbsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungLebenType.java deleted file mode 100644 index 190b37e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungLebenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZusatzproduktGenerischType; - - -/** - * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) - * - *

Java-Klasse für ZusatzversicherungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungLeben_Type") -@XmlSeeAlso({ - ZusatzversicherungBerufsunfaehigkeitType.class, - ZusatzversicherungErwerbsunfaehigkeitType.class, - ZusatzversicherungPraemienuebernahmeAblebenType.class, - ZusatzversicherungUnfalltodType.class, - ZusatzversicherungUnfallinvaliditaetType.class -}) -public class ZusatzversicherungLebenType - extends ZusatzproduktGenerischType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java deleted file mode 100644 index e862bfda..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall - * - *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungPraemienuebernahmeAblebenType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java deleted file mode 100644 index 4e839f14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet - * - *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfallinvaliditaetType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 134 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 968 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java deleted file mode 100644 index b59cfe0d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod - * - *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfalltod_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfalltodType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 122 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 968 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 494729f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index 4d2a956f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 4b460034..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index c23ecb59..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index d4a81afc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index 72d01c7b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index b0fb474c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index a9457701..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index c9b9f519..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 90bfff86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index 657c5a6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index e3affd39..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index 089ab033..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index d95c9c34..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index ce5e9c65..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,367 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index 1d28a2de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index 41aa6cde..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index 2ab63de7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index bdfbcc5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index 06355416..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds2Types.v2_11.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 4d497a6b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,427 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -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 at.vvo.omds.types.omds2Types.v2_11.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_11.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - protected String bauartCd; - @XmlElement(name = "DachungCd") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude", required = true) - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index fa1f8f90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index 1a8169b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index eed95d0d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index fb34f84a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 1579633b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index ceb6d323..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.Gruppe; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Gruppen" type="{urn:omds3CommonServiceTypes-1-1-0}Gruppe" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "gruppen", - "versicherteObjekte" -}) -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "Gruppen") - protected List gruppen; - @XmlElement(name = "VersicherteObjekte", required = true) - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the gruppen property. - * - *

- * 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 set method for the gruppen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGruppen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Gruppe } - * - * - */ - public List getGruppen() { - if (gruppen == null) { - gruppen = new ArrayList(); - } - return this.gruppen; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index 9b5c18ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - protected RisikoHaushaltType risikoHaushalt; - - /** - * 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 risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 5169a75c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index e5916751..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index 8928f098..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index ad4742ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index fd9c20ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 4a6e8831..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 4f80ed9e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 5b88b402..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,395 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index 205c3598..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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_5_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index 0e155963..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @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 lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index eb48e455..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index b31cb69a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index 2827313c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index 9018047e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * 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; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 89567766..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 6caac7a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 0856f1e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index 2dad8f00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/NatPersonType.java deleted file mode 100644 index 79ce4390..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ObjectFactory.java deleted file mode 100644 index a475b1a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,386 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/OrtType.java deleted file mode 100644 index 15b828d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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_11.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index a55b35f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index 86ac826a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 5ef19900..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenType.java deleted file mode 100644 index 2b593651..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,415 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_11.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_11.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 75ff182f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index 7dcd193f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index db259d3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index d7646bad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index 58a088bc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index 1b407a0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,311 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 30abef78..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index 0efc4424..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index 9070aa8a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index cc7aeea4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - protected String behandlerName; - @XmlElement(name = "Behandlungen") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index 85c960e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index 0b22862c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName" -}) -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - protected String diagnose; - @XmlElement(name = "BehandlerName") - protected String behandlerName; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index e5899a5b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index e5793eca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index e5b21229..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index 4e36113e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index 9ee8467d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/package-info.java deleted file mode 100644 index 126eaa51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java deleted file mode 100644 index 3498e0fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_5_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2020-07-14T11:59:10.778+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java deleted file mode 100644 index ea44a4d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,451 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_5_0.service; - -import java.util.logging.Logger; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.xml.ws.soap.MTOM; -import java.util.logging.Logger; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2020-07-14T11:59:10.724+02:00 - * Generated source version: 3.2.0 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType") -@MTOM(enabled = true, threshold = 1024) -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java deleted file mode 100644 index 387d8f8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,202 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_5_0.service; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2020-07-14T11:59:10.763+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds2Types.v2_11.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on1basis.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - @WebParam(partName = "parameters", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - @WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - @WebParam(partName = "parameters", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - @WebParam(partName = "parameters", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimResponseType searchClaim( - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType submitClaim( - @WebParam(partName = "parameters", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - @WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - @WebParam(partName = "parameters", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - @WebParam(partName = "parameters", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - @WebParam(partName = "parameters", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType checkClaim( - @WebParam(partName = "parameters", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - @WebParam(partName = "parameters", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType getClaim( - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - @WebParam(partName = "parameters", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - @WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index 3142f720..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,370 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.soap.MTOMFeature; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2020-07-14T11:59:10.603+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); -// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); -// OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_parameters); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_parameters); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimRequestType _searchClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataRequest _getUserData_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType _submitClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType _checkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_parameters); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_parameters); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageRequest _getArcImage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType _getClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType _login_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_parameters); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java deleted file mode 100644 index bae6132f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.service; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2020-07-14T11:59:10.714+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcContent.java deleted file mode 100644 index 2d042ab1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 70f46c01..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 3f9c8ba4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 274e3058..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 1415cd1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index ec370a18..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 854c22f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index f4e93e92..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 32804dc4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 11636b17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index ca1e20e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 3949321d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/LoginRequestType.java deleted file mode 100644 index efebead1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 172efb75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_11.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_11.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 2ae6d167..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 0c5f34af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index e01607a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 913f1032..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 2ee76318..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,457 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_5_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 0751410b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_5_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 5c101bed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -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.XmlType; -import at.vvo.omds.types.omds3Types.r1_5_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * 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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 9905842c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataResponse.java deleted file mode 100644 index b4c0b958..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_11.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/package-info.java deleted file mode 100644 index 7cc9a552..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_5_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AListenAttributType.java deleted file mode 100644 index ea3dfbf7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AListenAttributType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ASingleAttributType.java deleted file mode 100644 index f4004282..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ASingleAttributType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 62155c47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseArtCdType.java deleted file mode 100644 index 738f12c8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseType.java deleted file mode 100644 index a703b6d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AdresseType.java +++ /dev/null @@ -1,302 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AgentFilterType.java deleted file mode 100644 index 38fa6516..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AntragsartType.java deleted file mode 100644 index 6db9b210..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AntragsartType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDatumType.java deleted file mode 100644 index 5698bacb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDatumType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDezimalType.java deleted file mode 100644 index 51ed70ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDezimalType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDoubleType.java deleted file mode 100644 index ebbb05f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributDoubleType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributEnumType.java deleted file mode 100644 index e0b40c9d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributEnumType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributIntType.java deleted file mode 100644 index 92d476e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributIntType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index 43bf7e21..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index fbacac64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,158 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index 21947392..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 194e2136..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenStringType.java deleted file mode 100644 index fe6c8ec2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,188 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenType.java deleted file mode 100644 index 5ac2d157..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMsgType.java deleted file mode 100644 index 8003b6ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMsgType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMultiEnumType.java deleted file mode 100644 index b3efdcd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - protected List value; - @XmlElement(name = "Default") - protected List _default; - @XmlElement(name = "MaxAnz") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributStringType.java deleted file mode 100644 index b75687a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributStringType.java +++ /dev/null @@ -1,216 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributType.java deleted file mode 100644 index 3e1ce44a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AttributType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AuthorizationFilter.java deleted file mode 100644 index 1db275c8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BankverbindungType.java deleted file mode 100644 index 7301ee31..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BankverbindungType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 29bea2ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BerechnungsvarianteType.java deleted file mode 100644 index b583cbe2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 131d2654..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BezugsrechtType.java deleted file mode 100644 index 600de56f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BezugsrechtType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 (nur Kontext Kfz) - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusSystemType.java deleted file mode 100644 index 56def0f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index be2250d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessRequestType.java deleted file mode 100644 index 85af9f50..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.common.CalculateRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer", - "aenderungsgrund" -}) -@XmlSeeAlso({ - CalculateRequestType.class, - CreateOfferRequestType.class, - CreateApplicationRequestType.class, - SubmitApplicationRequestType.class -}) -public abstract class CommonProcessRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - - /** - * 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; - } - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessResponseType.java deleted file mode 100644 index 2a53640f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.common.CalculateResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer", - "aenderungsgrund" -}) -@XmlSeeAlso({ - CalculateResponseType.class, - CreateOfferResponseType.class, - CreateApplicationResponseType.class, - SubmitApplicationResponseType.class -}) -public abstract class CommonProcessResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - - /** - * 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; - } - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonRequestType.java deleted file mode 100644 index dec57b3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonRequestType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "technischeObjekte", - "korrelationsId" -}) -@XmlSeeAlso({ - GetApplicationDocumentRequestType.class, - CommonProcessRequestType.class, - CommonSearchRequestType.class, - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.class -}) -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ClientId") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - protected List technischeParameter; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonResponseType.java deleted file mode 100644 index bb711e0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonResponseType.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status", - "technischeObjekte", - "gestartet", - "beendet" -}) -@XmlSeeAlso({ - GetApplicationDocumentResponseType.class, - CommonProcessResponseType.class, - CommonSearchResponseType.class, - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchRequestType.java deleted file mode 100644 index cbd7d955..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 at.vvo.omds.types.omds2Types.v2_14.ELZeitraumType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchResponseType.java deleted file mode 100644 index 093659ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DateianhangType.java deleted file mode 100644 index b536f8c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DateianhangType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann - * - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DatenverwendungType.java deleted file mode 100644 index a7f56260..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DirectionCdType.java deleted file mode 100644 index 0184b2ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DirectionCdType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentInfoType.java deleted file mode 100644 index 1e00cbb4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentInfoType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente" -}) -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 referenzWeitereDokumente; - - /** - * 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentenReferenzType.java deleted file mode 100644 index a76bcb98..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/EintragSchluessellisteType.java deleted file mode 100644 index b5aeff5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementIdType.java deleted file mode 100644 index 67374dc9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index f776b292..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ElementarproduktSachPrivatType.class -}) -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktType.java deleted file mode 100644 index de56ca37..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ElementarproduktType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "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 = "ZusaetzlicheElementarproduktdaten") - protected List 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; - } - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ErsatzpolizzenType.java deleted file mode 100644 index 84c62fa6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/FahrzeugType.java deleted file mode 100644 index b8f80eb8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/FahrzeugType.java +++ /dev/null @@ -1,863 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import java.math.BigDecimal; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String aufbauNatC; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - - /** - * Ruft den Wert der aufbauNatC-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufbauNatC() { - return aufbauNatC; - } - - /** - * Legt den Wert der aufbauNatC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufbauNatC(String value) { - this.aufbauNatC = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index a0a4c442..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KontierungType.java deleted file mode 100644 index 0642f739..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KontierungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KostenFixOderProzentType.java deleted file mode 100644 index e1dbd32c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KreditkarteType.java deleted file mode 100644 index 95b2274e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjectFactory.java deleted file mode 100644 index 6c80c731..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjectFactory.java +++ /dev/null @@ -1,557 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PersonType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektIdType.java deleted file mode 100644 index d9a42ff3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 1b9359a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; -import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class, - SchadenmelderVermittlerType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffeneSchaedenType.java deleted file mode 100644 index d777d763..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffenerSchadenType.java deleted file mode 100644 index 812c514e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PartnerRoleType.java deleted file mode 100644 index 6cc88517..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PartnerRoleType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersBankverbindungType.java deleted file mode 100644 index 477de6d9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersonType.java deleted file mode 100644 index 48d387c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PersonType.java +++ /dev/null @@ -1,421 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_14.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_14.ELTextType; -import at.vvo.omds.types.omds2Types.v2_14.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_14.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -public class PersonType { - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 5c6755ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; -import at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenversandType.java deleted file mode 100644 index ef735e7e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PolizzenversandType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PraemieType.java deleted file mode 100644 index b2eb46a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/PraemieType.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag" -}) -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg", required = true) - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - protected Double abschlag; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAbschlag(Double value) { - this.abschlag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktGenerischType.java deleted file mode 100644 index 1f49e564..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktGenerischType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktSachPrivatType.class -}) -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktType.java deleted file mode 100644 index 3f116637..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktType.java +++ /dev/null @@ -1,225 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class, - ProduktGenerischType.class -}) -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit", required = true) - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * 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 produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index 710bd13e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinType.java deleted file mode 100644 index 0e0d6f3d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RaucherType.java deleted file mode 100644 index 4634c377..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RaucherType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/Referenz.java deleted file mode 100644 index b9f29562..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/Referenz.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Ein Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -public class Referenz { - - @XmlElement(name = "Link", required = true) - protected Object link; - @XmlElement(name = "Bezeichnung") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ResponseStatusType.java deleted file mode 100644 index 75920a8a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ResponseStatusType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - @XmlElement(name = "Referenzen") - protected List referenzen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RisikoNatPersonType.java deleted file mode 100644 index a2f5762b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,501 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 1f8fac99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SelbstbehaltType.java deleted file mode 100644 index db30e295..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ServiceFault.java deleted file mode 100644 index accad474..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/StatusType.java deleted file mode 100644 index ba0c36e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/StatusType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 7765b615..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnischesObjektType.java deleted file mode 100644 index 0c4bd3fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/TechnischesObjektType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/UploadDokumentType.java deleted file mode 100644 index b151081c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/UploadDokumentType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index e29e791a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktSachPrivatType.class -}) -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktType.java deleted file mode 100644 index 8890af90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,224 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.omds2Types.v2_14.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class, - VerkaufsproduktGenerischType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * 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 verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index 9556e9c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int ueberdachteFlaecheInQm; - - /** - * 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 adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertePersonType.java deleted file mode 100644 index 879f6ca4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertePersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index 36e7ec09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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_6_0.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class, - VersichertePersonType.class, - VersicherteLiegenschaftType.class -}) -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseType.java deleted file mode 100644 index 3c9aaa25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,59 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type") -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -public abstract class VersichertesInteresseType { - - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherungssteuerType.java deleted file mode 100644 index 89ce72e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VertragspersonType.java deleted file mode 100644 index ee33468a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkularglaeubigerType.java deleted file mode 100644 index f5a311f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkulierungType.java deleted file mode 100644 index 9e44efa6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungType.java deleted file mode 100644 index 0a4cfa16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Angaben zu einer Vorversicherung - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenDetailType.java deleted file mode 100644 index ba8b736b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,191 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Details zu einer Vorversicherung - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class, - VorversicherungType.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenImplType.java deleted file mode 100644 index 5b09fc18..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Standardimplementierung Vorversicherungen - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenType.java deleted file mode 100644 index fc9ed344..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/VorversicherungenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenKfzType.class, - VorversicherungenImplType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlungsdatenType.java deleted file mode 100644 index 2a6ac312..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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; - - -/** - * Beschreibt die Zahlungsdaten - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlwegType.java deleted file mode 100644 index 61d09bf7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZeitraumType.java deleted file mode 100644 index cd108cce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZeitraumType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZulassungsdatenType.java deleted file mode 100644 index 839b0cc4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index 6dc8037f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 6c4af68f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index a27e2257..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Personendaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index a5e680cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index cec83cb2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/package-info.java deleted file mode 100644 index 56c50d47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index b7cb2267..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index a7cd0394..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 327b1a73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 3a83abe6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 70e80b58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index c4305d2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 266319ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index ed162c12..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 09b4ef99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/ObjectFactory.java deleted file mode 100644 index ce3e188c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/package-info.java deleted file mode 100644 index b9e750d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index 1e0a723e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateSachPrivatRequestType.class -}) -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 79db9814..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class, - CalculateRequestGenType.class -}) -public abstract class CalculateRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index 05e913c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateSachPrivatResponseType.class -}) -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 0108318b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class, - CalculateResponseGenType.class -}) -public abstract class CalculateResponseType - extends CommonProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index bf5e3328..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationSachPrivatRequestType.class -}) -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index dcffb8cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class, - CreateApplicationRequestGenType.class -}) -public abstract class CreateApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index 5813092a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationSachPrivatResponseType.class -}) -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 3502b047..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class, - CreateApplicationResponseGenType.class -}) -public abstract class CreateApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index 42431b27..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferSachPrivatRequestType.class -}) -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index 72e59c30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class, - CreateOfferRequestGenType.class -}) -public abstract class CreateOfferRequestType - extends CommonProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index 8bc0cc71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferSachPrivatResponseType.class -}) -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index 2169cb7e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class, - CreateOfferResponseGenType.class -}) -public abstract class CreateOfferResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 345e087c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index d5908139..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index f8fda4c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index eca074fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,532 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten" -}) -@XmlSeeAlso({ - AntragSachPrivatType.class, - SpezAntragKfzType.class -}) -public abstract class SpezAntragType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 797b96c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.BerechnungSachPrivatType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - BerechnungSachPrivatType.class, - SpezBerechnungKfzType.class -}) -public abstract class SpezBerechnungType { - - @XmlElement(name = "Personen") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index db1e3186..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.OffertSachPrivatType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - OffertSachPrivatType.class, - SpezOffertKfzType.class -}) -public abstract class SpezOffertType { - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index ed59fae3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationSachPrivatRequestType.class -}) -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index eed37081..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class, - SubmitApplicationRequestGenType.class -}) -public abstract class SubmitApplicationRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index fa1159be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationSachPrivatResponseType.class -}) -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index d73e6422..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class, - SubmitApplicationResponseGenType.class -}) -public abstract class SubmitApplicationResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 526777c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/package-info.java deleted file mode 100644 index 0dc6b182..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 9f7e8a91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index ce708f97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 220fc01e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index 7bcdbaf6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index 2f1945fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index 17d5330f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 8655163a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index b6cf6479..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index e6e8f8af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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_6_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 0efeb72a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index e8934787..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import java.math.BigDecimal; -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 at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index 55135d6c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 5775bb85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index 725b66be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,264 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import java.math.BigDecimal; -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_6_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index d8ecc53b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index 53089e64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,349 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index f4822b44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 167aafeb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index cfe3a605..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index afa62125..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index cd924652..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index 0122f3cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index cb446c81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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_6_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 3ef1fa60..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index 62e3586b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index 79f9543b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 26df34b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index 88de0a18..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 6928ea94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index c1e81010..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index ca658a36..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index d7325751..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VorversicherungenType; - - -/** - * Type Vorversicherungen für Kfz - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index ced66ebb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index 42213fbc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index b5b60f2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index c000e754..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 50fd1ce6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index abaf781f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index a6194d14..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 95054e20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index f9b811e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 82f63f09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index 7f911a19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index 9441617e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index 7a0d4918..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 1866e564..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 14c7b4cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index 5e8e2db3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index fc622c1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index 3f0dc301..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index abc63705..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index 67dfb44b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,367 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index f0049c58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index a4520407..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index 702ed269..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index 7bacc3c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index ea0ef147..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 7d3475b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,427 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -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 at.vvo.omds.types.omds2Types.v2_14.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - protected String bauartCd; - @XmlElement(name = "DachungCd") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude", required = true) - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index fced23dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index 35ff64f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index 6e025b4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index 57476c0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 45eef7c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index df7a72c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteObjekte" -}) -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteObjekte", required = true) - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index d29668a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - protected RisikoHaushaltType risikoHaushalt; - - /** - * 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 risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 29232d8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index 78607c25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index 5161579a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index 55f50a85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index 29966e4b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 89b63e1d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index ee932f7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 80302ded..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,395 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index 0b0aadc4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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_6_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index 16406f79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @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 lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index 043ecbf2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index e4857188..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index 0942b84d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index 846f638c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * 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; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 389e01c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index e70dfb56..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 87714fa9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index 94be9aca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/NatPersonType.java deleted file mode 100644 index 9f41e832..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ObjectFactory.java deleted file mode 100644 index 125f7b36..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,386 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/OrtType.java deleted file mode 100644 index f6d0c065..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 79a94457..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index 6e2aa95d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 5a0fb6f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenType.java deleted file mode 100644 index 994e10ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,415 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index d7740d23..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index 2292db2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index 217b2c89..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index e5e6e137..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index 9d846e1c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index f490f734..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,311 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 120e14fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index bb3a4ab6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index dc0c8b7c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index 5aa85595..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - protected String behandlerName; - @XmlElement(name = "Behandlungen") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index 05d3ef53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index 7248f025..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName" -}) -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - protected String diagnose; - @XmlElement(name = "BehandlerName") - protected String behandlerName; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index 6d2fe1f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 55275f7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index 3eb7a812..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index 2d95cff2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index 878316d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/package-info.java deleted file mode 100644 index c447f2f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsService.java deleted file mode 100644 index 8258ca66..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_6_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2021-06-23T18:51:56.256+02:00 - * Generated source version: 3.2.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortImpl.java deleted file mode 100644 index e40e31b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,452 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_6_0.service; - -import java.util.logging.Logger; -import javax.xml.ws.soap.MTOM; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2021-06-23T18:51:56.226+02:00 - * Generated source version: 3.2.0 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType") -@MTOM(enabled = true, threshold = 1024) -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.LoginRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType.java deleted file mode 100644 index 6a7ddc4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,202 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_6_0.service; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2021-06-23T18:51:56.246+02:00 - * Generated source version: 3.2.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.common.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_14.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - @WebParam(partName = "parameters", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - @WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - @WebParam(partName = "parameters", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - @WebParam(partName = "parameters", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimResponseType searchClaim( - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataResponse getUserData( - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType submitClaim( - @WebParam(partName = "parameters", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageResponse getOMDSPackage( - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - @WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - @WebParam(partName = "parameters", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - @WebParam(partName = "parameters", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - @WebParam(partName = "parameters", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimResponseType checkClaim( - @WebParam(partName = "parameters", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - @WebParam(partName = "parameters", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageResponse getArcImage( - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimResponseType getClaim( - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse login( - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - @WebParam(partName = "parameters", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - @WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index aeb8fcc9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,368 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.soap.MTOMFeature; - -/** - * This class was generated by Apache CXF 3.2.0 - * 2021-06-23T18:51:56.178+02:00 - * Generated source version: 3.2.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_parameters); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_parameters); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimRequestType _searchClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataRequest _getUserData_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType _submitClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimRequestType _checkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_parameters); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_parameters); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageRequest _getArcImage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimRequestType _getClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.LoginRequestType _login_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_parameters); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/ServiceFaultMsg.java deleted file mode 100644 index 1f485a19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.service; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.2.0 - * 2021-06-23T18:51:56.223+02:00 - * Generated source version: 3.2.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault serviceFault; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault serviceFault) { - super(message); - this.serviceFault = serviceFault; - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault serviceFault, Throwable cause) { - super(message, cause); - this.serviceFault = serviceFault; - } - - public at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault getFaultInfo() { - return this.serviceFault; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcContent.java deleted file mode 100644 index 0845e2c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 4192f8e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 4f640338..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index ecb8d3df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 7ac2230f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index e293d290..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 7b528f80..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index aa00e8e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 2479fa48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 3331b948..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index b900ad9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 965b3e9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 93df97a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 63ced171..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_14.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 22c6fc88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index ac4907a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index 9b5c484a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 0baab807..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ObjectFactory.java deleted file mode 100644 index cec1fe5e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,457 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_6_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 3a645088..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_6_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index ab6e5432..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -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.XmlType; -import at.vvo.omds.types.omds3Types.r1_6_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * 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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataRequest.java deleted file mode 100644 index c56facb7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 6927e4c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/package-info.java deleted file mode 100644 index 26d8acf2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_6_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_6_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java deleted file mode 100644 index bc2da687..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java deleted file mode 100644 index 22908792..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 8d3a79cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java deleted file mode 100644 index a247f7fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseArtCdType.java deleted file mode 100644 index 4276b754..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java deleted file mode 100644 index bd6ca22e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java deleted file mode 100644 index 33665e04..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AntragsartType.java deleted file mode 100644 index 8a8c916f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AntragsartType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java deleted file mode 100644 index e1265b9e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java deleted file mode 100644 index 308183bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java deleted file mode 100644 index d3d3b4c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java deleted file mode 100644 index 08c2af00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java deleted file mode 100644 index c4b14530..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index 42967823..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index d7713da5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index c216ce86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 9000950f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java deleted file mode 100644 index 9eec20c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java deleted file mode 100644 index dedb9756..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java deleted file mode 100644 index 2201148a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java deleted file mode 100644 index 3c96bd53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java +++ /dev/null @@ -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. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - protected List value; - @XmlElement(name = "Default") - protected List _default; - @XmlElement(name = "MaxAnz") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java deleted file mode 100644 index ddba7e6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java deleted file mode 100644 index 1994d4a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java +++ /dev/null @@ -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) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java deleted file mode 100644 index 944ae9b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java +++ /dev/null @@ -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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungType.java deleted file mode 100644 index 47ab2bdb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungType.java +++ /dev/null @@ -1,146 +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; - - -/** - * Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für Autorisierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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 name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType.Autorisierungen.class -}) -public class AutorisierungType { - - @XmlElement(name = "AutorisierungsId") - protected Object autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - protected short lfnrPerson; - @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 lfnrPerson-Eigenschaft ab. - * - */ - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - public void setLfnrPerson(short value) { - this.lfnrPerson = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsAnforderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsAnforderungType.java deleted file mode 100644 index 3545d629..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsAnforderungType.java +++ /dev/null @@ -1,149 +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 zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für AutorisierungsAnforderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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 name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -public class AutorisierungsAnforderungType { - - @XmlElement(name = "AutorisierungsId") - protected Object autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - protected short lfnrPerson; - @XmlElement(name = "Rolle", required = true) - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - protected List 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 lfnrPerson-Eigenschaft ab. - * - */ - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - public void setLfnrPerson(short value) { - this.lfnrPerson = 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. - * - *

- * 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 set method for the autorisierungsart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungsart().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsartType } - * - * - */ - public List getAutorisierungsart() { - if (autorisierungsart == null) { - autorisierungsart = new ArrayList(); - } - return this.autorisierungsart; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsartType.java deleted file mode 100644 index c6cb9396..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AutorisierungsartType.java +++ /dev/null @@ -1,61 +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; -import javax.xml.bind.annotation.XmlValue; - - -/** - * Der Typ für Autorisierungsarten - * - *

Java-Klasse für Autorisierungsart_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Autorisierungsart_Type">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierungsart_Type", propOrder = { - "value" -}) -public class AutorisierungsartType { - - @XmlValue - protected String value; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java deleted file mode 100644 index 5a279b74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java deleted file mode 100644 index c1f98b63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BerechnungsvarianteType.java deleted file mode 100644 index 77b3e179..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,53 +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; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 058ff095..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java deleted file mode 100644 index 3993d86f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") -public class BezugsberechtigungGesetzlicheErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java deleted file mode 100644 index 5dbcd068..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungIndividuell complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java deleted file mode 100644 index d4cbf9ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungNamentlich complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonNamentlichesBezugsrechtType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java deleted file mode 100644 index 251668cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") -public class BezugsberechtigungTestamentarischeErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java deleted file mode 100644 index a5f4c46a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java deleted file mode 100644 index b91f4f03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungUeberbringer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungUeberbringer_Type") -public class BezugsberechtigungUeberbringerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java deleted file mode 100644 index f9ec4914..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersichertePerson_Type") -public class BezugsberechtigungVersichertePersonType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java deleted file mode 100644 index 8d7bbc58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") -public class BezugsberechtigungVersicherungsnehmerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsrechtType.java deleted file mode 100644 index c150d836..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsrechtType.java +++ /dev/null @@ -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 (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java deleted file mode 100644 index f2b41c17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 1a8c1551..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,56 +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; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessRequestType.java deleted file mode 100644 index ebe6f3a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,71 +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.on2antrag.common.BOAProcessRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessRequestType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessResponseType.java deleted file mode 100644 index b884ae0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,71 +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.on2antrag.common.BOAProcessResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessResponseType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonRequestType.java deleted file mode 100644 index ec5fae30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonRequestType.java +++ /dev/null @@ -1,201 +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.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "technischeObjekte", - "korrelationsId" -}) -@XmlSeeAlso({ - GetApplicationDocumentRequestType.class, - CommonSearchRequestType.class, - CommonProcessRequestType.class, - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.class -}) -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ClientId") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - protected List technischeParameter; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonResponseType.java deleted file mode 100644 index c2c04c5d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonResponseType.java +++ /dev/null @@ -1,172 +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.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status", - "technischeObjekte", - "gestartet", - "beendet" -}) -@XmlSeeAlso({ - GetApplicationDocumentResponseType.class, - CommonSearchResponseType.class, - CommonProcessResponseType.class, - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchRequestType.java deleted file mode 100644 index 51845760..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,200 +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 at.vvo.omds.types.omds2Types.v2_14.ELZeitraumType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchResponseType.java deleted file mode 100644 index 32394df8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,102 +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; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DateianhangType.java deleted file mode 100644 index 0c1e611b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DateianhangType.java +++ /dev/null @@ -1,191 +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. - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java deleted file mode 100644 index 5423026c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DirectionCdType.java deleted file mode 100644 index 5a3df654..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DirectionCdType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentBinaryDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentBinaryDataType.java deleted file mode 100644 index 2e78f4a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentBinaryDataType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für DokumentBinaryData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentDataType.java deleted file mode 100644 index c8c93157..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentDataType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für DokumentData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DokumentData_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentData_Type") -@XmlSeeAlso({ - DokumentBinaryDataType.class -}) -public abstract class DokumentDataType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentInfoType.java deleted file mode 100644 index b821cd49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentInfoType.java +++ /dev/null @@ -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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java deleted file mode 100644 index 8f9aeb24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java deleted file mode 100644 index f766a416..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java deleted file mode 100644 index 410e16c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für EinwGesDatenVN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwGesDatenVN_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwGesDatenVN_Type") -public class EinwGesDatenVNType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java deleted file mode 100644 index 8f157190..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für EinwSprachaufz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwSprachaufz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwSprachaufz_Type") -public class EinwSprachaufzType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java deleted file mode 100644 index 5d749dd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für EinwVerarbGesDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwVerarbGesDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwVerarbGesDaten_Type") -public class EinwVerarbGesDatenType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java deleted file mode 100644 index 48b95ab5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für EinwilligungPersDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java deleted file mode 100644 index e617cfcd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Einwilligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java deleted file mode 100644 index 2d1407db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für ElementFondsauswahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the zusaetzlicheFondsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheFondsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheFondsdatenType } - * - * - */ - public List getZusaetzlicheFondsdaten() { - if (zusaetzlicheFondsdaten == null) { - zusaetzlicheFondsdaten = new ArrayList(); - } - return this.zusaetzlicheFondsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java deleted file mode 100644 index 9abc8561..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index 3a8b2756..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,187 +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.leben.TarifLebenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.LeistungsartUnfallType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - LeistungsartUnfallType.class, - TarifLebenType.class, - ElementarproduktSachPrivatType.class -}) -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktType.java deleted file mode 100644 index 814ef30d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementarproduktType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "refSicherstellungLfnr", - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktGenerischType.class, - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.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 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. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeMitAendGrundType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeMitAendGrundType.java deleted file mode 100644 index e850499b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeMitAendGrundType.java +++ /dev/null @@ -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 - * - *

Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeType.java deleted file mode 100644 index 5e1e36b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzeType.java +++ /dev/null @@ -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; - - -/** - * Beschreibung einer durch Konvertierung zu ersetzenden Polizze - * - *

Java-Klasse für Ersatzpolizze_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizze_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizze_Type", propOrder = { - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - ErsatzpolizzeMitAendGrundType.class -}) -public abstract class ErsatzpolizzeType { - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java deleted file mode 100644 index fdc7d0cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java deleted file mode 100644 index 39ce21c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,76 +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; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_NatPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_NatPersonType", propOrder = { - "usIndizien", - "usSteuerpflicht" -}) -public class FATCANatPersonType { - - @XmlElement(name = "US_Indizien") - protected boolean usIndizien; - @XmlElement(name = "US_Steuerpflicht") - protected boolean usSteuerpflicht; - - /** - * Ruft den Wert der usIndizien-Eigenschaft ab. - * - */ - public boolean isUSIndizien() { - return usIndizien; - } - - /** - * Legt den Wert der usIndizien-Eigenschaft fest. - * - */ - public void setUSIndizien(boolean value) { - this.usIndizien = value; - } - - /** - * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. - * - */ - public boolean isUSSteuerpflicht() { - return usSteuerpflicht; - } - - /** - * Legt den Wert der usSteuerpflicht-Eigenschaft fest. - * - */ - public void setUSSteuerpflicht(boolean value) { - this.usSteuerpflicht = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java deleted file mode 100644 index ce3c3a3f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,132 +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; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_SonstPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *         <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_SonstPersonType", propOrder = { - "landFirmensitz", - "giin", - "konzessionFinanzen", - "nichtFinanzielleDienstleistungen" -}) -public class FATCASonstPersonType { - - @XmlElement(name = "LandFirmensitz", required = true) - protected AttributEnumType landFirmensitz; - @XmlElement(name = "GIIN") - protected String giin; - @XmlElement(name = "KonzessionFinanzen") - protected boolean konzessionFinanzen; - @XmlElement(name = "NichtFinanzielleDienstleistungen") - protected boolean nichtFinanzielleDienstleistungen; - - /** - * Ruft den Wert der landFirmensitz-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLandFirmensitz() { - return landFirmensitz; - } - - /** - * Legt den Wert der landFirmensitz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLandFirmensitz(AttributEnumType value) { - this.landFirmensitz = value; - } - - /** - * Ruft den Wert der giin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGIIN() { - return giin; - } - - /** - * Legt den Wert der giin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGIIN(String value) { - this.giin = value; - } - - /** - * Ruft den Wert der konzessionFinanzen-Eigenschaft ab. - * - */ - public boolean isKonzessionFinanzen() { - return konzessionFinanzen; - } - - /** - * Legt den Wert der konzessionFinanzen-Eigenschaft fest. - * - */ - public void setKonzessionFinanzen(boolean value) { - this.konzessionFinanzen = value; - } - - /** - * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab. - * - */ - public boolean isNichtFinanzielleDienstleistungen() { - return nichtFinanzielleDienstleistungen; - } - - /** - * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest. - * - */ - public void setNichtFinanzielleDienstleistungen(boolean value) { - this.nichtFinanzielleDienstleistungen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java deleted file mode 100644 index 3e8e0232..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java +++ /dev/null @@ -1,120 +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; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- *         <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_Type", propOrder = { - "ustin", - "fatcaNatPerson", - "fatcaSonstPerson" -}) -public class FATCAType { - - @XmlElement(name = "US_TIN") - protected String ustin; - @XmlElement(name = "FATCA_NatPerson") - protected FATCANatPersonType fatcaNatPerson; - @XmlElement(name = "FATCA_SonstPerson") - protected FATCASonstPersonType fatcaSonstPerson; - - /** - * Ruft den Wert der ustin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSTIN() { - return ustin; - } - - /** - * Legt den Wert der ustin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSTIN(String value) { - this.ustin = value; - } - - /** - * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCANatPersonType } - * - */ - public FATCANatPersonType getFATCANatPerson() { - return fatcaNatPerson; - } - - /** - * Legt den Wert der fatcaNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCANatPersonType } - * - */ - public void setFATCANatPerson(FATCANatPersonType value) { - this.fatcaNatPerson = value; - } - - /** - * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType getFATCASonstPerson() { - return fatcaSonstPerson; - } - - /** - * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCASonstPersonType } - * - */ - public void setFATCASonstPerson(FATCASonstPersonType value) { - this.fatcaSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java deleted file mode 100644 index 6ee7644b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java +++ /dev/null @@ -1,863 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.math.BigDecimal; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String aufbauNatC; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - - /** - * Ruft den Wert der aufbauNatC-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufbauNatC() { - return aufbauNatC; - } - - /** - * Legt den Wert der aufbauNatC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufbauNatC(String value) { - this.aufbauNatC = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java deleted file mode 100644 index 3caaee9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java +++ /dev/null @@ -1,165 +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; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GMSG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
-     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "land", - "steuernummer" - }) - public static class SteuerlichAnsaessig { - - @XmlElement(name = "Land", required = true) - protected AttributEnumType land; - @XmlElement(name = "Steuernummer") - protected AttributStringType steuernummer; - - /** - * Ruft den Wert der land-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLand() { - return land; - } - - /** - * Legt den Wert der land-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLand(AttributEnumType value) { - this.land = value; - } - - /** - * Ruft den Wert der steuernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getSteuernummer() { - return steuernummer; - } - - /** - * Legt den Wert der steuernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setSteuernummer(AttributStringType value) { - this.steuernummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index a42904d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,61 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index 8ec6b9f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -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.XmlType; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GlaeubigerSicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { - "institut", - "plz", - "strasse", - "vertragsnummer" -}) -public class GlaeubigerSicherstellungType { - - @XmlElement(name = "Institut", required = true) - protected String institut; - @XmlElement(name = "PLZ", required = true) - protected String plz; - @XmlElement(name = "Strasse", required = true) - protected String strasse; - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - - /** - * Ruft den Wert der institut-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInstitut() { - return institut; - } - - /** - * Legt den Wert der institut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInstitut(String value) { - this.institut = 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 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 vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KontierungType.java deleted file mode 100644 index d499e7b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KontierungType.java +++ /dev/null @@ -1,177 +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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "vermittlername", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Vermittlername") - protected String vermittlername; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der vermittlername-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlername() { - return vermittlername; - } - - /** - * Legt den Wert der vermittlername-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlername(String value) { - this.vermittlername = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java deleted file mode 100644 index 67635373..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java deleted file mode 100644 index 88907a28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +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.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjectFactory.java deleted file mode 100644 index 60d310d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjectFactory.java +++ /dev/null @@ -1,857 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GMSGType } - * - */ - public GMSGType createGMSGType() { - return new GMSGType(); - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ProzessDokumentType } - * - */ - public ProzessDokumentType createProzessDokumentType() { - return new ProzessDokumentType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link DokumentBinaryDataType } - * - */ - public DokumentBinaryDataType createDokumentBinaryDataType() { - return new DokumentBinaryDataType(); - } - - /** - * Create an instance of {@link AutorisierungType } - * - */ - public AutorisierungType createAutorisierungType() { - return new AutorisierungType(); - } - - /** - * Create an instance of {@link AutorisierungsAnforderungType } - * - */ - public AutorisierungsAnforderungType createAutorisierungsAnforderungType() { - return new AutorisierungsAnforderungType(); - } - - /** - * Create an instance of {@link AutorisierungsartType } - * - */ - public AutorisierungsartType createAutorisierungsartType() { - return new AutorisierungsartType(); - } - - /** - * Create an instance of {@link ProzessDokRequirementType } - * - */ - public ProzessDokRequirementType createProzessDokRequirementType() { - return new ProzessDokRequirementType(); - } - - /** - * Create an instance of {@link ProzessDokToReturnType } - * - */ - public ProzessDokToReturnType createProzessDokToReturnType() { - return new ProzessDokToReturnType(); - } - - /** - * Create an instance of {@link ProzessDokHandoutType } - * - */ - public ProzessDokHandoutType createProzessDokHandoutType() { - return new ProzessDokHandoutType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link ZusatzproduktGenerischType } - * - */ - public ZusatzproduktGenerischType createZusatzproduktGenerischType() { - return new ZusatzproduktGenerischType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType } - * - */ - public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() { - return new BezugsberechtigungGesetzlicheErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType } - * - */ - public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() { - return new BezugsberechtigungTestamentarischeErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungUeberbringerType } - * - */ - public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() { - return new BezugsberechtigungUeberbringerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungNamentlich } - * - */ - public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() { - return new BezugsberechtigungNamentlich(); - } - - /** - * Create an instance of {@link PersonNamentlichesBezugsrechtType } - * - */ - public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() { - return new PersonNamentlichesBezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType } - * - */ - public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() { - return new BezugsberechtigungVersicherungsnehmerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersichertePersonType } - * - */ - public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() { - return new BezugsberechtigungVersichertePersonType(); - } - - /** - * Create an instance of {@link BezugsberechtigungIndividuell } - * - */ - public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() { - return new BezugsberechtigungIndividuell(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link ErsatzpolizzeMitAendGrundType } - * - */ - public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() { - return new ErsatzpolizzeMitAendGrundType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link AbtretungType } - * - */ - public AbtretungType createAbtretungType() { - return new AbtretungType(); - } - - /** - * Create an instance of {@link VerpfaendungType } - * - */ - public VerpfaendungType createVerpfaendungType() { - return new VerpfaendungType(); - } - - /** - * Create an instance of {@link PfandglaeubigerType } - * - */ - public PfandglaeubigerType createPfandglaeubigerType() { - return new PfandglaeubigerType(); - } - - /** - * Create an instance of {@link VinkulierungPersonenType } - * - */ - public VinkulierungPersonenType createVinkulierungPersonenType() { - return new VinkulierungPersonenType(); - } - - /** - * Create an instance of {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() { - return new GlaeubigerSicherstellungType(); - } - - /** - * Create an instance of {@link EinwVerarbGesDatenType } - * - */ - public EinwVerarbGesDatenType createEinwVerarbGesDatenType() { - return new EinwVerarbGesDatenType(); - } - - /** - * Create an instance of {@link EinwGesDatenVNType } - * - */ - public EinwGesDatenVNType createEinwGesDatenVNType() { - return new EinwGesDatenVNType(); - } - - /** - * Create an instance of {@link EinwSprachaufzType } - * - */ - public EinwSprachaufzType createEinwSprachaufzType() { - return new EinwSprachaufzType(); - } - - /** - * Create an instance of {@link FATCAType } - * - */ - public FATCAType createFATCAType() { - return new FATCAType(); - } - - /** - * Create an instance of {@link FATCANatPersonType } - * - */ - public FATCANatPersonType createFATCANatPersonType() { - return new FATCANatPersonType(); - } - - /** - * Create an instance of {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType createFATCASonstPersonType() { - return new FATCASonstPersonType(); - } - - /** - * Create an instance of {@link PEPType } - * - */ - public PEPType createPEPType() { - return new PEPType(); - } - - /** - * Create an instance of {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType createTreuhaenderfrageType() { - return new TreuhaenderfrageType(); - } - - /** - * Create an instance of {@link ElementFondsauswahlType } - * - */ - public ElementFondsauswahlType createElementFondsauswahlType() { - return new ElementFondsauswahlType(); - } - - /** - * Create an instance of {@link GMSGType.SteuerlichAnsaessig } - * - */ - public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() { - return new GMSGType.SteuerlichAnsaessig(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link ProzessDokumentType.Autorisierungen } - * - */ - public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() { - return new ProzessDokumentType.Autorisierungen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * 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:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java deleted file mode 100644 index e8955f00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 21abc6e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,39 +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; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class, - SchadenmelderVermittlerType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java deleted file mode 100644 index 23c42120..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java deleted file mode 100644 index c01d7c16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java deleted file mode 100644 index c2eb2cbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java +++ /dev/null @@ -1,84 +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; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PEP_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PEP_Type", propOrder = { - "pep", - "beschreibung" -}) -public class PEPType { - - @XmlElement(name = "PEP") - protected boolean pep; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - */ - public boolean isPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - */ - public void setPEP(boolean value) { - this.pep = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PartnerRoleType.java deleted file mode 100644 index 3e492128..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PartnerRoleType.java +++ /dev/null @@ -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; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java deleted file mode 100644 index bf4a40ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java deleted file mode 100644 index d9520536..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java +++ /dev/null @@ -1,84 +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; - - -/** - *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersonNamentlichesBezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = { - "prozentsatz", - "zugunsten" -}) -public class PersonNamentlichesBezugsrechtType { - - @XmlElement(name = "Prozentsatz") - protected Double prozentsatz; - @XmlElement(name = "Zugunsten") - @XmlSchemaType(name = "unsignedShort") - protected int zugunsten; - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setProzentsatz(Double value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der zugunsten-Eigenschaft ab. - * - */ - public int getZugunsten() { - return zugunsten; - } - - /** - * Legt den Wert der zugunsten-Eigenschaft fest. - * - */ - public void setZugunsten(int value) { - this.zugunsten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java deleted file mode 100644 index 018aada0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java +++ /dev/null @@ -1,421 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_14.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_14.ELTextType; -import at.vvo.omds.types.omds2Types.v2_14.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_14.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -public class PersonType { - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java deleted file mode 100644 index fe3ce1ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,84 +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; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Pfandglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pfandglaeubiger_Type", propOrder = { - "anteil", - "glaeubiger" -}) -public class PfandglaeubigerType { - - @XmlElement(name = "Anteil") - protected double anteil; - @XmlElement(name = "Glaeubiger", required = true) - protected GlaeubigerSicherstellungType glaeubiger; - - /** - * Ruft den Wert der anteil-Eigenschaft ab. - * - */ - public double getAnteil() { - return anteil; - } - - /** - * Legt den Wert der anteil-Eigenschaft fest. - * - */ - public void setAnteil(double value) { - this.anteil = value; - } - - /** - * Ruft den Wert der glaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType getGlaeubiger() { - return glaeubiger; - } - - /** - * Legt den Wert der glaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - public void setGlaeubiger(GlaeubigerSicherstellungType value) { - this.glaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 8a60d698..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,130 +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; -import at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenversandType.java deleted file mode 100644 index 171ba087..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenversandType.java +++ /dev/null @@ -1,75 +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; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PraemieType.java deleted file mode 100644 index 4bded828..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PraemieType.java +++ /dev/null @@ -1,271 +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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag" -}) -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - protected Double abschlag; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAbschlag(Double value) { - this.abschlag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktGenerischType.java deleted file mode 100644 index ece13a9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktGenerischType.java +++ /dev/null @@ -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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktSachPrivatType.class, - ProduktMitVpType.class -}) -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktMitVpType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktMitVpType.java deleted file mode 100644 index 67cef3d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktMitVpType.java +++ /dev/null @@ -1,102 +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 at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.ProduktLebenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.ProduktUnfallType; - - -/** - * Basistyp für eine Produktelement vom Typ "Versicherte Person" - * - *

Java-Klasse für ProduktMitVp_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktMitVp_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktMitVp_Type", propOrder = { - "bezugsberechtigungen", - "versPersonenRefLfnr" -}) -@XmlSeeAlso({ - ProduktUnfallType.class, - ProduktLebenType.class -}) -public abstract class ProduktMitVpType - extends ProduktGenerischType -{ - - @XmlElement(name = "Bezugsberechtigungen") - protected List bezugsberechtigungen; - @XmlElement(name = "VersPersonenRefLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int versPersonenRefLfnr; - - /** - * Gets the value of the bezugsberechtigungen property. - * - *

- * 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 set method for the bezugsberechtigungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBezugsberechtigungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BezugsberechtigungType } - * - * - */ - public List getBezugsberechtigungen() { - if (bezugsberechtigungen == null) { - bezugsberechtigungen = new ArrayList(); - } - return this.bezugsberechtigungen; - } - - /** - * Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab. - * - */ - public int getVersPersonenRefLfnr() { - return versPersonenRefLfnr; - } - - /** - * Legt den Wert der versPersonenRefLfnr-Eigenschaft fest. - * - */ - public void setVersPersonenRefLfnr(int value) { - this.versPersonenRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktType.java deleted file mode 100644 index 9b618fe9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktType.java +++ /dev/null @@ -1,254 +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.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "refSicherstellungLfnr", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktGenerischType.class, - ProduktKfzType.class, - ZusatzproduktKfzType.class -}) -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit", required = true) - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * 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 produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = 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 zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index e545618e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,149 +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; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java deleted file mode 100644 index e56b7cd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,141 +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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - ZusatzproduktType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokHandoutType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokHandoutType.java deleted file mode 100644 index ac5664d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokHandoutType.java +++ /dev/null @@ -1,93 +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; - - -/** - * Bereitstellung Dokument für Kunde, nicht zu unterschreiben - * - *

Java-Klasse für ProzessDokHandout_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokHandout_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="ArtAusfolgung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokHandout_Type", propOrder = { - "dokData", - "artAusfolgung" -}) -public class ProzessDokHandoutType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokData", required = true) - protected DokumentDataType dokData; - @XmlElement(name = "ArtAusfolgung") - protected short artAusfolgung; - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - */ - public short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - */ - public void setArtAusfolgung(short value) { - this.artAusfolgung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokRequirementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokRequirementType.java deleted file mode 100644 index e8da9e8f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokRequirementType.java +++ /dev/null @@ -1,187 +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; - - -/** - * Anforderung eines beizubringenden Dokuments - * - *

Java-Klasse für ProzessDokRequirement_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokRequirement_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" 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>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokRequirement_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "meldungen" -}) -public class ProzessDokRequirementType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - protected List zulaessigeMimetypes; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokToReturnType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokToReturnType.java deleted file mode 100644 index ee74ed00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokToReturnType.java +++ /dev/null @@ -1,215 +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; - - -/** - * Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen - * - *

Java-Klasse für ProzessDokToReturn_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokToReturn_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokToReturn_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "dokData", - "meldungen" -}) -public class ProzessDokToReturnType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen", required = true) - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - protected List zulaessigeMimetypes; - @XmlElement(name = "DokData", required = true) - protected DokumentDataType dokData; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentBasisType.java deleted file mode 100644 index 872d2769..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentBasisType.java +++ /dev/null @@ -1,104 +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; - - -/** - * Basistyp für Bereitstellung und Anforderung von Dokumenten - * - *

Java-Klasse für ProzessDokumentBasis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokumentBasis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokumentBasis_Type", propOrder = { - "dokumenttyp", - "beschreibung" -}) -@XmlSeeAlso({ - ProzessDokRequirementType.class, - ProzessDokToReturnType.class, - ProzessDokHandoutType.class -}) -public abstract class ProzessDokumentBasisType { - - @XmlElement(name = "Dokumenttyp", required = true) - protected String dokumenttyp; - @XmlElement(name = "Beschreibung", required = true) - protected String beschreibung; - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentType.java deleted file mode 100644 index 587e85c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProzessDokumentType.java +++ /dev/null @@ -1,242 +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 für den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. - * - *

Java-Klasse für ProzessDokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Autorisierungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokument_Type", propOrder = { - "dokAnforderungsId", - "dokumenttyp", - "beschreibung", - "autorisierungen", - "dokumentHinterlegt", - "dokData" -}) -public class ProzessDokumentType { - - @XmlElement(name = "DokAnforderungsId") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Dokumenttyp", required = true) - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Autorisierungen") - protected List autorisierungen; - @XmlElement(name = "DokumentHinterlegt") - protected boolean dokumentHinterlegt; - @XmlElement(name = "DokData") - protected DokumentDataType dokData; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * 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; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType.Autorisierungen } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der dokumentHinterlegt-Eigenschaft ab. - * - */ - public boolean isDokumentHinterlegt() { - return dokumentHinterlegt; - } - - /** - * Legt den Wert der dokumentHinterlegt-Eigenschaft fest. - * - */ - public void setDokumentHinterlegt(boolean value) { - this.dokumentHinterlegt = value; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Autorisierungen - extends AutorisierungType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java deleted file mode 100644 index 31e1676b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java +++ /dev/null @@ -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; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java deleted file mode 100644 index b725f8c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java +++ /dev/null @@ -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; - - -/** - * Ein Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -public class Referenz { - - @XmlElement(name = "Link", required = true) - protected Object link; - @XmlElement(name = "Bezeichnung") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java deleted file mode 100644 index c379d275..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java +++ /dev/null @@ -1,162 +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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - @XmlElement(name = "Referenzen") - protected List referenzen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java deleted file mode 100644 index 4f494148..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,501 +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; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 7f1dfd92..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -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; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java deleted file mode 100644 index 6033fe08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java deleted file mode 100644 index 5ace0f57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java deleted file mode 100644 index 4a12fbca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.math.BigDecimal; -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 fuer Sicherstellungen - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -public abstract class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "Betrag") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * 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; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/StatusType.java deleted file mode 100644 index 85a0e450..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/StatusType.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 3a6e9739..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java deleted file mode 100644 index 5466766a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java deleted file mode 100644 index c88c8bc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,84 +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; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender", - "beschreibung" -}) -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - protected boolean treuhaender; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - public void setTreuhaender(boolean value) { - this.treuhaender = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java deleted file mode 100644 index 92fc2290..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java +++ /dev/null @@ -1,143 +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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index 07dc7600..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,158 +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.on2antrag.leben.VerkaufsproduktLebenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.VerkaufsproduktUnfallType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktUnfallType.class, - VerkaufsproduktLebenType.class, - VerkaufsproduktSachPrivatType.class -}) -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktType.java deleted file mode 100644 index f8b245d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,253 +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.omds2Types.v2_14.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "refSicherstellungLfnr", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktGenerischType.class, - VerkaufsproduktKfzType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * 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 verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = 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 zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java deleted file mode 100644 index 447f725a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java +++ /dev/null @@ -1,73 +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; - - -/** - * Sicherstellung vom Typ Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index 72c3b03d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,138 +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 at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int ueberdachteFlaecheInQm; - - /** - * 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 adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java deleted file mode 100644 index deab63dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java +++ /dev/null @@ -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.XmlType; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index c5750c20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,84 +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.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class, - VersichertePersonType.class, - VersicherteLiegenschaftType.class -}) -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseType.java deleted file mode 100644 index f32ffd06..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,98 +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.XmlAttribute; -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 Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "zusaetzlicheRisikodaten" -}) -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherungssteuerType.java deleted file mode 100644 index 014104de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java deleted file mode 100644 index bc52100b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +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 at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java deleted file mode 100644 index cd221134..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java deleted file mode 100644 index 6dc77be7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -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 Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java deleted file mode 100644 index 829f1e3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java +++ /dev/null @@ -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 Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java deleted file mode 100644 index 1a1d08db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java +++ /dev/null @@ -1,129 +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; - - -/** - * Angaben zu einer Vorversicherung - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java deleted file mode 100644 index b1948b73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,191 +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; - - -/** - * Details zu einer Vorversicherung - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - VorversicherungType.class, - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java deleted file mode 100644 index 2a45a95e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,73 +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; - - -/** - * Standardimplementierung Vorversicherungen - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java deleted file mode 100644 index 051255e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java +++ /dev/null @@ -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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenImplType.class, - VorversicherungenKfzType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlungsdatenType.java deleted file mode 100644 index c931b06a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlungsdatenType.java +++ /dev/null @@ -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.XmlType; - - -/** - * Beschreibt die Zahlungsdaten in Antragsservices - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java deleted file mode 100644 index 4fabe0b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +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.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java deleted file mode 100644 index 1cb7e66c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java +++ /dev/null @@ -1,88 +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.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java deleted file mode 100644 index 6ef27eb0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index a8e0ec0b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java deleted file mode 100644 index e4e1363f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java +++ /dev/null @@ -1,30 +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; - - -/** - *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheFondsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheFondsdaten_Type") -public abstract class ZusaetzlicheFondsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 5135dec9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index 440dbb8a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Risikodaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 22696adc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index 0fdb9abd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index 222f5479..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -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; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktGenerischType.java deleted file mode 100644 index e47a9d19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktGenerischType.java +++ /dev/null @@ -1,183 +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.leben.ZusatzversicherungLebenType; - - -/** - * Basistyp für ein Zusatzprodukt, 2. Generation - * - *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ZusatzversicherungLebenType.class -}) -public class ZusatzproduktGenerischType - extends ZusatzproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java deleted file mode 100644 index 88507cd0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java +++ /dev/null @@ -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; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Basistyp für ein Zusatzprodukt - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * 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; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java deleted file mode 100644 index 928708c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index 13f31ea1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 4fdeb234..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 647e74d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 120fb59d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 510e40a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index 2b50d004..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index b29d43a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index f28593e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 63a9dd81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/ObjectFactory.java deleted file mode 100644 index 12fd0daf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,219 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java deleted file mode 100644 index 3a233901..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessRequestType.java deleted file mode 100644 index 34d971ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Request-Types - * - *

Java-Klasse für BOAProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessRequest_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - CalculateRequestType.class, - CreateOfferRequestType.class, - CreateApplicationRequestType.class, - SubmitApplicationRequestType.class -}) -public class BOAProcessRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessResponseType.java deleted file mode 100644 index d034feb3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/BOAProcessResponseType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Response-Types - * - *

Java-Klasse für BOAProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessResponse_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - CalculateResponseType.class, - CreateOfferResponseType.class, - CreateApplicationResponseType.class, - SubmitApplicationResponseType.class -}) -public class BOAProcessResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index c8896ffd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateUnfallRequestType.class, - CalculateLebenRequestType.class, - CalculateSachPrivatRequestType.class -}) -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 83f76780..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateRequestGenType.class, - CalculateKfzRequestType.class -}) -public abstract class CalculateRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index 190c2b11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateUnfallResponseType.class, - CalculateLebenResponseType.class, - CalculateSachPrivatResponseType.class -}) -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 128609c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateResponseGenType.class, - CalculateKfzResponseType.class -}) -public abstract class CalculateResponseType - extends BOAProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index bb9b56ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationUnfallRequestType.class, - CreateApplicationLebenRequestType.class, - CreateApplicationSachPrivatRequestType.class -}) -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index 97b44c67..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationRequestGenType.class, - CreateApplicationKfzRequestType.class -}) -public abstract class CreateApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index da2098f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationUnfallResponseType.class, - CreateApplicationLebenResponseType.class, - CreateApplicationSachPrivatResponseType.class -}) -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index ca5d7294..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateApplicationResponseGenType.class, - CreateApplicationKfzResponseType.class -}) -public abstract class CreateApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index 295a9448..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferUnfallRequestType.class, - CreateOfferLebenRequestType.class, - CreateOfferSachPrivatRequestType.class -}) -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index 5018f700..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferRequestGenType.class, - CreateOfferKfzRequestType.class -}) -public abstract class CreateOfferRequestType - extends BOAProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index 97f6ce70..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferUnfallResponseType.class, - CreateOfferLebenResponseType.class, - CreateOfferSachPrivatResponseType.class -}) -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index b2794a57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateOfferResponseGenType.class, - CreateOfferKfzResponseType.class -}) -public abstract class CreateOfferResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 6f24c57c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 2d07773f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index 7192e1b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link BOAProcessRequestType } - * - */ - public BOAProcessRequestType createBOAProcessRequestType() { - return new BOAProcessRequestType(); - } - - /** - * Create an instance of {@link BOAProcessResponseType } - * - */ - public BOAProcessResponseType createBOAProcessResponseType() { - return new BOAProcessResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragPersonenType.java deleted file mode 100644 index 519a116f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragPersonenType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.FATCAType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.GMSGType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PEPType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.TreuhaenderfrageType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SpezAntragLebenType; - - -/** - * Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntragPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
- *         <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
- *         <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type"/>
- *         <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragPersonen_Type", propOrder = { - "fatca", - "gsgm", - "pep", - "treuhaenderfrage" -}) -@XmlSeeAlso({ - SpezAntragLebenType.class -}) -public abstract class SpezAntragPersonenType - extends SpezAntragType -{ - - @XmlElement(name = "FATCA") - protected FATCAType fatca; - @XmlElement(name = "GSGM") - protected GMSGType gsgm; - @XmlElement(name = "PEP", required = true) - protected PEPType pep; - @XmlElement(name = "Treuhaenderfrage", required = true) - protected TreuhaenderfrageType treuhaenderfrage; - - /** - * Ruft den Wert der fatca-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCAType } - * - */ - public FATCAType getFATCA() { - return fatca; - } - - /** - * Legt den Wert der fatca-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCAType } - * - */ - public void setFATCA(FATCAType value) { - this.fatca = value; - } - - /** - * Ruft den Wert der gsgm-Eigenschaft ab. - * - * @return - * possible object is - * {@link GMSGType } - * - */ - public GMSGType getGSGM() { - return gsgm; - } - - /** - * Legt den Wert der gsgm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GMSGType } - * - */ - public void setGSGM(GMSGType value) { - this.gsgm = value; - } - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - * @return - * possible object is - * {@link PEPType } - * - */ - public PEPType getPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PEPType } - * - */ - public void setPEP(PEPType value) { - this.pep = value; - } - - /** - * Ruft den Wert der treuhaenderfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType getTreuhaenderfrage() { - return treuhaenderfrage; - } - - /** - * Legt den Wert der treuhaenderfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TreuhaenderfrageType } - * - */ - public void setTreuhaenderfrage(TreuhaenderfrageType value) { - this.treuhaenderfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 40cdfb0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,603 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.EinwilligungType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.SicherstellungType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.AntragSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SpezAntragUnfallType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten", - "sicherstellungen", - "einwilligungen" -}) -@XmlSeeAlso({ - SpezAntragUnfallType.class, - SpezAntragPersonenType.class, - AntragSachPrivatType.class, - SpezAntragKfzType.class -}) -public abstract class SpezAntragType { - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - @XmlElement(name = "Sicherstellungen") - protected List sicherstellungen; - @XmlElement(name = "Einwilligungen") - protected List einwilligungen; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - - /** - * Gets the value of the sicherstellungen property. - * - *

- * 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 set method for the sicherstellungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSicherstellungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SicherstellungType } - * - * - */ - public List getSicherstellungen() { - if (sicherstellungen == null) { - sicherstellungen = new ArrayList(); - } - return this.sicherstellungen; - } - - /** - * Gets the value of the einwilligungen property. - * - *

- * 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 set method for the einwilligungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEinwilligungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EinwilligungType } - * - * - */ - public List getEinwilligungen() { - if (einwilligungen == null) { - einwilligungen = new ArrayList(); - } - return this.einwilligungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index ef200dd4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,83 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SpezBerechnungLebenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.BerechnungSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SpezBerechnungUnfallType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - SpezBerechnungUnfallType.class, - SpezBerechnungLebenType.class, - BerechnungSachPrivatType.class, - SpezBerechnungKfzType.class -}) -public abstract class SpezBerechnungType { - - @XmlElement(name = "Personen") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index 282e60b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SpezOffertLebenType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.OffertSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SpezOffertUnfallType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertUnfallType.class, - SpezOffertLebenType.class, - OffertSachPrivatType.class, - SpezOffertKfzType.class -}) -public abstract class SpezOffertType { - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index 345e4ecd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationUnfallRequestType.class, - SubmitApplicationLebenRequestType.class, - SubmitApplicationSachPrivatRequestType.class -}) -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index d7a7f12a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationRequestGenType.class, - SubmitApplicationKfzRequestType.class -}) -public abstract class SubmitApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index 9cc429f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.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; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationUnfallResponseType.class, - SubmitApplicationLebenResponseType.class, - SubmitApplicationSachPrivatResponseType.class -}) -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index 79f643eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - SubmitApplicationResponseGenType.class, - SubmitApplicationKfzResponseType.class -}) -public abstract class SubmitApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 35a71f93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java deleted file mode 100644 index d95cefc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 272605a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index 284e85dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 901b6d52..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index a0e92564..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index dc28cc07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index adfb75ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 66d50c64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 13e9e773..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 2b9c7f79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 1c81f588..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 626f6ade..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import java.math.BigDecimal; -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 at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index e7c05176..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index a5b84f74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index c6a57601..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,264 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import java.math.BigDecimal; -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.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 07d19064..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index e884702c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,385 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 2e57f3bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 6ac6b68c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 66329aee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index e5dbba2c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index f484d712..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index e51307e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 60520f3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 95c7f447..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index ad24e4e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index b162aa87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 67206959..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index bcaeb39a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 9ada0c34..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index c3270405..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index d8317480..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index 32818ccc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VorversicherungenType; - - -/** - * Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index ea051c28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index bd574f47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 3db3a2a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 0d0fb22c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 54d956d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenRequestType.java deleted file mode 100644 index 4439734f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Leben - * - *

Java-Klasse für CalculateLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateLebenRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungLebenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungLebenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenResponseType.java deleted file mode 100644 index e061b01e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CalculateLebenResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Leben-Berechnung - * - *

Java-Klasse für CalculateLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -public class CalculateLebenResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungLebenType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - public void setBerechnungsantwort(SpezBerechnungLebenType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungLebenType } - * - * - */ - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenRequestType.java deleted file mode 100644 index 0f2590ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationLebenRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenResponseType.java deleted file mode 100644 index a8f69598..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateApplicationLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationLebenResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenRequestType.java deleted file mode 100644 index a894b73a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferLebenRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertLebenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - public void setOffertanfrage(SpezOffertLebenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenResponseType.java deleted file mode 100644 index b09a8f3f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/CreateOfferLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferLebenResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertLebenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - public void setOffertantwort(SpezOffertLebenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ObjectFactory.java deleted file mode 100644 index ec8873ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ObjectFactory.java +++ /dev/null @@ -1,358 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest"); - private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse"); - private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest"); - private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse"); - private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest"); - private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse"); - private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest"); - private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse"); - private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateLebenRequestType } - * - */ - public CalculateLebenRequestType createCalculateLebenRequestType() { - return new CalculateLebenRequestType(); - } - - /** - * Create an instance of {@link CalculateLebenResponseType } - * - */ - public CalculateLebenResponseType createCalculateLebenResponseType() { - return new CalculateLebenResponseType(); - } - - /** - * Create an instance of {@link CreateOfferLebenRequestType } - * - */ - public CreateOfferLebenRequestType createCreateOfferLebenRequestType() { - return new CreateOfferLebenRequestType(); - } - - /** - * Create an instance of {@link CreateOfferLebenResponseType } - * - */ - public CreateOfferLebenResponseType createCreateOfferLebenResponseType() { - return new CreateOfferLebenResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenRequestType } - * - */ - public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() { - return new CreateApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenResponseType } - * - */ - public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() { - return new CreateApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenRequestType } - * - */ - public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() { - return new SubmitApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenResponseType } - * - */ - public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() { - return new SubmitApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType createVerkaufsproduktLebenType() { - return new VerkaufsproduktLebenType(); - } - - /** - * Create an instance of {@link ProduktLebenType } - * - */ - public ProduktLebenType createProduktLebenType() { - return new ProduktLebenType(); - } - - /** - * Create an instance of {@link TarifLebenType } - * - */ - public TarifLebenType createTarifLebenType() { - return new TarifLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungLebenType } - * - */ - public ZusatzversicherungLebenType createZusatzversicherungLebenType() { - return new ZusatzversicherungLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType } - * - */ - public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() { - return new ZusatzversicherungBerufsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType } - * - */ - public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() { - return new ZusatzversicherungErwerbsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType } - * - */ - public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() { - return new ZusatzversicherungPraemienuebernahmeAblebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfalltodType } - * - */ - public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() { - return new ZusatzversicherungUnfalltodType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType } - * - */ - public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() { - return new ZusatzversicherungUnfallinvaliditaetType(); - } - - /** - * Create an instance of {@link ZusatzproduktLebenType } - * - */ - public ZusatzproduktLebenType createZusatzproduktLebenType() { - return new ZusatzproduktLebenType(); - } - - /** - * Create an instance of {@link RentenoptionType } - * - */ - public RentenoptionType createRentenoptionType() { - return new RentenoptionType(); - } - - /** - * Create an instance of {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() { - return new VersicherungssummeZusatzbausteinType(); - } - - /** - * Create an instance of {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType createSpezBerechnungLebenType() { - return new SpezBerechnungLebenType(); - } - - /** - * Create an instance of {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType createSpezOffertLebenType() { - return new SpezOffertLebenType(); - } - - /** - * Create an instance of {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType createSpezAntragLebenType() { - return new SpezAntragLebenType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest") - public JAXBElement createCalculateLebenRequest(CalculateLebenRequestType value) { - return new JAXBElement(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse") - public JAXBElement createCalculateLebenResponse(CalculateLebenResponseType value) { - return new JAXBElement(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest") - public JAXBElement createCreateOfferLebenRequest(CreateOfferLebenRequestType value) { - return new JAXBElement(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse") - public JAXBElement createCreateOfferLebenResponse(CreateOfferLebenResponseType value) { - return new JAXBElement(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest") - public JAXBElement createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) { - return new JAXBElement(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse") - public JAXBElement createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) { - return new JAXBElement(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest") - public JAXBElement createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) { - return new JAXBElement(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse") - public JAXBElement createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) { - return new JAXBElement(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class) - public JAXBElement createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class) - public JAXBElement createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ProduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ProduktLebenType.java deleted file mode 100644 index bd662f28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ProduktLebenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktMitVpType; - - -/** - * Typ für ein Produkt in der Sparte Leben. - * - *

Java-Klasse für ProduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktLeben_Type", propOrder = { - "tarife" -}) -public class ProduktLebenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Tarife") - protected List tarife; - - /** - * Gets the value of the tarife property. - * - *

- * 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 set method for the tarife property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarife().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TarifLebenType } - * - * - */ - public List getTarife() { - if (tarife == null) { - tarife = new ArrayList(); - } - return this.tarife; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/RentenoptionType.java deleted file mode 100644 index 416244fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/RentenoptionType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Rentenoption - * - *

Java-Klasse für Rentenoption_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Rentenoption_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rentenoption_Type") -public class RentenoptionType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezAntragLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezAntragLebenType.java deleted file mode 100644 index d12a7c2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezAntragLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezAntragPersonenType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragLebenType - extends SpezAntragPersonenType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezBerechnungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezBerechnungLebenType.java deleted file mode 100644 index ab922ec0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezBerechnungLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungLebenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezOffertLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezOffertLebenType.java deleted file mode 100644 index b4108845..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SpezOffertLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertLebenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenRequestType.java deleted file mode 100644 index 78c1b34a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationLebenRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenResponseType.java deleted file mode 100644 index 915e8904..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/SubmitApplicationLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationLebenResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/TarifLebenType.java deleted file mode 100644 index 7a2145e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/TarifLebenType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementFondsauswahlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Leben. - * - *

Java-Klasse für TarifLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
- *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
- *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifLeben_Type", propOrder = { - "garantierteAblebenssumme", - "rentenoption", - "fondsauswahl", - "zusatzbausteine" -}) -public class TarifLebenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "GarantierteAblebenssumme") - protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; - @XmlElement(name = "Rentenoption") - protected RentenoptionType rentenoption; - @XmlElement(name = "Fondsauswahl") - protected List fondsauswahl; - @XmlElement(name = "Zusatzbausteine") - protected List zusatzbausteine; - - /** - * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { - return garantierteAblebenssumme; - } - - /** - * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { - this.garantierteAblebenssumme = value; - } - - /** - * Ruft den Wert der rentenoption-Eigenschaft ab. - * - * @return - * possible object is - * {@link RentenoptionType } - * - */ - public RentenoptionType getRentenoption() { - return rentenoption; - } - - /** - * Legt den Wert der rentenoption-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RentenoptionType } - * - */ - public void setRentenoption(RentenoptionType value) { - this.rentenoption = value; - } - - /** - * Gets the value of the fondsauswahl property. - * - *

- * 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 set method for the fondsauswahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFondsauswahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementFondsauswahlType } - * - * - */ - public List getFondsauswahl() { - if (fondsauswahl == null) { - fondsauswahl = new ArrayList(); - } - return this.fondsauswahl; - } - - /** - * Gets the value of the zusatzbausteine property. - * - *

- * 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 set method for the zusatzbausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzbausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzversicherungLebenType } - * - * - */ - public List getZusatzbausteine() { - if (zusatzbausteine == null) { - zusatzbausteine = new ArrayList(); - } - return this.zusatzbausteine; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VerkaufsproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VerkaufsproduktLebenType.java deleted file mode 100644 index ce90222d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VerkaufsproduktLebenType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Leben - * - *

Java-Klasse für VerkaufsproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = { - "lebenProdukte", - "zusatzprodukte", - "versichertePersonen" -}) -public class VerkaufsproduktLebenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "LebenProdukte", required = true) - protected List lebenProdukte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - protected List versichertePersonen; - - /** - * Gets the value of the lebenProdukte property. - * - *

- * 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 set method for the lebenProdukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLebenProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktLebenType } - * - * - */ - public List getLebenProdukte() { - if (lebenProdukte == null) { - lebenProdukte = new ArrayList(); - } - return this.lebenProdukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java deleted file mode 100644 index b2c7f5ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AttributDezimalType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AttributDoubleType; - - -/** - * Definition einer Versicherungssumme in einem Zusatzbaustein - * - *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherungssummeZusatzbaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { - "prozentVersicherungssumme", - "betrag" -}) -public class VersicherungssummeZusatzbausteinType { - - @XmlElement(name = "ProzentVersicherungssumme") - protected AttributDoubleType prozentVersicherungssumme; - @XmlElement(name = "Betrag") - protected AttributDezimalType betrag; - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDoubleType } - * - */ - public AttributDoubleType getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDoubleType } - * - */ - public void setProzentVersicherungssumme(AttributDoubleType value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDezimalType } - * - */ - public AttributDezimalType getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDezimalType } - * - */ - public void setBetrag(AttributDezimalType value) { - this.betrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/WartefristType.java deleted file mode 100644 index df05c8e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/WartefristType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element zur Abbildung einer Wartefrist - * - *

Java-Klasse für Wartefrist_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wartefrist_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wartefrist_Type") -public abstract class WartefristType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzproduktLebenType.java deleted file mode 100644 index eb3c86ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzproduktLebenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren - * - *

Java-Klasse für ZusatzproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktLeben_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktLeben_Type") -public class ZusatzproduktLebenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java deleted file mode 100644 index fd596e71..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungBerufsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java deleted file mode 100644 index 323a5b50..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungErwerbsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungLebenType.java deleted file mode 100644 index 8fbf9b44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungLebenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZusatzproduktGenerischType; - - -/** - * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) - * - *

Java-Klasse für ZusatzversicherungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungLeben_Type") -@XmlSeeAlso({ - ZusatzversicherungBerufsunfaehigkeitType.class, - ZusatzversicherungErwerbsunfaehigkeitType.class, - ZusatzversicherungPraemienuebernahmeAblebenType.class, - ZusatzversicherungUnfalltodType.class, - ZusatzversicherungUnfallinvaliditaetType.class -}) -public class ZusatzversicherungLebenType - extends ZusatzproduktGenerischType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java deleted file mode 100644 index 332df914..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall - * - *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungPraemienuebernahmeAblebenType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java deleted file mode 100644 index 2ae1787f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet - * - *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfallinvaliditaetType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1374 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java deleted file mode 100644 index f80df368..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod - * - *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfalltod_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfalltodType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1374 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/package-info.java deleted file mode 100644 index 117fb681..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/leben/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 178f95c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index e0a2b9eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 263cfac2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index 66bc3940..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 6470b0f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index e70ef271..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index a083a108..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index 5ba6bbb3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 0ab9c487..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 0a25f52b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index a9a80c53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index 8fdffd6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index 0d387c01..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index 4e8323b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index e13c2d8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,407 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index 70c7fbbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index b775dc2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index 7644b99e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index e7561003..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktGenerischType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index def1230b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 95e274f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,427 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -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 at.vvo.omds.types.omds2Types.v2_14.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - protected String bauartCd; - @XmlElement(name = "DachungCd") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude", required = true) - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index f89eeb53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index 05421daa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,53 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index 1840550a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index ceffc201..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 21b37dc9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index 205ab983..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteObjekte" -}) -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteObjekte", required = true) - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index e5f29f8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - protected RisikoHaushaltType risikoHaushalt; - - /** - * 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 risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 41fbbf15..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index 13b0f88f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index c6e9da54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index 6bccc766..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index 8810428d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 7fd1dd17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 7e995139..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallRequestType.java deleted file mode 100644 index b29f29d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Unfall - * - *

Java-Klasse für CalculateUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateUnfallRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungUnfallType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungUnfallType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallResponseType.java deleted file mode 100644 index edc914d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CalculateUnfallResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Unfall-Berechnung - * - *

Java-Klasse für CalculateUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -public class CalculateUnfallResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungUnfallType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - public void setBerechnungsantwort(SpezBerechnungUnfallType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungUnfallType } - * - * - */ - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java deleted file mode 100644 index 6cb06db4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationUnfallRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java deleted file mode 100644 index 5bf034ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationUnfallResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallRequestType.java deleted file mode 100644 index facaa6d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferUnfallRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertUnfallType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - public void setOffertanfrage(SpezOffertUnfallType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallResponseType.java deleted file mode 100644 index 0b01733c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/CreateOfferUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferUnfallResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertUnfallType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - public void setOffertantwort(SpezOffertUnfallType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/LeistungsartUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/LeistungsartUnfallType.java deleted file mode 100644 index d9c5bb5f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/LeistungsartUnfallType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für LeistungsartUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LeistungsartUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LeistungsartUnfall_Type", propOrder = { - "selbstbehalt" -}) -public class LeistungsartUnfallType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ObjectFactory.java deleted file mode 100644 index a276cb09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ObjectFactory.java +++ /dev/null @@ -1,259 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest"); - private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse"); - private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest"); - private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse"); - private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest"); - private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse"); - private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest"); - private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateUnfallRequestType } - * - */ - public CalculateUnfallRequestType createCalculateUnfallRequestType() { - return new CalculateUnfallRequestType(); - } - - /** - * Create an instance of {@link CalculateUnfallResponseType } - * - */ - public CalculateUnfallResponseType createCalculateUnfallResponseType() { - return new CalculateUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallRequestType } - * - */ - public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() { - return new CreateOfferUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallResponseType } - * - */ - public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() { - return new CreateOfferUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallRequestType } - * - */ - public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() { - return new CreateApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallResponseType } - * - */ - public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() { - return new CreateApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallRequestType } - * - */ - public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() { - return new SubmitApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallResponseType } - * - */ - public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() { - return new SubmitApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() { - return new VerkaufsproduktUnfallType(); - } - - /** - * Create an instance of {@link ProduktUnfallType } - * - */ - public ProduktUnfallType createProduktUnfallType() { - return new ProduktUnfallType(); - } - - /** - * Create an instance of {@link LeistungsartUnfallType } - * - */ - public LeistungsartUnfallType createLeistungsartUnfallType() { - return new LeistungsartUnfallType(); - } - - /** - * Create an instance of {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType createSpezBerechnungUnfallType() { - return new SpezBerechnungUnfallType(); - } - - /** - * Create an instance of {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType createSpezOffertUnfallType() { - return new SpezOffertUnfallType(); - } - - /** - * Create an instance of {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType createSpezAntragUnfallType() { - return new SpezAntragUnfallType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest") - public JAXBElement createCalculateUnfallRequest(CalculateUnfallRequestType value) { - return new JAXBElement(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse") - public JAXBElement createCalculateUnfallResponse(CalculateUnfallResponseType value) { - return new JAXBElement(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest") - public JAXBElement createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) { - return new JAXBElement(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse") - public JAXBElement createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) { - return new JAXBElement(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest") - public JAXBElement createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) { - return new JAXBElement(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse") - public JAXBElement createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) { - return new JAXBElement(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest") - public JAXBElement createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) { - return new JAXBElement(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse") - public JAXBElement createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) { - return new JAXBElement(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ProduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ProduktUnfallType.java deleted file mode 100644 index 50c86d0e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/ProduktUnfallType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktUnfall_Type", propOrder = { - "leistungsarten", - "selbstbehalt" -}) -public class ProduktUnfallType - extends ProduktMitVpType -{ - - @XmlElement(name = "Leistungsarten") - protected List leistungsarten; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the leistungsarten property. - * - *

- * 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 set method for the leistungsarten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLeistungsarten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LeistungsartUnfallType } - * - * - */ - public List getLeistungsarten() { - if (leistungsarten == null) { - leistungsarten = new ArrayList(); - } - return this.leistungsarten; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezAntragUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezAntragUnfallType.java deleted file mode 100644 index 817c4187..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezAntragUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragUnfallType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezBerechnungUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezBerechnungUnfallType.java deleted file mode 100644 index c528e3a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezBerechnungUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungUnfallType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezOffertUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezOffertUnfallType.java deleted file mode 100644 index b405d00b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SpezOffertUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertUnfallType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java deleted file mode 100644 index cab8d9c8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationUnfallRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java deleted file mode 100644 index 3e189ce0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationUnfallResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/VerkaufsproduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/VerkaufsproduktUnfallType.java deleted file mode 100644 index 17ea95dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/VerkaufsproduktUnfallType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Unfall - * - *

Java-Klasse für VerkaufsproduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ProduktUnfall_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { - "unfallprodukte", - "zusatzprodukte", - "versichertePersonen" -}) -public class VerkaufsproduktUnfallType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Unfallprodukte", required = true) - protected List unfallprodukte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - protected List versichertePersonen; - - /** - * Gets the value of the unfallprodukte property. - * - *

- * 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 set method for the unfallprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUnfallprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktUnfallType } - * - * - */ - public List getUnfallprodukte() { - if (unfallprodukte == null) { - unfallprodukte = new ArrayList(); - } - return this.unfallprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/package-info.java deleted file mode 100644 index 209d577b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/unfall/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 61408167..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,395 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index e0c7ac33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index 241c6667..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @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 lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index 0eed7586..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index 733b6131..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index 3dd712ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index eda04f0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * 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; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 453332a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 404e08af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 212acab8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index f0623882..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java deleted file mode 100644 index 12098b03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ObjectFactory.java deleted file mode 100644 index 2c3b6043..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,430 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java deleted file mode 100644 index 7d00da2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 462b3fd0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index b8106cac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 1ddf46e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java deleted file mode 100644 index cbd6dfbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,415 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 6ecafae1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index b02806be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index c25ad1f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index 7e19adf6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index b7b5bc6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index 8f656baf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,311 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 025d468d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index 13c7f16b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index d5953be4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index 7881bdfa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - protected String behandlerName; - @XmlElement(name = "Behandlungen") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index cf3b4c94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index 372b992c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName" -}) -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - protected String diagnose; - @XmlElement(name = "BehandlerName") - protected String behandlerName; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index 4b19d292..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 32b80805..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index 4643d6f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index e5088edf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index dd1303fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java deleted file mode 100644 index 176a7b5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsService.java deleted file mode 100644 index 861bcda8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_7_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-01-14T17:40:09.965+01:00 - * Generated source version: 3.5.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 6784e895..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,580 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_7_0.service; - -import java.util.logging.Logger; -import javax.xml.ws.soap.MTOM; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-01-14T17:40:09.925+01:00 - * Generated source version: 3.5.0 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType") -@MTOM(enabled = true, threshold = 1024) -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateLeben"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPartnerRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationLeben"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPolicyRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkClaimRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkOfferRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateUnfall"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationUnfall"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationUnfall"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationLeben"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferUnfall"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferLeben"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.LoginRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.LoginRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_7_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosRequest parameters)* - */ - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType.java deleted file mode 100644 index ae58eaa5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,292 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_7_0.service; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-01-14T17:40:09.950+01:00 - * Generated source version: 3.5.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_14.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - - @WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateLeben") - @WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenResponseType calculateLeben( - - @WebParam(partName = "parameters", name = "CalculateLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - - @WebParam(partName = "parameters", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - - @WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - - @WebParam(partName = "parameters", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - - @WebParam(partName = "parameters", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - - @WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPartnerRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationLeben") - @WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben( - - @WebParam(partName = "parameters", name = "SubmitApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - - @WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPolicyRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimResponseType searchClaim( - - @WebParam(partName = "parameters", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataResponse getUserData( - - @WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - - @WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkClaimRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType submitClaim( - - @WebParam(partName = "parameters", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageResponse getOMDSPackage( - - @WebParam(partName = "parameters", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - - @WebParam(partName = "parameters", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - - @WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkOfferRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateUnfall") - @WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall( - - @WebParam(partName = "parameters", name = "CalculateUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationUnfall") - @WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall( - - @WebParam(partName = "parameters", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - - @WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - - @WebParam(partName = "parameters", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - - @WebParam(partName = "parameters", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationUnfall") - @WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall( - - @WebParam(partName = "parameters", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - - @WebParam(partName = "parameters", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType checkClaim( - - @WebParam(partName = "parameters", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - - @WebParam(partName = "parameters", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageResponse getArcImage( - - @WebParam(partName = "parameters", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageRequest parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType getClaim( - - @WebParam(partName = "parameters", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationLeben") - @WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben( - - @WebParam(partName = "parameters", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferUnfall") - @WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall( - - @WebParam(partName = "parameters", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferLeben") - @WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben( - - @WebParam(partName = "parameters", name = "CreateOfferLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse login( - - @WebParam(partName = "parameters", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.LoginRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - - @WebParam(partName = "parameters", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - - @WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters") - public at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - - @WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosRequest parameters - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index 30ae3477..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,501 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.soap.MTOMFeature; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-01-14T17:40:09.829+01:00 - * Generated source version: 3.5.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); - - //OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - //OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateLeben..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenRequestType _calculateLeben_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CalculateLebenResponseType _calculateLeben__return = port.calculateLeben(_calculateLeben_parameters); - System.out.println("calculateLeben.result=" + _calculateLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_parameters); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_parameters); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenRequestType _submitApplicationLeben_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.SubmitApplicationLebenResponseType _submitApplicationLeben__return = port.submitApplicationLeben(_submitApplicationLeben_parameters); - System.out.println("submitApplicationLeben.result=" + _submitApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimRequestType _searchClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_parameters); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataRequest _getUserData_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType _submitClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageRequest _getOMDSPackage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_parameters); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_parameters); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateUnfall..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallRequestType _calculateUnfall_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CalculateUnfallResponseType _calculateUnfall__return = port.calculateUnfall(_calculateUnfall_parameters); - System.out.println("calculateUnfall.result=" + _calculateUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallRequestType _submitApplicationUnfall_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_parameters); - System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_parameters); - System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType _checkClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_parameters); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_parameters); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageRequest _getArcImage_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_parameters); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType _getClaim_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_parameters); - System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferUnfall..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_parameters); - System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferLeben..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenRequestType _createOfferLeben_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.leben.CreateOfferLebenResponseType _createOfferLeben__return = port.createOfferLeben(_createOfferLeben_parameters); - System.out.println("createOfferLeben.result=" + _createOfferLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.LoginRequestType _login_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_parameters); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/ServiceFaultMsg.java deleted file mode 100644 index 964b756c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.service; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-01-14T17:40:09.918+01:00 - * Generated source version: 3.5.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault faultInfo; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, java.lang.Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault serviceFault) { - super(message); - this.faultInfo = serviceFault; - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault serviceFault, java.lang.Throwable cause) { - super(message, cause); - this.faultInfo = serviceFault; - } - - public at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault getFaultInfo() { - return this.faultInfo; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java deleted file mode 100644 index ae31e3a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 34b359a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 1e004a99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 347a803f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index d0a2cb93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 1f3ae1c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 5181133f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 493b1d19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 6591529d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 309d54cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 2bf12d97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 21bf5947..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java deleted file mode 100644 index d3af91d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index c2087b99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_14.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 24a42f4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 008aabe1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index bd8fcdde..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 2cc32231..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 0dcbbaab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,549 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_7_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 9fe6d12a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 7a4f1ab7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * 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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 99e10b94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java deleted file mode 100644 index ed30aac4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java deleted file mode 100644 index d200410c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AListenAttributType.java deleted file mode 100644 index 3e928a29..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AListenAttributType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ASingleAttributType.java deleted file mode 100644 index d6e0b2aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ASingleAttributType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Attribute mit einem Wert - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 0553dc95..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ zur Beschreibung abgelehnter Risiken - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbtretungType.java deleted file mode 100644 index 866d6335..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AbtretungType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Abtretung / Zession - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseArtCdType.java deleted file mode 100644 index 5b61a9f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseType.java deleted file mode 100644 index fa921d73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AdresseType.java +++ /dev/null @@ -1,302 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AgentFilterType.java deleted file mode 100644 index 294bb77f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AntragsartType.java deleted file mode 100644 index 29d87ef1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AntragsartType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDatumType.java deleted file mode 100644 index e38480bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDatumType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Auf xsd:date basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDezimalType.java deleted file mode 100644 index ad85aed4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDezimalType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDoubleType.java deleted file mode 100644 index 3512aa96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributDoubleType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:double basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributEnumType.java deleted file mode 100644 index d9696ab7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributEnumType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Attribut mit Metadaten für Schlüssellisten - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributIntType.java deleted file mode 100644 index a75e1ded..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributIntType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:int basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index 311a6829..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Typ mit Metadaten für xsd:date-Attribute - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index 9fb53674..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,158 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index e14a8f74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für Schlüssellisten - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 6c4b5bc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für xsd:int-Attribute - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenStringType.java deleted file mode 100644 index 9f1d108e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,188 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für xsd:string-Attribute - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenType.java deleted file mode 100644 index 0117b6ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Metadaten von Attributen - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMsgType.java deleted file mode 100644 index a665020b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMsgType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMultiEnumType.java deleted file mode 100644 index 2b72bdd3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - protected List value; - @XmlElement(name = "Default") - protected List _default; - @XmlElement(name = "MaxAnz") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributStringType.java deleted file mode 100644 index c3475a5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributStringType.java +++ /dev/null @@ -1,216 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:string basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributType.java deleted file mode 100644 index ff15fffe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AttributType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AuthorizationFilter.java deleted file mode 100644 index e1eecf8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungType.java deleted file mode 100644 index b7f6a942..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für Autorisierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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 name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentType.Autorisierungen.class -}) -public class AutorisierungType { - - @XmlElement(name = "AutorisierungsId") - protected Object autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - protected short lfnrPerson; - @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 lfnrPerson-Eigenschaft ab. - * - */ - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - public void setLfnrPerson(short value) { - this.lfnrPerson = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsAnforderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsAnforderungType.java deleted file mode 100644 index 5da2ae4f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsAnforderungType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für AutorisierungsAnforderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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 name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -public class AutorisierungsAnforderungType { - - @XmlElement(name = "AutorisierungsId") - protected Object autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - protected short lfnrPerson; - @XmlElement(name = "Rolle", required = true) - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - protected List 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 lfnrPerson-Eigenschaft ab. - * - */ - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - public void setLfnrPerson(short value) { - this.lfnrPerson = 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. - * - *

- * 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 set method for the autorisierungsart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungsart().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsartType } - * - * - */ - public List getAutorisierungsart() { - if (autorisierungsart == null) { - autorisierungsart = new ArrayList(); - } - return this.autorisierungsart; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsartType.java deleted file mode 100644 index a067b6a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/AutorisierungsartType.java +++ /dev/null @@ -1,61 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - * Der Typ für Autorisierungsarten - * - *

Java-Klasse für Autorisierungsart_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Autorisierungsart_Type">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierungsart_Type", propOrder = { - "value" -}) -public class AutorisierungsartType { - - @XmlValue - protected String value; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BankverbindungType.java deleted file mode 100644 index 9ad4626e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BankverbindungType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 5b221a2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="TarifId" type="{urn:omds3CommonServiceTypes-1-1-0}TarifId_Type" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisProduktbaustein_Type", propOrder = { - "id", - "tarifId", - "bezeichnung", - "bedingungen", - "meldungen" -}) -@XmlSeeAlso({ - ProduktbausteinType.class -}) -public abstract class BasisProduktbausteinType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "TarifId") - protected TarifIdType tarifId; - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - protected List bedingungen; - @XmlElement(name = "Meldungen") - protected List 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 tarifId-Eigenschaft ab. - * - * @return - * possible object is - * {@link TarifIdType } - * - */ - public TarifIdType getTarifId() { - return tarifId; - } - - /** - * Legt den Wert der tarifId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TarifIdType } - * - */ - public void setTarifId(TarifIdType value) { - this.tarifId = 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BerechnungsvarianteType.java deleted file mode 100644 index 169b8d05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,53 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 18484462..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungGesetzlicheErbenType.java deleted file mode 100644 index 079dec4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungGesetzlicheErbenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung gesetzliche Erben - * - *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") -public class BezugsberechtigungGesetzlicheErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungIndividuell.java deleted file mode 100644 index ee6cc964..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungIndividuell.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Individuell - * - *

Java-Klasse für BezugsberechtigungIndividuell complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungNamentlich.java deleted file mode 100644 index 37fdf89b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungNamentlich.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung namentlich - * - *

Java-Klasse für BezugsberechtigungNamentlich complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonNamentlichesBezugsrechtType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungTestamentarischeErbenType.java deleted file mode 100644 index 0c0110ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungTestamentarischeErbenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung testamentarische Erben - * - *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") -public class BezugsberechtigungTestamentarischeErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungType.java deleted file mode 100644 index d750f5f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell - * - *

Java-Klasse für Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungUeberbringerType.java deleted file mode 100644 index 582eac4d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungUeberbringerType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Überbringer - * - *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungUeberbringer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungUeberbringer_Type") -public class BezugsberechtigungUeberbringerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersichertePersonType.java deleted file mode 100644 index f1b1e0ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersichertePersonType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung VersichertePerson - * - *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersichertePerson_Type") -public class BezugsberechtigungVersichertePersonType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersicherungsnehmerType.java deleted file mode 100644 index b2129bba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsberechtigungVersicherungsnehmerType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Versicherungsnehmer - * - *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") -public class BezugsberechtigungVersicherungsnehmerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsrechtType.java deleted file mode 100644 index ffdac6e6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BezugsrechtType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusSystemType.java deleted file mode 100644 index 7d39ebd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Bonus Malus System - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 85423caa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessRequestType.java deleted file mode 100644 index 34814199..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.BOAProcessRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessRequestType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessResponseType.java deleted file mode 100644 index c23040c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.BOAProcessResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessResponseType.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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonRequestType.java deleted file mode 100644 index 0e3f2a08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonRequestType.java +++ /dev/null @@ -1,205 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "technischeObjekte", - "korrelationsId" -}) -@XmlSeeAlso({ - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.class, - CommonSearchRequestType.class, - GetApplicationDocumentRequestType.class, - CommonProcessRequestType.class, - SubmitReceiptRequest.class, - CheckCoverageRequest.class -}) -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "ClientId") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - protected List technischeParameter; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonResponseType.java deleted file mode 100644 index 67b51152..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonResponseType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_8_0.on2antrag.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status", - "technischeObjekte", - "gestartet", - "beendet" -}) -@XmlSeeAlso({ - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class, - CommonSearchResponseType.class, - GetApplicationDocumentResponseType.class, - CommonProcessResponseType.class, - SubmitReceiptResponse.class, - CheckCoverageResponse.class -}) -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - protected ResponseStatusType status; - @XmlElement(name = "TechnischeObjekte") - protected List 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. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchRequestType.java deleted file mode 100644 index 99863b3b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,205 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_8_0.on1basis.GetStateChangesRequestType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchResponseType.java deleted file mode 100644 index ae3dc2c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetStateChangesResponseType; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DateianhangType.java deleted file mode 100644 index 12304e89..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DateianhangType.java +++ /dev/null @@ -1,191 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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. - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DatenverwendungType.java deleted file mode 100644 index 207eb3c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Datenverwendung - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DirectionCdType.java deleted file mode 100644 index 09bc04a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DirectionCdType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentBinaryDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentBinaryDataType.java deleted file mode 100644 index 9f4cab17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentBinaryDataType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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 - * - *

Java-Klasse für DokumentBinaryData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentBinaryData_Type", propOrder = { - "dateiData", - "mimetype", - "groesse", - "datum", - "name" -}) -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; - @XmlElement(name = "Name") - protected String name; - - /** - * 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; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentDataType.java deleted file mode 100644 index 9fc573b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentDataType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ zur Übermittlung von Dokumentendaten - * - *

Java-Klasse für DokumentData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DokumentData_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentData_Type") -@XmlSeeAlso({ - DokumentBinaryDataType.class -}) -public abstract class DokumentDataType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentInfoType.java deleted file mode 100644 index 6da7522e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentInfoType.java +++ /dev/null @@ -1,309 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentenReferenzType.java deleted file mode 100644 index fa5a75a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EintragSchluessellisteType.java deleted file mode 100644 index e771d39a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für einen einzelnen Eintrag einer Schlüsselliste - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwGesDatenVNType.java deleted file mode 100644 index af740432..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwGesDatenVNType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Bekanntgabe Gesundheitsdaten an VN - * - *

Java-Klasse für EinwGesDatenVN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwGesDatenVN_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwGesDatenVN_Type") -public class EinwGesDatenVNType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwSprachaufzType.java deleted file mode 100644 index ac9bdf28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwSprachaufzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Sprachaufzeichnung - * - *

Java-Klasse für EinwSprachaufz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwSprachaufz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwSprachaufz_Type") -public class EinwSprachaufzType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwVerarbGesDatenType.java deleted file mode 100644 index 9a1c7327..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwVerarbGesDatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Verarbeitung Gesundheitsdaten - * - *

Java-Klasse für EinwVerarbGesDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwVerarbGesDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwVerarbGesDaten_Type") -public class EinwVerarbGesDatenType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungPersDatenType.java deleted file mode 100644 index 452e68d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungPersDatenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Einwilligung personenbezogene Daten - * - *

Java-Klasse für EinwilligungPersDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungType.java deleted file mode 100644 index bd95d454..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/EinwilligungType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Einwilligung - * - *

Java-Klasse für Einwilligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementFondsauswahlType.java deleted file mode 100644 index db8d8c66..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementFondsauswahlType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein einzelnes Element einer Fondsauswahl - * - *

Java-Klasse für ElementFondsauswahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the zusaetzlicheFondsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheFondsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheFondsdatenType } - * - * - */ - public List getZusaetzlicheFondsdaten() { - if (zusaetzlicheFondsdaten == null) { - zusaetzlicheFondsdaten = new ArrayList(); - } - return this.zusaetzlicheFondsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementIdType.java deleted file mode 100644 index a5676677..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index 0cd4e599..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,191 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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_8_0.on2antrag.kranken.ElementarproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.TarifLebenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.ElementarproduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.LeistungsartUnfallType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - LeistungsartUnfallType.class, - TarifLebenType.class, - ElementarproduktSachPrivatType.class, - ElementarproduktRechtsschutzType.class, - ElementarproduktKrankenType.class -}) -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktType.java deleted file mode 100644 index d4c52f0d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ElementarproduktType.java +++ /dev/null @@ -1,141 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_8_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "refSicherstellungLfnr", - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktGenerischType.class, - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.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 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. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeMitAendGrundType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeMitAendGrundType.java deleted file mode 100644 index 10554754..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeMitAendGrundType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einfache Implementierung einer zu ersetzenden Polizze mit Angabe eines Änderungsgrunds - * - *

Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeType.java deleted file mode 100644 index 1da0aee3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzeType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibung einer durch Konvertierung zu ersetzenden Polizze - * - *

Java-Klasse für Ersatzpolizze_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizze_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizze_Type", propOrder = { - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - ErsatzpolizzeMitAendGrundType.class -}) -public abstract class ErsatzpolizzeType { - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzenType.java deleted file mode 100644 index eab0c1ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCANatPersonType.java deleted file mode 100644 index 06e357e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_NatPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_NatPersonType", propOrder = { - "usIndizien", - "usSteuerpflicht" -}) -public class FATCANatPersonType { - - @XmlElement(name = "US_Indizien") - protected boolean usIndizien; - @XmlElement(name = "US_Steuerpflicht") - protected boolean usSteuerpflicht; - - /** - * Ruft den Wert der usIndizien-Eigenschaft ab. - * - */ - public boolean isUSIndizien() { - return usIndizien; - } - - /** - * Legt den Wert der usIndizien-Eigenschaft fest. - * - */ - public void setUSIndizien(boolean value) { - this.usIndizien = value; - } - - /** - * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. - * - */ - public boolean isUSSteuerpflicht() { - return usSteuerpflicht; - } - - /** - * Legt den Wert der usSteuerpflicht-Eigenschaft fest. - * - */ - public void setUSSteuerpflicht(boolean value) { - this.usSteuerpflicht = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCASonstPersonType.java deleted file mode 100644 index a5edfb6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_SonstPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *         <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_SonstPersonType", propOrder = { - "landFirmensitz", - "giin", - "konzessionFinanzen", - "nichtFinanzielleDienstleistungen" -}) -public class FATCASonstPersonType { - - @XmlElement(name = "LandFirmensitz", required = true) - protected AttributEnumType landFirmensitz; - @XmlElement(name = "GIIN") - protected String giin; - @XmlElement(name = "KonzessionFinanzen") - protected boolean konzessionFinanzen; - @XmlElement(name = "NichtFinanzielleDienstleistungen") - protected boolean nichtFinanzielleDienstleistungen; - - /** - * Ruft den Wert der landFirmensitz-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLandFirmensitz() { - return landFirmensitz; - } - - /** - * Legt den Wert der landFirmensitz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLandFirmensitz(AttributEnumType value) { - this.landFirmensitz = value; - } - - /** - * Ruft den Wert der giin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGIIN() { - return giin; - } - - /** - * Legt den Wert der giin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGIIN(String value) { - this.giin = value; - } - - /** - * Ruft den Wert der konzessionFinanzen-Eigenschaft ab. - * - */ - public boolean isKonzessionFinanzen() { - return konzessionFinanzen; - } - - /** - * Legt den Wert der konzessionFinanzen-Eigenschaft fest. - * - */ - public void setKonzessionFinanzen(boolean value) { - this.konzessionFinanzen = value; - } - - /** - * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab. - * - */ - public boolean isNichtFinanzielleDienstleistungen() { - return nichtFinanzielleDienstleistungen; - } - - /** - * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest. - * - */ - public void setNichtFinanzielleDienstleistungen(boolean value) { - this.nichtFinanzielleDienstleistungen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCAType.java deleted file mode 100644 index cd468b5e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FATCAType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- *         <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_Type", propOrder = { - "ustin", - "fatcaNatPerson", - "fatcaSonstPerson" -}) -public class FATCAType { - - @XmlElement(name = "US_TIN") - protected String ustin; - @XmlElement(name = "FATCA_NatPerson") - protected FATCANatPersonType fatcaNatPerson; - @XmlElement(name = "FATCA_SonstPerson") - protected FATCASonstPersonType fatcaSonstPerson; - - /** - * Ruft den Wert der ustin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSTIN() { - return ustin; - } - - /** - * Legt den Wert der ustin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSTIN(String value) { - this.ustin = value; - } - - /** - * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCANatPersonType } - * - */ - public FATCANatPersonType getFATCANatPerson() { - return fatcaNatPerson; - } - - /** - * Legt den Wert der fatcaNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCANatPersonType } - * - */ - public void setFATCANatPerson(FATCANatPersonType value) { - this.fatcaNatPerson = value; - } - - /** - * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType getFATCASonstPerson() { - return fatcaSonstPerson; - } - - /** - * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCASonstPersonType } - * - */ - public void setFATCASonstPerson(FATCASonstPersonType value) { - this.fatcaSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FahrzeugType.java deleted file mode 100644 index 90b55df8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/FahrzeugType.java +++ /dev/null @@ -1,890 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.math.BigDecimal; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
- *       <attribute name="Historisch" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer co2Ausstoss; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zulassdatHalter; - @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String aufbauNatC; - @XmlAttribute(name = "Historisch", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Boolean historisch; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = 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 polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - - /** - * Ruft den Wert der aufbauNatC-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufbauNatC() { - return aufbauNatC; - } - - /** - * Legt den Wert der aufbauNatC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufbauNatC(String value) { - this.aufbauNatC = value; - } - - /** - * Ruft den Wert der historisch-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isHistorisch() { - return historisch; - } - - /** - * Legt den Wert der historisch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setHistorisch(Boolean value) { - this.historisch = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GMSGType.java deleted file mode 100644 index e832ca7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GMSGType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GMSG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
-     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "land", - "steuernummer" - }) - public static class SteuerlichAnsaessig { - - @XmlElement(name = "Land", required = true) - protected AttributEnumType land; - @XmlElement(name = "Steuernummer") - protected AttributStringType steuernummer; - - /** - * Ruft den Wert der land-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getLand() { - return land; - } - - /** - * Legt den Wert der land-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setLand(AttributEnumType value) { - this.land = value; - } - - /** - * Ruft den Wert der steuernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getSteuernummer() { - return steuernummer; - } - - /** - * Legt den Wert der steuernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setSteuernummer(AttributStringType value) { - this.steuernummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index aee61418..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,61 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index 21d309de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GlaeubigerSicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { - "institut", - "plz", - "strasse", - "vertragsnummer" -}) -public class GlaeubigerSicherstellungType { - - @XmlElement(name = "Institut", required = true) - protected String institut; - @XmlElement(name = "PLZ", required = true) - protected String plz; - @XmlElement(name = "Strasse", required = true) - protected String strasse; - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - - /** - * Ruft den Wert der institut-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInstitut() { - return institut; - } - - /** - * Legt den Wert der institut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInstitut(String value) { - this.institut = 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 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 vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationType.java deleted file mode 100644 index 9c38e3c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Kombination von Produktbaustein-Ids - * - *

Java-Klasse für Kombination_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombination_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TarifId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombination_Type", propOrder = { - "tarifids" -}) -public class KombinationType { - - @XmlElement(name = "TarifId", required = true) - protected List tarifids; - - /** - *

Die Liste der zulässigen Baustein-Ids.

- * Gets the value of the tarifids property. - * - *

- * 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 set method for the tarifids property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarifids().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getTarifids() { - if (tarifids == null) { - tarifids = new ArrayList(); - } - return this.tarifids; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationenType.java deleted file mode 100644 index ab3f63b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KombinationenType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion. - * - *

Java-Klasse für Kombinationen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombinationen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="alle" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="zulaessige" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombinationen_Type", propOrder = { - "kombinationen" -}) -public class KombinationenType { - - @XmlElement(name = "Kombination") - protected List kombinationen; - @XmlAttribute(name = "alle", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected boolean alle; - @XmlAttribute(name = "zulaessige", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected Boolean zulaessige; - - /** - *

Die Liste der zulässigen Kombinationen.

- * Gets the value of the kombinationen property. - * - *

- * 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 set method for the kombinationen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKombinationen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KombinationType } - * - * - */ - public List getKombinationen() { - if (kombinationen == null) { - kombinationen = new ArrayList(); - } - return this.kombinationen; - } - - /** - * Ruft den Wert der alle-Eigenschaft ab. - * - */ - public boolean isAlle() { - return alle; - } - - /** - * Legt den Wert der alle-Eigenschaft fest. - * - */ - public void setAlle(boolean value) { - this.alle = value; - } - - /** - * Ruft den Wert der zulaessige-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public boolean isZulaessige() { - if (zulaessige == null) { - return true; - } else { - return zulaessige; - } - } - - /** - * Legt den Wert der zulaessige-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZulaessige(Boolean value) { - this.zulaessige = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KontierungType.java deleted file mode 100644 index 138859a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KontierungType.java +++ /dev/null @@ -1,177 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden. - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "vermittlername", - "abschluss", - "folge", - "betreuung" -}) -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - protected String vermittlernummer; - @XmlElement(name = "Vermittlername") - protected String vermittlername; - @XmlElement(name = "Abschluss", required = true) - protected BigInteger abschluss; - @XmlElement(name = "Folge", required = true) - protected BigInteger folge; - @XmlElement(name = "Betreuung", required = true) - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der vermittlername-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlername() { - return vermittlername; - } - - /** - * Legt den Wert der vermittlername-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlername(String value) { - this.vermittlername = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungBausteinType.java deleted file mode 100644 index 07660eb5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungBausteinType.java +++ /dev/null @@ -1,196 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Allgemeiner Typ um die Behandlung der Unterbausteine in der Konvertierung zu spezifizieren - * - *

Java-Klasse für KonvertierungBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungBaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Bezeichnung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungBaustein_Type", propOrder = { - "ersetztId", - "antragsId", - "bezeichnung", - "zulaessigeAktionen", - "gewaehlteAktion" -}) -@XmlSeeAlso({ - KonvertierungProduktBausteinType.class -}) -public class KonvertierungBausteinType { - - @XmlElement(name = "ErsetztId", required = true) - protected String ersetztId; - @XmlElement(name = "AntragsId") - protected String antragsId; - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "ZulaessigeAktion") - protected List zulaessigeAktionen; - @XmlElement(name = "GewaehlteAktion") - protected KonvertierungsaktionType gewaehlteAktion; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Ruft den Wert der antragsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntragsId() { - return antragsId; - } - - /** - * Legt den Wert der antragsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntragsId(String value) { - this.antragsId = 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; - } - - /** - *

Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - * Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - * Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

- * Gets the value of the zulaessigeAktionen property. - * - *

- * 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 set method for the zulaessigeAktionen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeAktionen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsaktionType } - * - * - */ - public List getZulaessigeAktionen() { - if (zulaessigeAktionen == null) { - zulaessigeAktionen = new ArrayList(); - } - return this.zulaessigeAktionen; - } - - /** - * Ruft den Wert der gewaehlteAktion-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsaktionType } - * - */ - public KonvertierungsaktionType getGewaehlteAktion() { - return gewaehlteAktion; - } - - /** - * Legt den Wert der gewaehlteAktion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsaktionType } - * - */ - public void setGewaehlteAktion(KonvertierungsaktionType value) { - this.gewaehlteAktion = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungProduktBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungProduktBausteinType.java deleted file mode 100644 index 159dc20e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungProduktBausteinType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ableitung für die Produktebene (Ebene 2) mit der zusätzlichen Möglichkeit die Sparte zu signalisieren - * - *

Java-Klasse für KonvertierungProduktBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungProduktBaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type">
- *       <sequence>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungProduktBaustein_Type", propOrder = { - "spartenCd" -}) -public class KonvertierungProduktBausteinType - extends KonvertierungBausteinType -{ - - @XmlElement(name = "SpartenCd") - protected String spartenCd; - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpartenCd(String value) { - this.spartenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionBelassenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionBelassenType.java deleted file mode 100644 index cabdd4d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionBelassenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag) - * - *

Java-Klasse für KonvertierungsaktionBelassen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionBelassen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionBelassen_Type") -public class KonvertierungsaktionBelassenType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionStornoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionStornoType.java deleted file mode 100644 index 6d3268ad..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionStornoType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen) - * - *

Java-Klasse für KonvertierungsaktionStorno_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionStorno_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionStorno_Type") -public class KonvertierungsaktionStornoType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionType.java deleted file mode 100644 index bcb73eac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Aktion für einen Baustein - * - *

Java-Klasse für Konvertierungsaktion_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsaktion_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsaktion_Type", propOrder = { - "art" -}) -@XmlSeeAlso({ - KonvertierungsaktionBelassenType.class, - KonvertierungsaktionUebernehmenType.class, - KonvertierungsaktionStornoType.class -}) -public abstract class KonvertierungsaktionType { - - @XmlElement(name = "Art") - protected String art; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionUebernehmenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionUebernehmenType.java deleted file mode 100644 index a0884066..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsaktionUebernehmenType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen) - * - *

Java-Klasse für KonvertierungsaktionUebernehmen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionUebernehmen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *       <sequence>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionUebernehmen_Type", propOrder = { - "bausteine", - "kombinationen" -}) -public class KonvertierungsaktionUebernehmenType - extends KonvertierungsaktionType -{ - - @XmlElement(name = "Baustein") - protected List bausteine; - @XmlElement(name = "Kombinationen") - protected KombinationenType kombinationen; - - /** - *

Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungBausteinType } - * - * - */ - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsumfangVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsumfangVertragType.java deleted file mode 100644 index 06d39925..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KonvertierungsumfangVertragType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag - * - *

Java-Klasse für KonvertierungsumfangVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsumfangVertrag_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
- *       <sequence>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungProduktBaustein_Type" maxOccurs="unbounded"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsumfangVertrag_Type", propOrder = { - "bezeichnung", - "bausteine", - "kombinationen" -}) -public class KonvertierungsumfangVertragType - extends ErsatzpolizzeType -{ - - @XmlElement(name = "Bezeichnung") - protected String bezeichnung; - @XmlElement(name = "Baustein", required = true) - protected List bausteine; - @XmlElement(name = "Kombinationen") - protected KombinationenType kombinationen; - - /** - * 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; - } - - /** - *

Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungProduktBausteinType } - * - * - */ - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KostenFixOderProzentType.java deleted file mode 100644 index d2c37435..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KreditkarteType.java deleted file mode 100644 index 6d715dec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/LegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/LegitimationType.java deleted file mode 100644 index a60851c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/LegitimationType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType; - - -/** - * Daten zur Legitimation des Antragstellers bzw. Kunden - * - *

Java-Klasse für Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Legitimation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Legitimation_Type">
- *       <attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Legitimation_Type") -public class LegitimationType - extends ELLegitimationType -{ - - @XmlAttribute(name = "AusstellendesLand", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ausstellendesLand; - - /** - * Ruft den Wert der ausstellendesLand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstellendesLand() { - return ausstellendesLand; - } - - /** - * Legt den Wert der ausstellendesLand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstellendesLand(String value) { - this.ausstellendesLand = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjectFactory.java deleted file mode 100644 index 7ac549a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjectFactory.java +++ /dev/null @@ -1,865 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GMSGType } - * - */ - public GMSGType createGMSGType() { - return new GMSGType(); - } - - /** - * Create an instance of {@link ProzessDokumentType } - * - */ - public ProzessDokumentType createProzessDokumentType() { - return new ProzessDokumentType(); - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link LegitimationType } - * - */ - public LegitimationType createLegitimationType() { - return new LegitimationType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link DokumentBinaryDataType } - * - */ - public DokumentBinaryDataType createDokumentBinaryDataType() { - return new DokumentBinaryDataType(); - } - - /** - * Create an instance of {@link AutorisierungType } - * - */ - public AutorisierungType createAutorisierungType() { - return new AutorisierungType(); - } - - /** - * Create an instance of {@link AutorisierungsAnforderungType } - * - */ - public AutorisierungsAnforderungType createAutorisierungsAnforderungType() { - return new AutorisierungsAnforderungType(); - } - - /** - * Create an instance of {@link AutorisierungsartType } - * - */ - public AutorisierungsartType createAutorisierungsartType() { - return new AutorisierungsartType(); - } - - /** - * Create an instance of {@link ProzessDokRequirementType } - * - */ - public ProzessDokRequirementType createProzessDokRequirementType() { - return new ProzessDokRequirementType(); - } - - /** - * Create an instance of {@link ProzessDokToReturnType } - * - */ - public ProzessDokToReturnType createProzessDokToReturnType() { - return new ProzessDokToReturnType(); - } - - /** - * Create an instance of {@link ProzessDokHandoutType } - * - */ - public ProzessDokHandoutType createProzessDokHandoutType() { - return new ProzessDokHandoutType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link ZusatzproduktGenerischType } - * - */ - public ZusatzproduktGenerischType createZusatzproduktGenerischType() { - return new ZusatzproduktGenerischType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType } - * - */ - public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() { - return new BezugsberechtigungGesetzlicheErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType } - * - */ - public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() { - return new BezugsberechtigungTestamentarischeErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungUeberbringerType } - * - */ - public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() { - return new BezugsberechtigungUeberbringerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungNamentlich } - * - */ - public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() { - return new BezugsberechtigungNamentlich(); - } - - /** - * Create an instance of {@link PersonNamentlichesBezugsrechtType } - * - */ - public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() { - return new PersonNamentlichesBezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType } - * - */ - public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() { - return new BezugsberechtigungVersicherungsnehmerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersichertePersonType } - * - */ - public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() { - return new BezugsberechtigungVersichertePersonType(); - } - - /** - * Create an instance of {@link BezugsberechtigungIndividuell } - * - */ - public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() { - return new BezugsberechtigungIndividuell(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link ErsatzpolizzeMitAendGrundType } - * - */ - public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() { - return new ErsatzpolizzeMitAendGrundType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link AbtretungType } - * - */ - public AbtretungType createAbtretungType() { - return new AbtretungType(); - } - - /** - * Create an instance of {@link VerpfaendungType } - * - */ - public VerpfaendungType createVerpfaendungType() { - return new VerpfaendungType(); - } - - /** - * Create an instance of {@link PfandglaeubigerType } - * - */ - public PfandglaeubigerType createPfandglaeubigerType() { - return new PfandglaeubigerType(); - } - - /** - * Create an instance of {@link VinkulierungPersonenType } - * - */ - public VinkulierungPersonenType createVinkulierungPersonenType() { - return new VinkulierungPersonenType(); - } - - /** - * Create an instance of {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() { - return new GlaeubigerSicherstellungType(); - } - - /** - * Create an instance of {@link EinwVerarbGesDatenType } - * - */ - public EinwVerarbGesDatenType createEinwVerarbGesDatenType() { - return new EinwVerarbGesDatenType(); - } - - /** - * Create an instance of {@link EinwGesDatenVNType } - * - */ - public EinwGesDatenVNType createEinwGesDatenVNType() { - return new EinwGesDatenVNType(); - } - - /** - * Create an instance of {@link EinwSprachaufzType } - * - */ - public EinwSprachaufzType createEinwSprachaufzType() { - return new EinwSprachaufzType(); - } - - /** - * Create an instance of {@link FATCAType } - * - */ - public FATCAType createFATCAType() { - return new FATCAType(); - } - - /** - * Create an instance of {@link FATCANatPersonType } - * - */ - public FATCANatPersonType createFATCANatPersonType() { - return new FATCANatPersonType(); - } - - /** - * Create an instance of {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType createFATCASonstPersonType() { - return new FATCASonstPersonType(); - } - - /** - * Create an instance of {@link PEPType } - * - */ - public PEPType createPEPType() { - return new PEPType(); - } - - /** - * Create an instance of {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType createTreuhaenderfrageType() { - return new TreuhaenderfrageType(); - } - - /** - * Create an instance of {@link ElementFondsauswahlType } - * - */ - public ElementFondsauswahlType createElementFondsauswahlType() { - return new ElementFondsauswahlType(); - } - - /** - * Create an instance of {@link GMSGType.SteuerlichAnsaessig } - * - */ - public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() { - return new GMSGType.SteuerlichAnsaessig(); - } - - /** - * Create an instance of {@link ProzessDokumentType.Autorisierungen } - * - */ - public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() { - return new ProzessDokumentType.Autorisierungen(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * 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:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektIdType.java deleted file mode 100644 index 310fb2e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -public class ObjektIdType { - - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - protected String ordnungsbegriffZuordFremd; - - /** - * 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 gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 9e3f6ad3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffeneSchaedenType.java deleted file mode 100644 index bfcf9b99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffenerSchadenType.java deleted file mode 100644 index 0ea64c0b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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; - - -/** - * Type einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PEPType.java deleted file mode 100644 index d0c15717..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PEPType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PEP_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PEP_Type", propOrder = { - "pep", - "beschreibung" -}) -public class PEPType { - - @XmlElement(name = "PEP") - protected boolean pep; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - */ - public boolean isPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - */ - public void setPEP(boolean value) { - this.pep = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PartnerRoleType.java deleted file mode 100644 index 83e13be9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PartnerRoleType.java +++ /dev/null @@ -1,48 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersBankverbindungType.java deleted file mode 100644 index 5473ea17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonNamentlichesBezugsrechtType.java deleted file mode 100644 index 7c274025..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonNamentlichesBezugsrechtType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersonNamentlichesBezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = { - "prozentsatz", - "zugunsten" -}) -public class PersonNamentlichesBezugsrechtType { - - @XmlElement(name = "Prozentsatz") - protected Double prozentsatz; - @XmlElement(name = "Zugunsten") - @XmlSchemaType(name = "unsignedShort") - protected int zugunsten; - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setProzentsatz(Double value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der zugunsten-Eigenschaft ab. - * - */ - public int getZugunsten() { - return zugunsten; - } - - /** - * Legt den Wert der zugunsten-Eigenschaft fest. - * - */ - public void setZugunsten(int value) { - this.zugunsten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonType.java deleted file mode 100644 index c547bb0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PersonType.java +++ /dev/null @@ -1,421 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_14.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_14.ELTextType; -import at.vvo.omds.types.omds2Types.v2_14.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_14.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -public class PersonType { - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @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 natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PfandglaeubigerType.java deleted file mode 100644 index 78e2ac08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Pfandglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pfandglaeubiger_Type", propOrder = { - "anteil", - "glaeubiger" -}) -public class PfandglaeubigerType { - - @XmlElement(name = "Anteil") - protected double anteil; - @XmlElement(name = "Glaeubiger", required = true) - protected GlaeubigerSicherstellungType glaeubiger; - - /** - * Ruft den Wert der anteil-Eigenschaft ab. - * - */ - public double getAnteil() { - return anteil; - } - - /** - * Legt den Wert der anteil-Eigenschaft fest. - * - */ - public void setAnteil(double value) { - this.anteil = value; - } - - /** - * Ruft den Wert der glaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType getGlaeubiger() { - return glaeubiger; - } - - /** - * Legt den Wert der glaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - public void setGlaeubiger(GlaeubigerSicherstellungType value) { - this.glaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 3c5c9731..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenversandType.java deleted file mode 100644 index 3a629eab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PolizzenversandType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PraemieType.java deleted file mode 100644 index af407558..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/PraemieType.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag" -}) -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - protected Double abschlag; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAbschlag(Double value) { - this.abschlag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktGenerischType.java deleted file mode 100644 index 531ec10a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktGenerischType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.ProduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktSachPrivatType.class, - ProduktRechtsschutzType.class, - ProduktMitVpType.class -}) -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktMitVpType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktMitVpType.java deleted file mode 100644 index ba5f5930..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktMitVpType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.ProduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.ProduktLebenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.ProduktUnfallType; - - -/** - * Basistyp für ein Produkt vom Typ "Versicherte Person" für Personensparten - * - *

Java-Klasse für ProduktMitVp_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktMitVp_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktMitVp_Type", propOrder = { - "bezugsberechtigungen", - "versPersonenRefLfnr" -}) -@XmlSeeAlso({ - ProduktUnfallType.class, - ProduktLebenType.class, - ProduktKrankenType.class -}) -public abstract class ProduktMitVpType - extends ProduktGenerischType -{ - - @XmlElement(name = "Bezugsberechtigungen") - protected List bezugsberechtigungen; - @XmlElement(name = "VersPersonenRefLfnr") - @XmlSchemaType(name = "unsignedShort") - protected int versPersonenRefLfnr; - - /** - * Gets the value of the bezugsberechtigungen property. - * - *

- * 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 set method for the bezugsberechtigungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBezugsberechtigungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BezugsberechtigungType } - * - * - */ - public List getBezugsberechtigungen() { - if (bezugsberechtigungen == null) { - bezugsberechtigungen = new ArrayList(); - } - return this.bezugsberechtigungen; - } - - /** - * Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab. - * - */ - public int getVersPersonenRefLfnr() { - return versPersonenRefLfnr; - } - - /** - * Legt den Wert der versPersonenRefLfnr-Eigenschaft fest. - * - */ - public void setVersPersonenRefLfnr(int value) { - this.versPersonenRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktType.java deleted file mode 100644 index 2545d834..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktType.java +++ /dev/null @@ -1,254 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_8_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "refSicherstellungLfnr", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktGenerischType.class, - ProduktKfzType.class, - ZusatzproduktKfzType.class -}) -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheProduktdaten") - protected List zusaetzlicheProduktdaten; - - /** - * 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 produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = 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 zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index 4e2b0dbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinType.java deleted file mode 100644 index 0dc3c3f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,141 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - ZusatzproduktType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokHandoutType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokHandoutType.java deleted file mode 100644 index b6282c70..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokHandoutType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument für Kunde, nicht zu unterschreiben - * - *

Java-Klasse für ProzessDokHandout_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokHandout_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="ArtAusfolgung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokHandout_Type", propOrder = { - "dokData", - "artAusfolgung" -}) -public class ProzessDokHandoutType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokData", required = true) - protected DokumentDataType dokData; - @XmlElement(name = "ArtAusfolgung") - protected short artAusfolgung; - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - */ - public short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - */ - public void setArtAusfolgung(short value) { - this.artAusfolgung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokRequirementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokRequirementType.java deleted file mode 100644 index 950f6580..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokRequirementType.java +++ /dev/null @@ -1,187 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Anforderung eines beizubringenden Dokuments - * - *

Java-Klasse für ProzessDokRequirement_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokRequirement_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" 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>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokRequirement_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "meldungen" -}) -public class ProzessDokRequirementType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - protected List zulaessigeMimetypes; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokToReturnType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokToReturnType.java deleted file mode 100644 index 233cd37a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokToReturnType.java +++ /dev/null @@ -1,215 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen - * - *

Java-Klasse für ProzessDokToReturn_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokToReturn_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokToReturn_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "dokData", - "meldungen" -}) -public class ProzessDokToReturnType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen", required = true) - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - protected List zulaessigeMimetypes; - @XmlElement(name = "DokData", required = true) - protected DokumentDataType dokData; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentBasisType.java deleted file mode 100644 index e0f6c198..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentBasisType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Basistyp für Bereitstellung und Anforderung von Dokumenten - * - *

Java-Klasse für ProzessDokumentBasis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokumentBasis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokumentBasis_Type", propOrder = { - "dokumenttyp", - "beschreibung" -}) -@XmlSeeAlso({ - ProzessDokRequirementType.class, - ProzessDokToReturnType.class, - ProzessDokHandoutType.class -}) -public abstract class ProzessDokumentBasisType { - - @XmlElement(name = "Dokumenttyp", required = true) - protected String dokumenttyp; - @XmlElement(name = "Beschreibung", required = true) - protected String beschreibung; - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentType.java deleted file mode 100644 index 7bce0939..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ProzessDokumentType.java +++ /dev/null @@ -1,242 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. - * - *

Java-Klasse für ProzessDokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Autorisierungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokument_Type", propOrder = { - "dokAnforderungsId", - "dokumenttyp", - "beschreibung", - "autorisierungen", - "dokumentHinterlegt", - "dokData" -}) -public class ProzessDokumentType { - - @XmlElement(name = "DokAnforderungsId") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Dokumenttyp", required = true) - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Autorisierungen") - protected List autorisierungen; - @XmlElement(name = "DokumentHinterlegt") - protected boolean dokumentHinterlegt; - @XmlElement(name = "DokData") - protected DokumentDataType dokData; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * 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; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType.Autorisierungen } - * - * - */ - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der dokumentHinterlegt-Eigenschaft ab. - * - */ - public boolean isDokumentHinterlegt() { - return dokumentHinterlegt; - } - - /** - * Legt den Wert der dokumentHinterlegt-Eigenschaft fest. - * - */ - public void setDokumentHinterlegt(boolean value) { - this.dokumentHinterlegt = value; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Autorisierungen - extends AutorisierungType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RaucherType.java deleted file mode 100644 index 4a8dc2fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RaucherType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/Referenz.java deleted file mode 100644 index d0e9db28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/Referenz.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -public class Referenz { - - @XmlElement(name = "Link", required = true) - protected Object link; - @XmlElement(name = "Bezeichnung") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ResponseStatusType.java deleted file mode 100644 index 6eed171f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ResponseStatusType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - @XmlElement(name = "Referenzen") - protected List referenzen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RisikoNatPersonType.java deleted file mode 100644 index a3ae8697..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,501 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 9e1e031b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SelbstbehaltType.java deleted file mode 100644 index f6c19e56..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.math.BigDecimal; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "art", - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Art") - protected String art; - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ServiceFault.java deleted file mode 100644 index 55a5c6b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ServiceFault.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SicherstellungType.java deleted file mode 100644 index 7e2786f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/SicherstellungType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.math.BigDecimal; -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 fuer Sicherstellungen - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -public abstract class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "Betrag") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * 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; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/StatusType.java deleted file mode 100644 index 82cda89b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/StatusType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TarifIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TarifIdType.java deleted file mode 100644 index ebba8db1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TarifIdType.java +++ /dev/null @@ -1,33 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für eine TarifId. Dieser Typ muss von der VU überschrieben werden, - * die z.B. ein Enum für die zulässigen Tarifschlüssel anbietet. - * - *

Java-Klasse für TarifId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifId_Type") -public abstract class TarifIdType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 6ff8b9de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnischesObjektType.java deleted file mode 100644 index 4d23e488..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TechnischesObjektType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TreuhaenderfrageType.java deleted file mode 100644 index 89c1b618..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender", - "beschreibung" -}) -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - protected boolean treuhaender; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - public void setTreuhaender(boolean value) { - this.treuhaender = value; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/UploadDokumentType.java deleted file mode 100644 index 444a96a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/UploadDokumentType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index afb8d7cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.VerkaufsproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.VerkaufsproduktLebenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.VerkaufsproduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.VerkaufsproduktUnfallType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktUnfallType.class, - VerkaufsproduktLebenType.class, - VerkaufsproduktSachPrivatType.class, - VerkaufsproduktRechtsschutzType.class, - VerkaufsproduktKrankenType.class -}) -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - protected String beschreibungTxt; - - /** - * 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktType.java deleted file mode 100644 index 6402d7ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,338 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_14.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "refSicherstellungLfnr", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktGenerischType.class, - VerkaufsproduktKfzType.class -}) -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Zahlweg") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * 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 verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = 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 zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerpfaendungType.java deleted file mode 100644 index 4f2da2dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VerpfaendungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index 2ccb6c77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int ueberdachteFlaecheInQm; - - /** - * 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 adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertePersonType.java deleted file mode 100644 index b67cff83..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertePersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index 1764be75..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class, - VersichertePersonType.class, - VersicherteLiegenschaftType.class -}) -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseType.java deleted file mode 100644 index 0686047a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -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 Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "zusaetzlicheRisikodaten" -}) -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherungssteuerType.java deleted file mode 100644 index b14e7ec7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VertragspersonType.java deleted file mode 100644 index 44ec4fe7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkularglaeubigerType.java deleted file mode 100644 index 07ed5092..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungPersonenType.java deleted file mode 100644 index dfb60f78..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungType.java deleted file mode 100644 index fcdeeffd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorlaeufigeDeckungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorlaeufigeDeckungType.java deleted file mode 100644 index f229669d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorlaeufigeDeckungType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp fuer vorläufige Deckungen - * - *

Java-Klasse für VorlaeufigeDeckung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorlaeufigeDeckung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorlaeufigeDeckung_Type") -public abstract class VorlaeufigeDeckungType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungType.java deleted file mode 100644 index 4829e68e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Angaben zu einer Vorversicherung in der Standardimplementierung, erweitert VorversicherungenDetail_Type - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenDetailType.java deleted file mode 100644 index d644fdba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type - * und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - VorversicherungType.class, - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenImplType.java deleted file mode 100644 index 955fe0ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardimplementierung Vorversicherungen: Eine Liste von Vorversicherung_Type-Objekten - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenType.java deleted file mode 100644 index e4126201..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/VorversicherungenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen, wird verwendet in SpezAntrag_Type. - * Es gibt zwei Ableitungen im Standard: VorversicherungenKfz_Type und VorversicherungenImpl_Type (s.u.), jede VU kann aber auch eigene Implementierungen vornehmen. - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenImplType.class, - VorversicherungenKfzType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlungsdatenType.java deleted file mode 100644 index d7f20199..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibt die Zahlungsdaten in Antragsservices - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - protected String kontonummer; - @XmlElement(name = "BIC") - protected String bic; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontonummer(String value) { - this.kontonummer = 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlwegType.java deleted file mode 100644 index 47f6b8ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZeitraumType.java deleted file mode 100644 index 27f2d083..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZeitraumType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZulassungsdatenType.java deleted file mode 100644 index 06eb58cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index 51e8f3e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheFondsdatenType.java deleted file mode 100644 index d192b43f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheFondsdatenType.java +++ /dev/null @@ -1,30 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheFondsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheFondsdaten_Type") -public abstract class ZusaetzlicheFondsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 8b97014a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index 82b3b713..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Risikodaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index ab38fb45..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index 414da1ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index 2a5a0249..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktGenerischType.java deleted file mode 100644 index 3dbe1f1c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktGenerischType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_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_8_0.on2antrag.leben.ZusatzversicherungLebenType; - - -/** - * Basistyp für ein Zusatzprodukt, 2. Generation - * - *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ZusatzversicherungLebenType.class -}) -public class ZusatzproduktGenerischType - extends ZusatzproduktType -{ - - @XmlElement(name = "Eingeschlossen") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - protected List 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktType.java deleted file mode 100644 index 5ca5ded9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/ZusatzproduktType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Basistyp für ein Zusatzprodukt - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * 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; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/package-info.java deleted file mode 100644 index 9056c423..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStateChangeEventType.java deleted file mode 100644 index 0bd2383e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStateChangeEventType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Event einer Statusänderung - * - *

Java-Klasse für AbstractStateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStateChangeEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStateChangeEvent_Type") -@XmlSeeAlso({ - StateChangeEventType.class -}) -public abstract class AbstractStateChangeEventType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStatusGeschaeftsfallType.java deleted file mode 100644 index 1a71cdbe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AbstractStatusGeschaeftsfallType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 Status eines Geschaeftsfalls - * - *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStatusGeschaeftsfall_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStatusGeschaeftsfall_Type") -@XmlSeeAlso({ - StatusAntragsGeschaeftsfall.class -}) -public abstract class AbstractStatusGeschaeftsfallType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index 7df53319..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index d4990087..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesRequestType.java deleted file mode 100644 index 9339a657..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesRequestType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 fuer die Bekanntgabe von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="StateChange" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesRequest_Type", propOrder = { - "stateChange" -}) -public class DeclareStateChangesRequestType { - - @XmlElement(name = "StateChange", required = true) - protected List stateChange; - - /** - * Gets the value of the stateChange property. - * - *

- * 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 set method for the stateChange property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStateChange().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getStateChange() { - if (stateChange == null) { - stateChange = new ArrayList(); - } - return this.stateChange; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesResponseType.java deleted file mode 100644 index 8e4aa212..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DeclareStateChangesResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ fuer die Annahme von Statusänderungen - * - *

Java-Klasse für DeclareStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeclareStateChangesResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeclareStateChangesResponse_Type") -public class DeclareStateChangesResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 953a2870..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 958a1e27..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index d941773b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index fdd9a3d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 30c533fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 89f725c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index c6e7a451..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesRequestType.java deleted file mode 100644 index adddb3f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.CommonSearchRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.GeschaeftsobjektArtType; - - -/** - * Typ des Requestobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
- *       <sequence>
- *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesRequest_Type", propOrder = { - "geschaeftsobjektArt" -}) -public class GetStateChangesRequestType - extends CommonSearchRequestType -{ - - @XmlElement(name = "GeschaeftsobjektArt") - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType geschaeftsobjektArt; - - /** - * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getGeschaeftsobjektArt() { - return geschaeftsobjektArt; - } - - /** - * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { - this.geschaeftsobjektArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesResponseType.java deleted file mode 100644 index 2a84d781..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/GetStateChangesResponseType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonSearchResponseType; - - -/** - * Typ des Responseobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
- *       <sequence>
- *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesResponse_Type", propOrder = { - "event" -}) -public class GetStateChangesResponseType - extends CommonSearchResponseType -{ - - @XmlElement(name = "Event") - protected List event; - - /** - * Gets the value of the event property. - * - *

- * 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 set method for the event property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - public List getEvent() { - if (event == null) { - event = new ArrayList(); - } - return this.event; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/ObjectFactory.java deleted file mode 100644 index f107ac93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,323 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest"); - private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse"); - private final static QName _DeclareStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesRequest"); - private final static QName _DeclareStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesResponse"); - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetStateChangesRequestType } - * - */ - public GetStateChangesRequestType createGetStateChangesRequestType() { - return new GetStateChangesRequestType(); - } - - /** - * Create an instance of {@link GetStateChangesResponseType } - * - */ - public GetStateChangesResponseType createGetStateChangesResponseType() { - return new GetStateChangesResponseType(); - } - - /** - * Create an instance of {@link DeclareStateChangesRequestType } - * - */ - public DeclareStateChangesRequestType createDeclareStateChangesRequestType() { - return new DeclareStateChangesRequestType(); - } - - /** - * Create an instance of {@link DeclareStateChangesResponseType } - * - */ - public DeclareStateChangesResponseType createDeclareStateChangesResponseType() { - return new DeclareStateChangesResponseType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link StateChangeEventType } - * - */ - public StateChangeEventType createStateChangeEventType() { - return new StateChangeEventType(); - } - - /** - * Create an instance of {@link StatusAntragsGeschaeftsfall } - * - */ - public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { - return new StatusAntragsGeschaeftsfall(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest") - public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { - return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse") - public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { - return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesRequest") - public JAXBElement createDeclareStateChangesRequest(DeclareStateChangesRequestType value) { - return new JAXBElement(_DeclareStateChangesRequest_QNAME, DeclareStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesResponse") - public JAXBElement createDeclareStateChangesResponse(DeclareStateChangesResponseType value) { - return new JAXBElement(_DeclareStateChangesResponse_QNAME, DeclareStateChangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StateChangeEventType.java deleted file mode 100644 index fde054ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StateChangeEventType.java +++ /dev/null @@ -1,269 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -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; -import at.vvo.omds.types.omds3Types.r1_8_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; - - -/** - * Standard-Event einer Statusänderung - * - *

Java-Klasse für StateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StateChangeEvent_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
- *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StateChangeEvent_Type", propOrder = { - "objektart", - "objektId", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "aenderungsdatum", - "statusGueltigAbDatum", - "bisherigerStatus", - "neuerStatus" -}) -public class StateChangeEventType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - protected String geschaeftsfallArt; - @XmlElement(name = "Aenderungsdatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar aenderungsdatum; - @XmlElement(name = "StatusGueltigAbDatum", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar statusGueltigAbDatum; - @XmlElement(name = "BisherigerStatus") - protected AbstractStatusGeschaeftsfallType bisherigerStatus; - @XmlElement(name = "NeuerStatus", required = true) - protected AbstractStatusGeschaeftsfallType neuerStatus; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * 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 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; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der aenderungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAenderungsdatum() { - return aenderungsdatum; - } - - /** - * Legt den Wert der aenderungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAenderungsdatum(XMLGregorianCalendar value) { - this.aenderungsdatum = value; - } - - /** - * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStatusGueltigAbDatum() { - return statusGueltigAbDatum; - } - - /** - * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { - this.statusGueltigAbDatum = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der neuerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public AbstractStatusGeschaeftsfallType getNeuerStatus() { - return neuerStatus; - } - - /** - * Legt den Wert der neuerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { - this.neuerStatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StatusAntragsGeschaeftsfall.java deleted file mode 100644 index 8335c95b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/StatusAntragsGeschaeftsfall.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Status eines Antrags - * - *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StatusAntragsGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { - "antragstatus" -}) -public class StatusAntragsGeschaeftsfall - extends AbstractStatusGeschaeftsfallType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/package-info.java deleted file mode 100644 index ac480464..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessRequestType.java deleted file mode 100644 index a1178aab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Request-Types - * - *

Java-Klasse für BOAProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessRequest_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationRequestType.class, - CreateApplicationRequestType.class, - CreateOfferRequestType.class, - CalculateRequestType.class -}) -public class BOAProcessRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessResponseType.java deleted file mode 100644 index d65852b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/BOAProcessResponseType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Response-Types - * - *

Java-Klasse für BOAProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessResponse_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationResponseType.class, - CreateApplicationResponseType.class, - CreateOfferResponseType.class, - CalculateResponseType.class -}) -public class BOAProcessResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Aenderungsgrund") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index 62a478b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateUnfallRequestType.class, - CalculateLebenRequestType.class, - CalculateSachPrivatRequestType.class, - CalculateKrankenRequest.class, - CalculateRechtsschutzRequest.class -}) -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 984536f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class, - CalculateRequestGenType.class -}) -public abstract class CalculateRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index 63198e4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateUnfallResponseType.class, - CalculateLebenResponseType.class, - CalculateSachPrivatResponseType.class, - CalculateKrankenResponse.class, - CalculateRechtsschutzResponse.class -}) -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 149910e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class, - CalculateResponseGenType.class -}) -public abstract class CalculateResponseType - extends BOAProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalRequest.java deleted file mode 100644 index 5cb8e74d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Konvertierungsplan" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsplan" -}) -@XmlRootElement(name = "ConversionProposalRequest") -public class ConversionProposalRequest - extends CommonRequestType -{ - - @XmlElement(name = "Konvertierungsplan", required = true) - protected KonvertierungsumfangType konvertierungsplan; - - /** - * Ruft den Wert der konvertierungsplan-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - public KonvertierungsumfangType getKonvertierungsplan() { - return konvertierungsplan; - } - - /** - * Legt den Wert der konvertierungsplan-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - public void setKonvertierungsplan(KonvertierungsumfangType value) { - this.konvertierungsplan = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalResponse.java deleted file mode 100644 index 5768a0b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionProposalResponse.java +++ /dev/null @@ -1,137 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokHandoutType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Vorschlag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ersatzpolizze" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vorschlag", - "dokument", - "ersatzpolizze" -}) -@XmlRootElement(name = "ConversionProposalResponse") -public class ConversionProposalResponse - extends CommonResponseType -{ - - @XmlElement(name = "Vorschlag") - protected SpezAntragType vorschlag; - @XmlElement(name = "Dokument") - protected List dokument; - @XmlElement(name = "Ersatzpolizze") - protected List ersatzpolizze; - - /** - * Ruft den Wert der vorschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragType } - * - */ - public SpezAntragType getVorschlag() { - return vorschlag; - } - - /** - * Legt den Wert der vorschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragType } - * - */ - public void setVorschlag(SpezAntragType value) { - this.vorschlag = value; - } - - /** - * Gets the value of the dokument property. - * - *

- * 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 set method for the dokument property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokument().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokHandoutType } - * - * - */ - public List getDokument() { - if (dokument == null) { - dokument = new ArrayList(); - } - return this.dokument; - } - - /** - * Gets the value of the ersatzpolizze property. - * - *

- * 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 set method for the ersatzpolizze property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizze().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getErsatzpolizze() { - if (ersatzpolizze == null) { - ersatzpolizze = new ArrayList(); - } - return this.ersatzpolizze; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeRequest.java deleted file mode 100644 index fc18baa4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeRequest.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vertraege" -}) -@XmlRootElement(name = "ConversionScopeRequest") -public class ConversionScopeRequest - extends CommonRequestType -{ - - @XmlElement(name = "Vertrag", required = true) - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeResponse.java deleted file mode 100644 index a8c5818b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ConversionScopeResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Konvertierungsmoeglichkeit" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsmoeglichkeit" -}) -@XmlRootElement(name = "ConversionScopeResponse") -public class ConversionScopeResponse - extends CommonResponseType -{ - - @XmlElement(name = "Konvertierungsmoeglichkeit", required = true) - protected KonvertierungsumfangType konvertierungsmoeglichkeit; - - /** - * Ruft den Wert der konvertierungsmoeglichkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - public KonvertierungsumfangType getKonvertierungsmoeglichkeit() { - return konvertierungsmoeglichkeit; - } - - /** - * Legt den Wert der konvertierungsmoeglichkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - public void setKonvertierungsmoeglichkeit(KonvertierungsumfangType value) { - this.konvertierungsmoeglichkeit = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index 190369ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationUnfallRequestType.class, - CreateApplicationLebenRequestType.class, - CreateApplicationSachPrivatRequestType.class, - CreateApplicationKrankenRequest.class, - CreateApplicationRechtsschutzRequest.class -}) -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index e1bb8fd3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class, - CreateApplicationRequestGenType.class -}) -public abstract class CreateApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index 32dcd3dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationUnfallResponseType.class, - CreateApplicationLebenResponseType.class, - CreateApplicationSachPrivatResponseType.class, - CreateApplicationKrankenResponse.class, - CreateApplicationRechtsschutzResponse.class -}) -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 15e59544..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class, - CreateApplicationResponseGenType.class -}) -public abstract class CreateApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index 20ce4686..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateOfferKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateOfferRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferUnfallRequestType.class, - CreateOfferLebenRequestType.class, - CreateOfferSachPrivatRequestType.class, - CreateOfferKrankenRequest.class, - CreateOfferRechtsschutzRequest.class -}) -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index d1135530..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class, - CreateOfferRequestGenType.class -}) -public abstract class CreateOfferRequestType - extends BOAProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index e36b514d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateOfferKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateOfferRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferUnfallResponseType.class, - CreateOfferLebenResponseType.class, - CreateOfferSachPrivatResponseType.class, - CreateOfferKrankenResponse.class, - CreateOfferRechtsschutzResponse.class -}) -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index 46373927..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class, - CreateOfferResponseGenType.class -}) -public abstract class CreateOfferResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 2b7a39d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 96555389..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/KonvertierungsumfangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/KonvertierungsumfangType.java deleted file mode 100644 index 31120c77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/KonvertierungsumfangType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.KonvertierungsumfangVertragType; - - -/** - * Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag - * - *

Java-Klasse für Konvertierungsumfang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsumfang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsumfang_Type", propOrder = { - "vertraege" -}) -public class KonvertierungsumfangType { - - @XmlElement(name = "Vertrag", required = true) - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsumfangVertragType } - * - * - */ - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index 2548c8f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link SpezBOASchrittType } - * - */ - public SpezBOASchrittType createSpezBOASchrittType() { - return new SpezBOASchrittType(); - } - - /** - * Create an instance of {@link BOAProcessRequestType } - * - */ - public BOAProcessRequestType createBOAProcessRequestType() { - return new BOAProcessRequestType(); - } - - /** - * Create an instance of {@link BOAProcessResponseType } - * - */ - public BOAProcessResponseType createBOAProcessResponseType() { - return new BOAProcessResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragPersonenType.java deleted file mode 100644 index 3fdc9aae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragPersonenType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.FATCAType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.GMSGType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PEPType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.TreuhaenderfrageType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SpezAntragLebenType; - - -/** - * Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntragPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
- *         <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
- *         <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type"/>
- *         <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragPersonen_Type", propOrder = { - "fatca", - "gsgm", - "pep", - "treuhaenderfrage" -}) -@XmlSeeAlso({ - SpezAntragLebenType.class -}) -public abstract class SpezAntragPersonenType - extends SpezAntragType -{ - - @XmlElement(name = "FATCA") - protected FATCAType fatca; - @XmlElement(name = "GSGM") - protected GMSGType gsgm; - @XmlElement(name = "PEP", required = true) - protected PEPType pep; - @XmlElement(name = "Treuhaenderfrage", required = true) - protected TreuhaenderfrageType treuhaenderfrage; - - /** - * Ruft den Wert der fatca-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCAType } - * - */ - public FATCAType getFATCA() { - return fatca; - } - - /** - * Legt den Wert der fatca-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCAType } - * - */ - public void setFATCA(FATCAType value) { - this.fatca = value; - } - - /** - * Ruft den Wert der gsgm-Eigenschaft ab. - * - * @return - * possible object is - * {@link GMSGType } - * - */ - public GMSGType getGSGM() { - return gsgm; - } - - /** - * Legt den Wert der gsgm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GMSGType } - * - */ - public void setGSGM(GMSGType value) { - this.gsgm = value; - } - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - * @return - * possible object is - * {@link PEPType } - * - */ - public PEPType getPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PEPType } - * - */ - public void setPEP(PEPType value) { - this.pep = value; - } - - /** - * Ruft den Wert der treuhaenderfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType getTreuhaenderfrage() { - return treuhaenderfrage; - } - - /** - * Legt den Wert der treuhaenderfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TreuhaenderfrageType } - * - */ - public void setTreuhaenderfrage(TreuhaenderfrageType value) { - this.treuhaenderfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 090b1e0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,609 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.EinwilligungType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SicherstellungType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SpezAntragKrankenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SpezAntragRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.AntragSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezAntragUnfallType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten", - "sicherstellungen", - "einwilligungen" -}) -@XmlSeeAlso({ - AntragSachPrivatType.class, - SpezAntragRechtsschutzType.class, - SpezAntragKrankenType.class, - SpezAntragPersonenType.class, - SpezAntragUnfallType.class, - SpezAntragKfzType.class -}) -public abstract class SpezAntragType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - protected List zusaetzlicheAntragsdaten; - @XmlElement(name = "Sicherstellungen") - protected List sicherstellungen; - @XmlElement(name = "Einwilligungen") - protected List einwilligungen; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - - /** - * Gets the value of the sicherstellungen property. - * - *

- * 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 set method for the sicherstellungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSicherstellungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SicherstellungType } - * - * - */ - public List getSicherstellungen() { - if (sicherstellungen == null) { - sicherstellungen = new ArrayList(); - } - return this.sicherstellungen; - } - - /** - * Gets the value of the einwilligungen property. - * - *

- * 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 set method for the einwilligungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEinwilligungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EinwilligungType } - * - * - */ - public List getEinwilligungen() { - if (einwilligungen == null) { - einwilligungen = new ArrayList(); - } - return this.einwilligungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBOASchrittType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBOASchrittType.java deleted file mode 100644 index 8abd0a74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBOASchrittType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrackter Basistyp für das Datenmodell aller BOA-Prozessschritte - * - *

Java-Klasse für SpezBOASchritt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBOASchritt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBOASchritt_Type") -@XmlSeeAlso({ - SpezBerechnungType.class, - SpezOffertType.class, - SpezAntragType.class -}) -public class SpezBOASchrittType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 8a78f375..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,85 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SpezBerechnungLebenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.BerechnungSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezBerechnungUnfallType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - BerechnungSachPrivatType.class, - SpezBerechnungLebenType.class, - SpezBerechnungUnfallType.class, - SpezBerechnungKfzType.class -}) -public abstract class SpezBerechnungType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Personen") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index d6a74ded..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,136 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SpezOffertLebenType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.OffertSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezOffertUnfallType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - OffertSachPrivatType.class, - SpezOffertLebenType.class, - SpezOffertUnfallType.class, - SpezOffertKfzType.class -}) -public abstract class SpezOffertType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Offertnummer") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index b1ec1322..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SubmitApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationUnfallRequestType.class, - SubmitApplicationLebenRequestType.class, - SubmitApplicationSachPrivatRequestType.class, - SubmitApplicationKrankenRequest.class, - SubmitApplicationRechtsschutzRequest.class -}) -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index 79b4f2f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class, - SubmitApplicationRequestGenType.class -}) -public abstract class SubmitApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Antragsnummer") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index abe49e57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SubmitApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationUnfallResponseType.class, - SubmitApplicationLebenResponseType.class, - SubmitApplicationSachPrivatResponseType.class, - SubmitApplicationKrankenResponse.class, - SubmitApplicationRechtsschutzResponse.class -}) -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index 678d9c59..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class, - SubmitApplicationResponseGenType.class -}) -public abstract class SubmitApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 47c354d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/package-info.java deleted file mode 100644 index 45055765..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index afb35d0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index d0307a49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 741ef59d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index b87f4adb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index b5b8cff8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index 51418755..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index b9366a50..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 5f0fc9e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBRequest.java deleted file mode 100644 index 6abe5c15..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBRequest.java +++ /dev/null @@ -1,455 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VorlaeufigeDeckungType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr"/>
- *         <element name="Art">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="NEU"/>
- *               <enumeration value="WIEDER"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Kennzeichen" type="{urn:omds20}Pol_Kennz_Type" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Fahrzeug" maxOccurs="3" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
- *                   <element name="MarkeType">
- *                     <simpleType>
- *                       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *                         <maxLength value="20"/>
- *                       </restriction>
- *                     </simpleType>
- *                   </element>
- *                   <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
- *         <element name="GueltigAb" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VorlaeufigeDeckung" type="{urn:omds3CommonServiceTypes-1-1-0}VorlaeufigeDeckung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheVBDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheVBDaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vermittlernr", - "art", - "kennzeichen", - "polizzennr", - "fahrzeug", - "versicherungsnehmer", - "gueltigAb", - "vorlaeufigeDeckung", - "zusaetzlicheVBDaten" -}) -@XmlRootElement(name = "CreateVBRequest") -public class CreateVBRequest - extends CommonRequestType -{ - - @XmlElement(name = "Vermittlernr", required = true) - protected String vermittlernr; - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Fahrzeug") - protected List fahrzeug; - @XmlElement(name = "Versicherungsnehmer", required = true) - protected PersonType versicherungsnehmer; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "VorlaeufigeDeckung") - protected List vorlaeufigeDeckung; - @XmlElement(name = "ZusaetzlicheVBDaten") - protected List zusaetzlicheVBDaten; - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Gets the value of the fahrzeug property. - * - *

- * 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 set method for the fahrzeug property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFahrzeug().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreateVBRequest.Fahrzeug } - * - * - */ - public List getFahrzeug() { - if (fahrzeug == null) { - fahrzeug = new ArrayList(); - } - return this.fahrzeug; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersonType } - * - */ - public PersonType getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - public void setVersicherungsnehmer(PersonType value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Gets the value of the vorlaeufigeDeckung property. - * - *

- * 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 set method for the vorlaeufigeDeckung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorlaeufigeDeckung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorlaeufigeDeckungType } - * - * - */ - public List getVorlaeufigeDeckung() { - if (vorlaeufigeDeckung == null) { - vorlaeufigeDeckung = new ArrayList(); - } - return this.vorlaeufigeDeckung; - } - - /** - * Gets the value of the zusaetzlicheVBDaten property. - * - *

- * 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 set method for the zusaetzlicheVBDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVBDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVBDatenType } - * - * - */ - public List getZusaetzlicheVBDaten() { - if (zusaetzlicheVBDaten == null) { - zusaetzlicheVBDaten = new ArrayList(); - } - return this.zusaetzlicheVBDaten; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="FzgArt" type="{urn:omds20}FzgArtCd_Type"/>
-     *         <element name="MarkeType">
-     *           <simpleType>
-     *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
-     *               <maxLength value="20"/>
-     *             </restriction>
-     *           </simpleType>
-     *         </element>
-     *         <element name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "fzgArt", - "markeType", - "fahrgestnr" - }) - public static class Fahrzeug { - - @XmlElement(name = "FzgArt", required = true) - protected String fzgArt; - @XmlElement(name = "MarkeType", required = true) - protected String markeType; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - - /** - * Ruft den Wert der fzgArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFzgArt() { - return fzgArt; - } - - /** - * Legt den Wert der fzgArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFzgArt(String value) { - this.fzgArt = value; - } - - /** - * Ruft den Wert der markeType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarkeType() { - return markeType; - } - - /** - * Legt den Wert der markeType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarkeType(String value) { - this.markeType = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBResponse.java deleted file mode 100644 index e7df1dff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/CreateVBResponse.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokHandoutType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="VBNr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VBDokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vbNr", - "vbDokument" -}) -@XmlRootElement(name = "CreateVBResponse") -public class CreateVBResponse - extends CommonResponseType -{ - - @XmlElement(name = "VBNr", required = true) - protected String vbNr; - @XmlElement(name = "VBDokument", required = true) - protected ProzessDokHandoutType vbDokument; - - /** - * Ruft den Wert der vbNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNr() { - return vbNr; - } - - /** - * Legt den Wert der vbNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNr(String value) { - this.vbNr = value; - } - - /** - * Ruft den Wert der vbDokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link ProzessDokHandoutType } - * - */ - public ProzessDokHandoutType getVBDokument() { - return vbDokument; - } - - /** - * Legt den Wert der vbDokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ProzessDokHandoutType } - * - */ - public void setVBDokument(ProzessDokHandoutType value) { - this.vbDokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index a89a35a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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_8_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 33d142aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 44a62542..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import java.math.BigDecimal; -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 at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index 0d710319..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index acfcb932..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index c46f4d8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,292 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import java.math.BigDecimal; -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_8_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt", - "neuwertklausel" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index b125b3f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index 22ac092b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,385 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 9aebe23a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index c7941f39..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type" minOccurs="0"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht") - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index 585ff045..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 395cd2a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index 293327ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index cacffbba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 57c1cd6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 180fcf47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index 233d598b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index a14d7e21..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index ad3ff445..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index 4d921d1d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,47 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 18f498e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = 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 persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index 18450f99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index df927681..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index a0294516..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VorversicherungenType; - - -/** - * Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index d14e9e1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index 794859be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 125a5198..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java deleted file mode 100644 index 3ff656d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusaetzlicheVBDatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterungsmöglichkeit für Versicherungsbestaetigung - * - *

Java-Klasse für ZusaetzlicheVBDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVBDaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVBDaten_Type") -public abstract class ZusaetzlicheVBDatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 7da30d16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/package-info.java deleted file mode 100644 index f91f9310..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenRequest.java deleted file mode 100644 index 690f8969..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenRequest.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Kranken - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateKrankenRequest") -public class CalculateKrankenRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKrankenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - public SpezBerechnungKrankenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKrankenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenResponse.java deleted file mode 100644 index 6e39940b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CalculateKrankenResponse.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Kranken-Berechnung - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateKrankenResponse") -public class CalculateKrankenResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungKrankenType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - public SpezBerechnungKrankenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKrankenType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenRequest.java deleted file mode 100644 index d43fd646..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenRequest.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationKrankenRequest") -public class CreateApplicationKrankenRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenResponse.java deleted file mode 100644 index e00fffa3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateApplicationKrankenResponse.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationKrankenResponse") -public class CreateApplicationKrankenResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenRequest.java deleted file mode 100644 index ed2749ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenRequest.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferKrankenRequest") -public class CreateOfferKrankenRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKrankenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - public SpezOffertKrankenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - public void setOffertanfrage(SpezOffertKrankenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenResponse.java deleted file mode 100644 index 200a2ec7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/CreateOfferKrankenResponse.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferKrankenResponse") -public class CreateOfferKrankenResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertKrankenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - public SpezOffertKrankenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - public void setOffertantwort(SpezOffertKrankenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ElementarproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ElementarproduktKrankenType.java deleted file mode 100644 index 4b62ba64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ElementarproduktKrankenType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für ElementarproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKranken_Type", propOrder = { - "selbstbehalt" -}) -public class ElementarproduktKrankenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ObjectFactory.java deleted file mode 100644 index 01502709..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ObjectFactory.java +++ /dev/null @@ -1,144 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateKrankenRequest } - * - */ - public CalculateKrankenRequest createCalculateKrankenRequest() { - return new CalculateKrankenRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungKrankenType } - * - */ - public SpezBerechnungKrankenType createSpezBerechnungKrankenType() { - return new SpezBerechnungKrankenType(); - } - - /** - * Create an instance of {@link CalculateKrankenResponse } - * - */ - public CalculateKrankenResponse createCalculateKrankenResponse() { - return new CalculateKrankenResponse(); - } - - /** - * Create an instance of {@link CreateOfferKrankenRequest } - * - */ - public CreateOfferKrankenRequest createCreateOfferKrankenRequest() { - return new CreateOfferKrankenRequest(); - } - - /** - * Create an instance of {@link SpezOffertKrankenType } - * - */ - public SpezOffertKrankenType createSpezOffertKrankenType() { - return new SpezOffertKrankenType(); - } - - /** - * Create an instance of {@link CreateOfferKrankenResponse } - * - */ - public CreateOfferKrankenResponse createCreateOfferKrankenResponse() { - return new CreateOfferKrankenResponse(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenRequest } - * - */ - public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() { - return new CreateApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType createSpezAntragKrankenType() { - return new SpezAntragKrankenType(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenResponse } - * - */ - public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() { - return new CreateApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenRequest } - * - */ - public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() { - return new SubmitApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenResponse } - * - */ - public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() { - return new SubmitApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() { - return new VerkaufsproduktKrankenType(); - } - - /** - * Create an instance of {@link ProduktKrankenType } - * - */ - public ProduktKrankenType createProduktKrankenType() { - return new ProduktKrankenType(); - } - - /** - * Create an instance of {@link ElementarproduktKrankenType } - * - */ - public ElementarproduktKrankenType createElementarproduktKrankenType() { - return new ElementarproduktKrankenType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ProduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ProduktKrankenType.java deleted file mode 100644 index 7f7c834a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/ProduktKrankenType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKranken_Type", propOrder = { - "elementarprodukte", - "selbstbehalt" -}) -public class ProduktKrankenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Elementarprodukte") - protected List elementarprodukte; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the elementarprodukte property. - * - *

- * 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 set method for the elementarprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktKrankenType } - * - * - */ - public List getElementarprodukte() { - if (elementarprodukte == null) { - elementarprodukte = new ArrayList(); - } - return this.elementarprodukte; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezAntragKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezAntragKrankenType.java deleted file mode 100644 index fbbbab5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezAntragKrankenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKranken_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragKrankenType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezBerechnungKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezBerechnungKrankenType.java deleted file mode 100644 index 95c87382..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezBerechnungKrankenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKranken_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKrankenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezOffertKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezOffertKrankenType.java deleted file mode 100644 index f5bdaf1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SpezOffertKrankenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKranken_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertKrankenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java deleted file mode 100644 index e738d05f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationKrankenRequest") -public class SubmitApplicationKrankenRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java deleted file mode 100644 index dd1d52a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationKrankenResponse") -public class SubmitApplicationKrankenResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/VerkaufsproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/VerkaufsproduktKrankenType.java deleted file mode 100644 index d539fe8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/VerkaufsproduktKrankenType.java +++ /dev/null @@ -1,170 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung - * - *

Java-Klasse für VerkaufsproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Krankenprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *         <element name="Gruppe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = { - "krankenprodukte", - "zusatzprodukte", - "versichertePersonen", - "gruppe" -}) -public class VerkaufsproduktKrankenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Krankenprodukte", required = true) - protected List krankenprodukte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - protected List versichertePersonen; - @XmlElement(name = "Gruppe") - protected String gruppe; - - /** - * Gets the value of the krankenprodukte property. - * - *

- * 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 set method for the krankenprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKrankenprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKrankenType } - * - * - */ - public List getKrankenprodukte() { - if (krankenprodukte == null) { - krankenprodukte = new ArrayList(); - } - return this.krankenprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - - /** - * Ruft den Wert der gruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGruppe() { - return gruppe; - } - - /** - * Legt den Wert der gruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGruppe(String value) { - this.gruppe = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/package-info.java deleted file mode 100644 index c345274a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/kranken/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenRequestType.java deleted file mode 100644 index b662e8c1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Leben - * - *

Java-Klasse für CalculateLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateLebenRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungLebenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungLebenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenResponseType.java deleted file mode 100644 index c084ca51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CalculateLebenResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Leben-Berechnung - * - *

Java-Klasse für CalculateLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -public class CalculateLebenResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungLebenType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - public void setBerechnungsantwort(SpezBerechnungLebenType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungLebenType } - * - * - */ - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenRequestType.java deleted file mode 100644 index dfca6fc1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationLebenRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenResponseType.java deleted file mode 100644 index 67d88fcd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateApplicationLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationLebenResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenRequestType.java deleted file mode 100644 index 076c2c51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferLebenRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertLebenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - public void setOffertanfrage(SpezOffertLebenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenResponseType.java deleted file mode 100644 index 88690859..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/CreateOfferLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferLebenResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertLebenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - public void setOffertantwort(SpezOffertLebenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ObjectFactory.java deleted file mode 100644 index 916b6812..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ObjectFactory.java +++ /dev/null @@ -1,358 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest"); - private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse"); - private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest"); - private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse"); - private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest"); - private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse"); - private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest"); - private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse"); - private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateLebenRequestType } - * - */ - public CalculateLebenRequestType createCalculateLebenRequestType() { - return new CalculateLebenRequestType(); - } - - /** - * Create an instance of {@link CalculateLebenResponseType } - * - */ - public CalculateLebenResponseType createCalculateLebenResponseType() { - return new CalculateLebenResponseType(); - } - - /** - * Create an instance of {@link CreateOfferLebenRequestType } - * - */ - public CreateOfferLebenRequestType createCreateOfferLebenRequestType() { - return new CreateOfferLebenRequestType(); - } - - /** - * Create an instance of {@link CreateOfferLebenResponseType } - * - */ - public CreateOfferLebenResponseType createCreateOfferLebenResponseType() { - return new CreateOfferLebenResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenRequestType } - * - */ - public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() { - return new CreateApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenResponseType } - * - */ - public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() { - return new CreateApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenRequestType } - * - */ - public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() { - return new SubmitApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenResponseType } - * - */ - public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() { - return new SubmitApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType createVerkaufsproduktLebenType() { - return new VerkaufsproduktLebenType(); - } - - /** - * Create an instance of {@link ProduktLebenType } - * - */ - public ProduktLebenType createProduktLebenType() { - return new ProduktLebenType(); - } - - /** - * Create an instance of {@link TarifLebenType } - * - */ - public TarifLebenType createTarifLebenType() { - return new TarifLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungLebenType } - * - */ - public ZusatzversicherungLebenType createZusatzversicherungLebenType() { - return new ZusatzversicherungLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType } - * - */ - public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() { - return new ZusatzversicherungBerufsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType } - * - */ - public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() { - return new ZusatzversicherungErwerbsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType } - * - */ - public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() { - return new ZusatzversicherungPraemienuebernahmeAblebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfalltodType } - * - */ - public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() { - return new ZusatzversicherungUnfalltodType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType } - * - */ - public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() { - return new ZusatzversicherungUnfallinvaliditaetType(); - } - - /** - * Create an instance of {@link ZusatzproduktLebenType } - * - */ - public ZusatzproduktLebenType createZusatzproduktLebenType() { - return new ZusatzproduktLebenType(); - } - - /** - * Create an instance of {@link RentenoptionType } - * - */ - public RentenoptionType createRentenoptionType() { - return new RentenoptionType(); - } - - /** - * Create an instance of {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() { - return new VersicherungssummeZusatzbausteinType(); - } - - /** - * Create an instance of {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType createSpezBerechnungLebenType() { - return new SpezBerechnungLebenType(); - } - - /** - * Create an instance of {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType createSpezOffertLebenType() { - return new SpezOffertLebenType(); - } - - /** - * Create an instance of {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType createSpezAntragLebenType() { - return new SpezAntragLebenType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest") - public JAXBElement createCalculateLebenRequest(CalculateLebenRequestType value) { - return new JAXBElement(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse") - public JAXBElement createCalculateLebenResponse(CalculateLebenResponseType value) { - return new JAXBElement(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest") - public JAXBElement createCreateOfferLebenRequest(CreateOfferLebenRequestType value) { - return new JAXBElement(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse") - public JAXBElement createCreateOfferLebenResponse(CreateOfferLebenResponseType value) { - return new JAXBElement(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest") - public JAXBElement createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) { - return new JAXBElement(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse") - public JAXBElement createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) { - return new JAXBElement(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest") - public JAXBElement createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) { - return new JAXBElement(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse") - public JAXBElement createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) { - return new JAXBElement(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class) - public JAXBElement createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class) - public JAXBElement createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ProduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ProduktLebenType.java deleted file mode 100644 index 34f3610a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ProduktLebenType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktMitVpType; - - -/** - * Typ für ein Produkt in der Sparte Leben. - * - *

Java-Klasse für ProduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktLeben_Type", propOrder = { - "tarife" -}) -public class ProduktLebenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Tarife") - protected List tarife; - - /** - * Gets the value of the tarife property. - * - *

- * 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 set method for the tarife property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarife().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TarifLebenType } - * - * - */ - public List getTarife() { - if (tarife == null) { - tarife = new ArrayList(); - } - return this.tarife; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/RentenoptionType.java deleted file mode 100644 index 235b4cc2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/RentenoptionType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Rentenoption - * - *

Java-Klasse für Rentenoption_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Rentenoption_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rentenoption_Type") -public class RentenoptionType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezAntragLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezAntragLebenType.java deleted file mode 100644 index b9a0449a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezAntragLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragPersonenType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragLebenType - extends SpezAntragPersonenType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezBerechnungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezBerechnungLebenType.java deleted file mode 100644 index 379caa6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezBerechnungLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungLebenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezOffertLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezOffertLebenType.java deleted file mode 100644 index 6d375b96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SpezOffertLebenType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertLeben_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertLebenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenRequestType.java deleted file mode 100644 index 506813f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationLebenRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenResponseType.java deleted file mode 100644 index ac33ac84..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/SubmitApplicationLebenResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationLebenResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/TarifLebenType.java deleted file mode 100644 index 9e2e1b2c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/TarifLebenType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementFondsauswahlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Leben. - * - *

Java-Klasse für TarifLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
- *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
- *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifLeben_Type", propOrder = { - "garantierteAblebenssumme", - "rentenoption", - "fondsauswahl", - "zusatzbausteine" -}) -public class TarifLebenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "GarantierteAblebenssumme") - protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; - @XmlElement(name = "Rentenoption") - protected RentenoptionType rentenoption; - @XmlElement(name = "Fondsauswahl") - protected List fondsauswahl; - @XmlElement(name = "Zusatzbausteine") - protected List zusatzbausteine; - - /** - * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { - return garantierteAblebenssumme; - } - - /** - * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { - this.garantierteAblebenssumme = value; - } - - /** - * Ruft den Wert der rentenoption-Eigenschaft ab. - * - * @return - * possible object is - * {@link RentenoptionType } - * - */ - public RentenoptionType getRentenoption() { - return rentenoption; - } - - /** - * Legt den Wert der rentenoption-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RentenoptionType } - * - */ - public void setRentenoption(RentenoptionType value) { - this.rentenoption = value; - } - - /** - * Gets the value of the fondsauswahl property. - * - *

- * 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 set method for the fondsauswahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFondsauswahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementFondsauswahlType } - * - * - */ - public List getFondsauswahl() { - if (fondsauswahl == null) { - fondsauswahl = new ArrayList(); - } - return this.fondsauswahl; - } - - /** - * Gets the value of the zusatzbausteine property. - * - *

- * 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 set method for the zusatzbausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzbausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzversicherungLebenType } - * - * - */ - public List getZusatzbausteine() { - if (zusatzbausteine == null) { - zusatzbausteine = new ArrayList(); - } - return this.zusatzbausteine; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VerkaufsproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VerkaufsproduktLebenType.java deleted file mode 100644 index d6c78d0d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VerkaufsproduktLebenType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Leben - * - *

Java-Klasse für VerkaufsproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = { - "lebenProdukte", - "zusatzprodukte", - "versichertePersonen" -}) -public class VerkaufsproduktLebenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "LebenProdukte", required = true) - protected List lebenProdukte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - protected List versichertePersonen; - - /** - * Gets the value of the lebenProdukte property. - * - *

- * 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 set method for the lebenProdukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLebenProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktLebenType } - * - * - */ - public List getLebenProdukte() { - if (lebenProdukte == null) { - lebenProdukte = new ArrayList(); - } - return this.lebenProdukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java deleted file mode 100644 index 63f8ce8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AttributDezimalType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AttributDoubleType; - - -/** - * Definition einer Versicherungssumme in einem Zusatzbaustein - * - *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherungssummeZusatzbaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { - "prozentVersicherungssumme", - "betrag" -}) -public class VersicherungssummeZusatzbausteinType { - - @XmlElement(name = "ProzentVersicherungssumme") - protected AttributDoubleType prozentVersicherungssumme; - @XmlElement(name = "Betrag") - protected AttributDezimalType betrag; - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDoubleType } - * - */ - public AttributDoubleType getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDoubleType } - * - */ - public void setProzentVersicherungssumme(AttributDoubleType value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDezimalType } - * - */ - public AttributDezimalType getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDezimalType } - * - */ - public void setBetrag(AttributDezimalType value) { - this.betrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/WartefristType.java deleted file mode 100644 index b2baabb8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/WartefristType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element zur Abbildung einer Wartefrist - * - *

Java-Klasse für Wartefrist_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wartefrist_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wartefrist_Type") -public abstract class WartefristType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzproduktLebenType.java deleted file mode 100644 index 42abe830..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzproduktLebenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren - * - *

Java-Klasse für ZusatzproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktLeben_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktLeben_Type") -public class ZusatzproduktLebenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java deleted file mode 100644 index ce90ebc3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungBerufsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java deleted file mode 100644 index ec7064dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungErwerbsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungLebenType.java deleted file mode 100644 index 7f32afbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungLebenType.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZusatzproduktGenerischType; - - -/** - * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) - * - *

Java-Klasse für ZusatzversicherungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungLeben_Type") -@XmlSeeAlso({ - ZusatzversicherungBerufsunfaehigkeitType.class, - ZusatzversicherungErwerbsunfaehigkeitType.class, - ZusatzversicherungPraemienuebernahmeAblebenType.class, - ZusatzversicherungUnfalltodType.class, - ZusatzversicherungUnfallinvaliditaetType.class -}) -public class ZusatzversicherungLebenType - extends ZusatzproduktGenerischType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java deleted file mode 100644 index 3fc8058d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall - * - *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { - "wartefrist" -}) -public class ZusatzversicherungPraemienuebernahmeAblebenType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java deleted file mode 100644 index 10b62f85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet - * - *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfallinvaliditaetType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1419 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java deleted file mode 100644 index c47a3b05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod - * - *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfalltod_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { - "rest" -}) -public class ZusatzversicherungUnfalltodType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1419 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/package-info.java deleted file mode 100644 index 43ef76fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/leben/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzRequest.java deleted file mode 100644 index 202cbae9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateRechtsschutzRequest") -public class CalculateRechtsschutzRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungRechtsschutzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - public SpezBerechnungRechtsschutzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungRechtsschutzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzResponse.java deleted file mode 100644 index 22342e40..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CalculateRechtsschutzResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateRechtsschutzResponse") -public class CalculateRechtsschutzResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungRechtsschutzType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - public SpezBerechnungRechtsschutzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungRechtsschutzType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java deleted file mode 100644 index 88a3414f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzRequest") -public class CreateApplicationRechtsschutzRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java deleted file mode 100644 index d7901e51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzResponse") -public class CreateApplicationRechtsschutzResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java deleted file mode 100644 index a6b12cdb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzRequest") -public class CreateOfferRechtsschutzRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertRechtsschutzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - public SpezOffertRechtsschutzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - public void setOffertanfrage(SpezOffertRechtsschutzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java deleted file mode 100644 index a5308c0f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzResponse") -public class CreateOfferRechtsschutzResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertRechtsschutzType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - public SpezOffertRechtsschutzType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - public void setOffertantwort(SpezOffertRechtsschutzType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ElementarproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ElementarproduktRechtsschutzType.java deleted file mode 100644 index e9cbdb65..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ElementarproduktRechtsschutzType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten. - * - *

Java-Klasse für ElementarproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = { - "versInteressenRefLfNr" -}) -public class ElementarproduktRechtsschutzType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ObjectFactory.java deleted file mode 100644 index fd9967f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ObjectFactory.java +++ /dev/null @@ -1,144 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateRechtsschutzRequest } - * - */ - public CalculateRechtsschutzRequest createCalculateRechtsschutzRequest() { - return new CalculateRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungRechtsschutzType } - * - */ - public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() { - return new SpezBerechnungRechtsschutzType(); - } - - /** - * Create an instance of {@link CalculateRechtsschutzResponse } - * - */ - public CalculateRechtsschutzResponse createCalculateRechtsschutzResponse() { - return new CalculateRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzRequest } - * - */ - public CreateOfferRechtsschutzRequest createCreateOfferRechtsschutzRequest() { - return new CreateOfferRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezOffertRechtsschutzType } - * - */ - public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() { - return new SpezOffertRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzResponse } - * - */ - public CreateOfferRechtsschutzResponse createCreateOfferRechtsschutzResponse() { - return new CreateOfferRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzRequest } - * - */ - public CreateApplicationRechtsschutzRequest createCreateApplicationRechtsschutzRequest() { - return new CreateApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() { - return new SpezAntragRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzResponse } - * - */ - public CreateApplicationRechtsschutzResponse createCreateApplicationRechtsschutzResponse() { - return new CreateApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzRequest } - * - */ - public SubmitApplicationRechtsschutzRequest createSubmitApplicationRechtsschutzRequest() { - return new SubmitApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzResponse } - * - */ - public SubmitApplicationRechtsschutzResponse createSubmitApplicationRechtsschutzResponse() { - return new SubmitApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() { - return new VerkaufsproduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ProduktRechtsschutzType } - * - */ - public ProduktRechtsschutzType createProduktRechtsschutzType() { - return new ProduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ElementarproduktRechtsschutzType } - * - */ - public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() { - return new ElementarproduktRechtsschutzType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ProduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ProduktRechtsschutzType.java deleted file mode 100644 index d954703f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/ProduktRechtsschutzType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; - - -/** - * Typ für ein Produkt in der Sparte Rechtsschutz. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktRechtsschutz_Type", propOrder = { - "elementarprodukteRechtsschutz", - "versInteressenRefLfNr" -}) -public class ProduktRechtsschutzType - extends ProduktGenerischType -{ - - @XmlElement(name = "ElementarprodukteRechtsschutz") - protected List elementarprodukteRechtsschutz; - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the elementarprodukteRechtsschutz property. - * - *

- * 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 set method for the elementarprodukteRechtsschutz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukteRechtsschutz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktRechtsschutzType } - * - * - */ - public List getElementarprodukteRechtsschutz() { - if (elementarprodukteRechtsschutz == null) { - elementarprodukteRechtsschutz = new ArrayList(); - } - return this.elementarprodukteRechtsschutz; - } - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezAntragRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezAntragRechtsschutzType.java deleted file mode 100644 index f0b63e6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezAntragRechtsschutzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragRechtsschutzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java deleted file mode 100644 index 28c6bef6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungRechtsschutzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezOffertRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezOffertRechtsschutzType.java deleted file mode 100644 index b47c5e98..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SpezOffertRechtsschutzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertRechtsschutzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java deleted file mode 100644 index 959906b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzRequest") -public class SubmitApplicationRechtsschutzRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java deleted file mode 100644 index a00fe4e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzResponse") -public class SubmitApplicationRechtsschutzResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java deleted file mode 100644 index 9226ce33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Rechtsschutz - * - *

Java-Klasse für VerkaufsproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ProduktRechtsschutz_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteInteressen" -}) -public class VerkaufsproduktRechtsschutzType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteInteressen") - protected List versicherteInteressen; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktRechtsschutzType } - * - * - */ - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteInteressen property. - * - *

- * 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 set method for the versicherteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - public List getVersicherteInteressen() { - if (versicherteInteressen == null) { - versicherteInteressen = new ArrayList(); - } - return this.versicherteInteressen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/package-info.java deleted file mode 100644 index e4c82be1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/rs/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 3e687632..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index 8652fa2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 2e81ad48..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index aba0423a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 3d73c611..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index fdb94b82..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index ddf9960b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index 07a6208d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 3fa4dcef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 6ddbff62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index 03d626fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index 177592d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index d78e822a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index 59d39d12..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,98 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index 33304b45..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,407 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index 7a43e57f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index fb3f65be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index 49bc6787..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index 7d7f8efb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "selbstbehalt" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Selbstbehalt") - protected List selbstbehalt; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Gets the value of the selbstbehalt property. - * - *

- * 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 set method for the selbstbehalt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSelbstbehalt().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SelbstbehaltType } - * - * - */ - public List getSelbstbehalt() { - if (selbstbehalt == null) { - selbstbehalt = new ArrayList(); - } - return this.selbstbehalt; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index 92c2cd8d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 170ed194..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,427 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -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 at.vvo.omds.types.omds2Types.v2_14.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - protected String bauartCd; - @XmlElement(name = "DachungCd") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude") - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index f9ef7573..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index cbd8e7f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,53 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index 86151ff3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index dceb9948..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index f577a122..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index 8f44a23c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteObjekte" -}) -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteObjekte", required = true) - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index a5179864..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - protected RisikoHaushaltType risikoHaushalt; - - /** - * 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 risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 169b7022..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index 2601ea11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index e03d9852..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index cba6dc96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index b4279608..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index d3f55509..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 6b8bc7c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallRequestType.java deleted file mode 100644 index 3ff0edc5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Unfall - * - *

Java-Klasse für CalculateUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateUnfallRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungUnfallType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungUnfallType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallResponseType.java deleted file mode 100644 index 9984b545..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CalculateUnfallResponseType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Unfall-Berechnung - * - *

Java-Klasse für CalculateUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -public class CalculateUnfallResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected SpezBerechnungUnfallType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - public void setBerechnungsantwort(SpezBerechnungUnfallType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungUnfallType } - * - * - */ - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java deleted file mode 100644 index c7f1e653..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationUnfallRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java deleted file mode 100644 index c8e1c755..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationUnfallResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallRequestType.java deleted file mode 100644 index 460afc47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferUnfallRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertUnfallType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - public void setOffertanfrage(SpezOffertUnfallType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallResponseType.java deleted file mode 100644 index b5ddca8a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/CreateOfferUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferUnfallResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected SpezOffertUnfallType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - public void setOffertantwort(SpezOffertUnfallType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/LeistungsartUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/LeistungsartUnfallType.java deleted file mode 100644 index f57e1b20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/LeistungsartUnfallType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für LeistungsartUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LeistungsartUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LeistungsartUnfall_Type", propOrder = { - "selbstbehalt" -}) -public class LeistungsartUnfallType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ObjectFactory.java deleted file mode 100644 index 6309ec85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ObjectFactory.java +++ /dev/null @@ -1,259 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest"); - private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse"); - private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest"); - private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse"); - private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest"); - private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse"); - private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest"); - private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateUnfallRequestType } - * - */ - public CalculateUnfallRequestType createCalculateUnfallRequestType() { - return new CalculateUnfallRequestType(); - } - - /** - * Create an instance of {@link CalculateUnfallResponseType } - * - */ - public CalculateUnfallResponseType createCalculateUnfallResponseType() { - return new CalculateUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallRequestType } - * - */ - public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() { - return new CreateOfferUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallResponseType } - * - */ - public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() { - return new CreateOfferUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallRequestType } - * - */ - public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() { - return new CreateApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallResponseType } - * - */ - public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() { - return new CreateApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallRequestType } - * - */ - public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() { - return new SubmitApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallResponseType } - * - */ - public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() { - return new SubmitApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() { - return new VerkaufsproduktUnfallType(); - } - - /** - * Create an instance of {@link ProduktUnfallType } - * - */ - public ProduktUnfallType createProduktUnfallType() { - return new ProduktUnfallType(); - } - - /** - * Create an instance of {@link LeistungsartUnfallType } - * - */ - public LeistungsartUnfallType createLeistungsartUnfallType() { - return new LeistungsartUnfallType(); - } - - /** - * Create an instance of {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType createSpezBerechnungUnfallType() { - return new SpezBerechnungUnfallType(); - } - - /** - * Create an instance of {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType createSpezOffertUnfallType() { - return new SpezOffertUnfallType(); - } - - /** - * Create an instance of {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType createSpezAntragUnfallType() { - return new SpezAntragUnfallType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest") - public JAXBElement createCalculateUnfallRequest(CalculateUnfallRequestType value) { - return new JAXBElement(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse") - public JAXBElement createCalculateUnfallResponse(CalculateUnfallResponseType value) { - return new JAXBElement(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest") - public JAXBElement createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) { - return new JAXBElement(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse") - public JAXBElement createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) { - return new JAXBElement(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest") - public JAXBElement createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) { - return new JAXBElement(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse") - public JAXBElement createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) { - return new JAXBElement(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest") - public JAXBElement createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) { - return new JAXBElement(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse") - public JAXBElement createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) { - return new JAXBElement(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ProduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ProduktUnfallType.java deleted file mode 100644 index 8f596075..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/ProduktUnfallType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktUnfall_Type", propOrder = { - "leistungsarten", - "selbstbehalt" -}) -public class ProduktUnfallType - extends ProduktMitVpType -{ - - @XmlElement(name = "Leistungsarten") - protected List leistungsarten; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the leistungsarten property. - * - *

- * 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 set method for the leistungsarten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLeistungsarten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LeistungsartUnfallType } - * - * - */ - public List getLeistungsarten() { - if (leistungsarten == null) { - leistungsarten = new ArrayList(); - } - return this.leistungsarten; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezAntragUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezAntragUnfallType.java deleted file mode 100644 index c0a42fb2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezAntragUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezAntragUnfallType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezBerechnungUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezBerechnungUnfallType.java deleted file mode 100644 index 9a1f2f6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezBerechnungUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungUnfallType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezOffertUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezOffertUnfallType.java deleted file mode 100644 index 708dff62..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SpezOffertUnfallType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezOffertUnfallType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java deleted file mode 100644 index b7f7bb01..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationUnfallRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java deleted file mode 100644 index bf8f781a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationUnfallResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/VerkaufsproduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/VerkaufsproduktUnfallType.java deleted file mode 100644 index 6f3e1969..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/VerkaufsproduktUnfallType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Unfall - * - *

Java-Klasse für VerkaufsproduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ProduktUnfall_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { - "unfallprodukte", - "zusatzprodukte", - "versichertePersonen" -}) -public class VerkaufsproduktUnfallType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Unfallprodukte", required = true) - protected List unfallprodukte; - @XmlElement(name = "Zusatzprodukte") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - protected List versichertePersonen; - - /** - * Gets the value of the unfallprodukte property. - * - *

- * 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 set method for the unfallprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUnfallprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktUnfallType } - * - * - */ - public List getUnfallprodukte() { - if (unfallprodukte == null) { - unfallprodukte = new ArrayList(); - } - return this.unfallprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/package-info.java deleted file mode 100644 index 2d758ff1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on2antrag/unfall/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimRequest.java deleted file mode 100644 index 9770c0f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimRequest") -public class AddInformationToClaimRequest - extends CommonRequestType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimResponse.java deleted file mode 100644 index 8140e7bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/AddInformationToClaimResponse.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimResponse") -public class AddInformationToClaimResponse - extends CommonResponseType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 963e10d2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,395 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index 2cc96f4b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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_8_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index 0006cff8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @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 lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index 2fab59f6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index 0fdcb5a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageRequest.java deleted file mode 100644 index 5a96fbc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageRequest.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "eigenschaftCd", - "zusaetzlicheDeckungsauskunftsdaten" -}) -@XmlRootElement(name = "CheckCoverageRequest") -public class CheckCoverageRequest - extends CommonRequestType -{ - - @XmlElement(name = "Versicherungsnehmer") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "EigenschaftCd") - protected List eigenschaftCd; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - protected List zusaetzlicheDeckungsauskunftsdaten; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the eigenschaftCd property. - * - *

- * 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 set method for the eigenschaftCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEigenschaftCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getEigenschaftCd() { - if (eigenschaftCd == null) { - eigenschaftCd = new ArrayList(); - } - return this.eigenschaftCd; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageResponse.java deleted file mode 100644 index 1174f2ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/CheckCoverageResponse.java +++ /dev/null @@ -1,320 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Auskuenfte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "zusaetzlicheDeckungsauskunftsdaten", - "auskuenfte" -}) -@XmlRootElement(name = "CheckCoverageResponse") -public class CheckCoverageResponse - extends CommonResponseType -{ - - @XmlElement(name = "Versicherungsnehmer") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - protected List zusaetzlicheDeckungsauskunftsdaten; - @XmlElement(name = "Auskuenfte") - protected List auskuenfte; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - - /** - * Gets the value of the auskuenfte property. - * - *

- * 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 set method for the auskuenfte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuskuenfte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CheckCoverageResponse.Auskuenfte } - * - * - */ - public List getAuskuenfte() { - if (auskuenfte == null) { - auskuenfte = new ArrayList(); - } - return this.auskuenfte; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "eigenschaftCd", - "antwort" - }) - public static class Auskuenfte { - - @XmlElement(name = "EigenschaftCd", required = true) - protected String eigenschaftCd; - @XmlElement(name = "Antwort", required = true) - protected String antwort; - - /** - * Ruft den Wert der eigenschaftCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEigenschaftCd() { - return eigenschaftCd; - } - - /** - * Legt den Wert der eigenschaftCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEigenschaftCd(String value) { - this.eigenschaftCd = value; - } - - /** - * Ruft den Wert der antwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAntwort() { - return antwort; - } - - /** - * Legt den Wert der antwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAntwort(String value) { - this.antwort = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenType.java deleted file mode 100644 index a2e9019e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenType.java +++ /dev/null @@ -1,268 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentDataType; - - -/** - * Objekt Nachmeldung Schaden - * - *

Java-Klasse für ErgaenzungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betreff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchaden_Type", propOrder = { - "schadennr", - "id", - "polizzennr", - "vertragsID", - "betreff", - "schadenTxt", - "belege", - "zusaetzlicheSchadensdaten" -}) -public class ErgaenzungSchadenType { - - @XmlElement(name = "Schadennr", required = true) - protected String schadennr; - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Betreff") - protected String betreff; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "Belege") - protected List belege; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betreff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetreff() { - return betreff; - } - - /** - * Legt den Wert der betreff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetreff(String value) { - this.betreff = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenereignisType.java deleted file mode 100644 index d5b6fcdc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ErgaenzungSchadenereignisType.java +++ /dev/null @@ -1,184 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; - - -/** - * Objekt Nachmeldung zu Schadenereignis - * - *

Java-Klasse für ErgaenzungSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AnforderungsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="ErgaenzungSchaden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchadenereignis_Type", propOrder = { - "anforderungsId", - "id", - "geschaeftsfallSchadenereignis", - "zusaetzlicheSchadensereignisdaten", - "ergaenzungSchaden" -}) -public class ErgaenzungSchadenereignisType { - - @XmlElement(name = "AnforderungsId") - protected String anforderungsId; - @XmlElement(name = "Id") - protected String id; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "ErgaenzungSchaden", required = true) - protected List ergaenzungSchaden; - - /** - * Ruft den Wert der anforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnforderungsId() { - return anforderungsId; - } - - /** - * Legt den Wert der anforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnforderungsId(String value) { - this.anforderungsId = value; - } - - /** - * 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; - } - - /** - * GeschäftsfallId der Anlage des ursprünglichen Schadenereignis-Objektes - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the ergaenzungSchaden property. - * - *

- * 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 set method for the ergaenzungSchaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgaenzungSchaden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgaenzungSchadenType } - * - * - */ - public List getErgaenzungSchaden() { - if (ergaenzungSchaden == null) { - ergaenzungSchaden = new ArrayList(); - } - return this.ergaenzungSchaden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index f0edabc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index 0f095b55..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * 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; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 733c54e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 0b5c1ce1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 247eb404..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index f7068101..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/NatPersonType.java deleted file mode 100644 index e75b90c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ObjectFactory.java deleted file mode 100644 index 19a4bedf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,470 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CheckCoverageResponse } - * - */ - public CheckCoverageResponse createCheckCoverageResponse() { - return new CheckCoverageResponse(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link CheckCoverageRequest } - * - */ - public CheckCoverageRequest createCheckCoverageRequest() { - return new CheckCoverageRequest(); - } - - /** - * Create an instance of {@link CheckCoverageResponse.Auskuenfte } - * - */ - public CheckCoverageResponse.Auskuenfte createCheckCoverageResponseAuskuenfte() { - return new CheckCoverageResponse.Auskuenfte(); - } - - /** - * Create an instance of {@link SubmitReceiptRequest } - * - */ - public SubmitReceiptRequest createSubmitReceiptRequest() { - return new SubmitReceiptRequest(); - } - - /** - * Create an instance of {@link SubmitReceiptResponse } - * - */ - public SubmitReceiptResponse createSubmitReceiptResponse() { - return new SubmitReceiptResponse(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/OrtType.java deleted file mode 100644 index c8737021..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 7999a497..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index 64df9d77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 91b26cbc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenType.java deleted file mode 100644 index 1f102263..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,415 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 11fc7e25..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index e23771e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index fd65d504..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index e1e37fbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index 460ddf97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index dee909dd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,311 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @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 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 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 polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 13cb49d5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index 50966b1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index d5c8ee0a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index 45438b85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - protected String behandlerName; - @XmlElement(name = "Behandlungen") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index 0d619001..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index e022cc6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,254 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Koerperhaelfte" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}byte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Koerperteil" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="BehoerdlicheAufnahme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName", - "koerperhaelfte", - "koerperteil", - "behoerdlicheAufnahme" -}) -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - protected String diagnose; - @XmlElement(name = "BehandlerName") - protected String behandlerName; - @XmlElement(name = "Koerperhaelfte") - protected Byte koerperhaelfte; - @XmlElement(name = "Koerperteil") - protected List koerperteil; - @XmlElement(name = "BehoerdlicheAufnahme") - protected String behoerdlicheAufnahme; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Ruft den Wert der koerperhaelfte-Eigenschaft ab. - * - * @return - * possible object is - * {@link Byte } - * - */ - public Byte getKoerperhaelfte() { - return koerperhaelfte; - } - - /** - * Legt den Wert der koerperhaelfte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Byte } - * - */ - public void setKoerperhaelfte(Byte value) { - this.koerperhaelfte = value; - } - - /** - * Gets the value of the koerperteil property. - * - *

- * 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 set method for the koerperteil property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKoerperteil().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getKoerperteil() { - if (koerperteil == null) { - koerperteil = new ArrayList(); - } - return this.koerperteil; - } - - /** - * Ruft den Wert der behoerdlicheAufnahme-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehoerdlicheAufnahme() { - return behoerdlicheAufnahme; - } - - /** - * Legt den Wert der behoerdlicheAufnahme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehoerdlicheAufnahme(String value) { - this.behoerdlicheAufnahme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index 92e6dbe6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 41fc3bae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptRequest.java deleted file mode 100644 index afb66769..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptRequest.java +++ /dev/null @@ -1,250 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -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.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.DokumentDataType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ZahlwegType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds20}decimal"/>
- *         <element name="Grund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded"/>
- *         <element name="ZusaetzlicheBelegeinreichungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheBelegeinreichungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "polizzennr", - "vertragsID", - "betrag", - "grund", - "zahlweg", - "belege", - "zusaetzlicheBelegeinreichungsdaten" -}) -@XmlRootElement(name = "SubmitReceiptRequest") -public class SubmitReceiptRequest - extends CommonRequestType -{ - - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "Betrag", required = true) - protected BigDecimal betrag; - @XmlElement(name = "Grund") - protected String grund; - @XmlElement(name = "Zahlweg", required = true) - protected ZahlwegType zahlweg; - @XmlElement(name = "Belege", required = true) - protected List belege; - @XmlElement(name = "ZusaetzlicheBelegeinreichungsdaten") - protected List zusaetzlicheBelegeinreichungsdaten; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der grund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrund() { - return grund; - } - - /** - * Legt den Wert der grund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrund(String value) { - this.grund = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType } - * - */ - public ZahlwegType getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType } - * - */ - public void setZahlweg(ZahlwegType value) { - this.zahlweg = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Gets the value of the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * 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 set method for the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheBelegeinreichungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheBelegeinreichungsdatenType } - * - * - */ - public List getZusaetzlicheBelegeinreichungsdaten() { - if (zusaetzlicheBelegeinreichungsdaten == null) { - zusaetzlicheBelegeinreichungsdaten = new ArrayList(); - } - return this.zusaetzlicheBelegeinreichungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptResponse.java deleted file mode 100644 index e7365426..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/SubmitReceiptResponse.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SubmitReceiptResponse") -public class SubmitReceiptResponse - extends CommonResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java deleted file mode 100644 index 68a908d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Service zur Belegeinreichung mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheBelegeinreichungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheBelegeinreichungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheBelegeinreichungsdaten_Type") -public abstract class ZusaetzlicheBelegeinreichungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java deleted file mode 100644 index f66b016f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Anfragen zu Deckungsauskünften mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheDeckungsauskunftsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheDeckungsauskunftsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheDeckungsauskunftsdaten_Type") -public abstract class ZusaetzlicheDeckungsauskunftsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index 50efd6e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index 6403aa7f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index 1f1e7591..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/package-info.java deleted file mode 100644 index 15f9f89a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsService.java deleted file mode 100644 index ea3accfe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsService.java +++ /dev/null @@ -1,87 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_8_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-08-10T18:54:50.183+02:00 - * Generated source version: 3.5.0 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -public class OmdsService extends Service { - - public final static URL WSDL_LOCATION; - - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortImpl.java deleted file mode 100644 index a0989684..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,613 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_8_0.service; - -import java.util.logging.Logger; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.soap.MTOM; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-08-10T18:54:50.123+02:00 - * Generated source version: 3.5.0 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType") - -@MTOM(enabled = true, threshold = 1024) -public class OmdsServicePortImpl implements OmdsServicePortType { - - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitReceipt(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse submitReceipt(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitReceipt"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkClaimRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkClaimRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#checkCoverage(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse checkCoverage(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation checkCoverage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.LoginRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.LoginRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param)* - */ - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType.java deleted file mode 100644 index 5076bd37..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,308 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_8_0.service; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-08-10T18:54:50.164+02:00 - * Generated source version: 3.5.0 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_8_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_14.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -public interface OmdsServicePortType { - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - - @WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateLeben") - @WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType calculateLeben( - - @WebParam(partName = "param", name = "CalculateLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - - @WebParam(partName = "param", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - - @WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - - @WebParam(partName = "param", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitReceipt") - @WebResult(name = "SubmitReceiptResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse submitReceipt( - - @WebParam(partName = "param", name = "SubmitReceiptRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - - @WebParam(partName = "param", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - - @WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationLeben") - @WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben( - - @WebParam(partName = "param", name = "SubmitApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - - @WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimResponseType searchClaim( - - @WebParam(partName = "param", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataResponse getUserData( - - @WebParam(partName = "param", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - - @WebParam(partName = "param", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkClaimRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkCoverage") - @WebResult(name = "CheckCoverageResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse checkCoverage( - - @WebParam(partName = "param", name = "CheckCoverageRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim( - - @WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageResponse getOMDSPackage( - - @WebParam(partName = "param", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - - @WebParam(partName = "param", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - - @WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateUnfall") - @WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall( - - @WebParam(partName = "param", name = "CalculateUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationUnfall") - @WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall( - - @WebParam(partName = "param", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - - @WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - - @WebParam(partName = "param", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - - @WebParam(partName = "param", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationUnfall") - @WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall( - - @WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - - @WebParam(partName = "param", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim( - - @WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - - @WebParam(partName = "param", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType getClaim( - - @WebParam(partName = "param", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageResponse getArcImage( - - @WebParam(partName = "param", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationLeben") - @WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben( - - @WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferUnfall") - @WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall( - - @WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferLeben") - @WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben( - - @WebParam(partName = "param", name = "CreateOfferLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse login( - - @WebParam(partName = "param", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.LoginRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - - @WebParam(partName = "param", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - - @WebParam(partName = "param", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - - @WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index 645a0064..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,526 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.soap.MTOMFeature; - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-08-10T18:54:49.981+02:00 - * Generated source version: 3.5.0 - * - */ -public final class OmdsServicePortType_OmdsServicePort_Client { - - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - private OmdsServicePortType_OmdsServicePort_Client() { - } - - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - -// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); -// OmdsServicePortType port = ss.getOmdsServicePort(); - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); - - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_param); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateLeben..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType _calculateLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType _calculateLeben__return = port.calculateLeben(_calculateLeben_param); - System.out.println("calculateLeben.result=" + _calculateLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_param); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_param); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_param); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitReceipt..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest _submitReceipt_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse _submitReceipt__return = port.submitReceipt(_submitReceipt_param); - System.out.println("submitReceipt.result=" + _submitReceipt__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_param); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_param); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType _submitApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType _submitApplicationLeben__return = port.submitApplicationLeben(_submitApplicationLeben_param); - System.out.println("submitApplicationLeben.result=" + _submitApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_param); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimRequestType _searchClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_param); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataRequest _getUserData_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_param); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_param); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkCoverage..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest _checkCoverage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse _checkCoverage__return = port.checkCoverage(_checkCoverage_param); - System.out.println("checkCoverage.result=" + _checkCoverage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType _submitClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_param); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageRequest _getOMDSPackage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_param); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_param); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_param); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateUnfall..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType _calculateUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType _calculateUnfall__return = port.calculateUnfall(_calculateUnfall_param); - System.out.println("calculateUnfall.result=" + _calculateUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType _submitApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_param); - System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_param); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_param); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_param); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_param); - System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_param); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType _checkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_param); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType _getClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_param); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageRequest _getArcImage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_param); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_param); - System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferUnfall..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_param); - System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferLeben..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType _createOfferLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType _createOfferLeben__return = port.createOfferLeben(_createOfferLeben_param); - System.out.println("createOfferLeben.result=" + _createOfferLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.LoginRequestType _login_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_param); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_param); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_param); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_param = null; - try { - at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_param); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/ServiceFaultMsg.java deleted file mode 100644 index fcca9d1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,43 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.service; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.5.0 - * 2022-08-10T18:54:50.121+02:00 - * Generated source version: 3.5.0 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -public class ServiceFaultMsg extends Exception { - - private at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault faultInfo; - - public ServiceFaultMsg() { - super(); - } - - public ServiceFaultMsg(String message) { - super(message); - } - - public ServiceFaultMsg(String message, java.lang.Throwable cause) { - super(message, cause); - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault serviceFault) { - super(message); - this.faultInfo = serviceFault; - } - - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault serviceFault, java.lang.Throwable cause) { - super(message, cause); - this.faultInfo = serviceFault; - } - - public at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault getFaultInfo() { - return this.faultInfo; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcContent.java deleted file mode 100644 index f2dec0f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 3d83eb39..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 7b8ffc4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 3d1db668..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 2cfe7349..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 5be73bbc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index dce0e44a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 1e58e4ba..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index a0fad618..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 7f01cc19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 31372f90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index bab9b5b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/LoginRequestType.java deleted file mode 100644 index b84139d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index 95e853a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_14.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * 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 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; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 0839f97f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index df882557..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index e0e436ff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 701b0fc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ObjectFactory.java deleted file mode 100644 index c3899ff7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,549 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_8_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 292c420d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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 at.vvo.omds.types.omds3Types.r1_8_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 4e3c9684..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -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.XmlType; -import at.vvo.omds.types.omds3Types.r1_8_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * 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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 9bd35814..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataResponse.java deleted file mode 100644 index 4410c90a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = 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; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/package-info.java deleted file mode 100644 index ea882b30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_8_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_8_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AListenAttributType.java deleted file mode 100644 index dbafd8ac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AListenAttributType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AListenAttribut_Type", propOrder = { - "values", - "minAnz" -}) -@XmlSeeAlso({ - AttributEnumType.class, - AttributMultiEnumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AListenAttributType - extends AttributType -{ - - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der minAnz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMinAnz() { - return minAnz; - } - - /** - * Legt den Wert der minAnz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMinAnz(Integer value) { - this.minAnz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ASingleAttributType.java deleted file mode 100644 index 1fdc402a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ASingleAttributType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ASingleAttribut_Type", propOrder = { - "pflichtfeld" -}) -@XmlSeeAlso({ - AttributStringType.class, - AttributIntType.class, - AttributDezimalType.class, - AttributDoubleType.class, - AttributDatumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ASingleAttributType - extends AttributType -{ - - @XmlElement(name = "Pflichtfeld") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean pflichtfeld; - - /** - * Ruft den Wert der pflichtfeld-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isPflichtfeld() { - return pflichtfeld; - } - - /** - * Legt den Wert der pflichtfeld-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPflichtfeld(Boolean value) { - this.pflichtfeld = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index a6a3ccec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ zur Beschreibung abgelehnter Risiken - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbtretungType.java deleted file mode 100644 index 17ec619e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AbtretungType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Abtretung_Type", propOrder = { - "zessionar" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AbtretungType - extends SicherstellungType -{ - - @XmlElement(name = "Zessionar", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GlaeubigerSicherstellungType zessionar; - - /** - * Ruft den Wert der zessionar-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GlaeubigerSicherstellungType getZessionar() { - return zessionar; - } - - /** - * Legt den Wert der zessionar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZessionar(GlaeubigerSicherstellungType value) { - this.zessionar = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseArtCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseArtCdType.java deleted file mode 100644 index 3281570d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseArtCdType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für AdresseArtCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="AdresseArtCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HA"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdresseArtCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum AdresseArtCdType { - - - /** - * Hauptadresse - * - */ - HA; - - public String value() { - return name(); - } - - public static AdresseArtCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseType.java deleted file mode 100644 index 8d1c9009..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AdresseType.java +++ /dev/null @@ -1,334 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Adresse_Type", propOrder = { - "objektId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AdresseType { - - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType objektId; - @XmlAttribute(name = "Pac") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long pac; - @XmlAttribute(name = "LandesCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String landesCd; - @XmlAttribute(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String plz; - @XmlAttribute(name = "Ort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ort; - @XmlAttribute(name = "Strasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String strasse; - @XmlAttribute(name = "Hausnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String hausnr; - @XmlAttribute(name = "Zusatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zusatz; - @XmlAttribute(name = "AdressID_VU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String adressIDVU; - @XmlAttribute(name = "AdressID_Makler") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String adressIDMakler; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der pac-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getPac() { - return pac; - } - - /** - * Legt den Wert der pac-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPac(Long value) { - this.pac = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der ort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrt() { - return ort; - } - - /** - * Legt den Wert der ort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrt(String value) { - this.ort = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der hausnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getHausnr() { - return hausnr; - } - - /** - * Legt den Wert der hausnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHausnr(String value) { - this.hausnr = value; - } - - /** - * Ruft den Wert der zusatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZusatz() { - return zusatz; - } - - /** - * Legt den Wert der zusatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusatz(String value) { - this.zusatz = value; - } - - /** - * Ruft den Wert der adressIDVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAdressIDVU() { - return adressIDVU; - } - - /** - * Legt den Wert der adressIDVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAdressIDVU(String value) { - this.adressIDVU = value; - } - - /** - * Ruft den Wert der adressIDMakler-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAdressIDMakler() { - return adressIDMakler; - } - - /** - * Legt den Wert der adressIDMakler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAdressIDMakler(String value) { - this.adressIDMakler = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AgentFilterType.java deleted file mode 100644 index 8429029f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AgentFilterType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AgentFilter_Type", propOrder = { - "maklerID", - "vermnr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AgentFilterType - extends AuthorizationFilter -{ - - @XmlElement(name = "MaklerID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String maklerID; - @XmlElement(name = "Vermnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vermnr; - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Gets the value of the vermnr property. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AntragsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AntragsartType.java deleted file mode 100644 index cd38a784..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AntragsartType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Antragsart_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@XmlType(name = "Antragsart_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDatumType.java deleted file mode 100644 index 19c2c1b4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDatumType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDatum_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributDatumType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar value; - @XmlElement(name = "Default") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar _default; - @XmlElement(name = "Values") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar min; - @XmlElement(name = "Max") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(XMLGregorianCalendar value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(XMLGregorianCalendar value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(XMLGregorianCalendar value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(XMLGregorianCalendar value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDezimalType.java deleted file mode 100644 index b42feaaf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDezimalType.java +++ /dev/null @@ -1,202 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDezimal_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributDezimalType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(BigDecimal value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(BigDecimal value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(BigDecimal value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(BigDecimal value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDoubleType.java deleted file mode 100644 index 80512efc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributDoubleType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributDouble_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributDoubleType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double _default; - @XmlElement(name = "Values", type = Double.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(Double value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(Double value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(Double value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(Double value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributEnumType.java deleted file mode 100644 index 8a93f99a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributEnumType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributEnum_Type", propOrder = { - "value", - "_default" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String _default; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(String value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(String value) { - this._default = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributIntType.java deleted file mode 100644 index a4b603b1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributIntType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributInt_Type", propOrder = { - "value", - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributIntType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer _default; - @XmlElement(name = "Values", type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer max; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(Integer value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(Integer value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(Integer value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(Integer value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index 1ca0d4d8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenDatum_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMetadatenDatumType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar _default; - @XmlElement(name = "Values") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar min; - @XmlElement(name = "Max") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(XMLGregorianCalendar value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(XMLGregorianCalendar value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(XMLGregorianCalendar value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index ec487b23..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMetadatenDezimalType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(BigDecimal value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(BigDecimal value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(BigDecimal value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index 7a3a2f0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenEnum_Type", propOrder = { - "_default", - "values" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMetadatenEnumType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 8c78b291..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,170 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenInt_Type", propOrder = { - "_default", - "values", - "min", - "max" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMetadatenIntType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer _default; - @XmlElement(name = "Values", type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "Min") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer min; - @XmlElement(name = "Max") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer max; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(Integer value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der min-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMin() { - return min; - } - - /** - * Legt den Wert der min-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMin(Integer value) { - this.min = value; - } - - /** - * Ruft den Wert der max-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMax() { - return max; - } - - /** - * Legt den Wert der max-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMax(Integer value) { - this.max = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenStringType.java deleted file mode 100644 index d3651367..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,204 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadatenString_Type", propOrder = { - "_default", - "values", - "minLaenge", - "maxLaenge", - "regex" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMetadatenStringType - extends AttributMetadatenType -{ - - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String _default; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - @XmlElement(name = "MinLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer minLaenge; - @XmlElement(name = "MaxLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer maxLaenge; - @XmlElement(name = "Regex") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String regex; - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - - /** - * Ruft den Wert der minLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMinLaenge() { - return minLaenge; - } - - /** - * Legt den Wert der minLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMinLaenge(Integer value) { - this.minLaenge = value; - } - - /** - * Ruft den Wert der maxLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMaxLaenge() { - return maxLaenge; - } - - /** - * Legt den Wert der maxLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxLaenge(Integer value) { - this.maxLaenge = value; - } - - /** - * Ruft den Wert der regex-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getRegex() { - return regex; - } - - /** - * Legt den Wert der regex-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRegex(String value) { - this.regex = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenType.java deleted file mode 100644 index cf8d7cbc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMetadaten_Type", propOrder = { - "attribut", - "aenderbar", - "bezeichnung", - "beschreibungTxt" -}) -@XmlSeeAlso({ - AttributMetadatenStringType.class, - AttributMetadatenIntType.class, - AttributMetadatenDezimalType.class, - AttributMetadatenDatumType.class, - AttributMetadatenEnumType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AttributMetadatenType { - - @XmlElement(name = "Attribut", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object attribut; - @XmlElement(name = "Aenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean aenderbar; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der attribut-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getAttribut() { - return attribut; - } - - /** - * Legt den Wert der attribut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAttribut(Object value) { - this.attribut = value; - } - - /** - * Ruft den Wert der aenderbar-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isAenderbar() { - return aenderbar; - } - - /** - * Legt den Wert der aenderbar-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAenderbar(boolean value) { - this.aenderbar = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMsgType.java deleted file mode 100644 index 6e15fc64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMsgType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMsg_Type", propOrder = { - "errorType", - "errorCode", - "errorMsg" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMsgType { - - @XmlElement(name = "ErrorType", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger errorType; - @XmlElement(name = "ErrorCode") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger errorCode; - @XmlElement(name = "ErrorMsg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String errorMsg; - - /** - * Ruft den Wert der errorType-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getErrorType() { - return errorType; - } - - /** - * Legt den Wert der errorType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorType(BigInteger value) { - this.errorType = value; - } - - /** - * Ruft den Wert der errorCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getErrorCode() { - return errorCode; - } - - /** - * Legt den Wert der errorCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorCode(BigInteger value) { - this.errorCode = value; - } - - /** - * Ruft den Wert der errorMsg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErrorMsg() { - return errorMsg; - } - - /** - * Legt den Wert der errorMsg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorMsg(String value) { - this.errorMsg = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMultiEnumType.java deleted file mode 100644 index 3bfdfd2d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List _default; - @XmlElement(name = "MaxAnz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - return this._default; - } - - /** - * Ruft den Wert der maxAnz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getMaxAnz() { - return maxAnz; - } - - /** - * Legt den Wert der maxAnz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxAnz(Object value) { - this.maxAnz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributStringType.java deleted file mode 100644 index 48227c82..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributStringType.java +++ /dev/null @@ -1,235 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributString_Type", propOrder = { - "value", - "_default", - "regex", - "maxLaenge", - "minLaenge", - "values" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AttributStringType - extends ASingleAttributType -{ - - @XmlElement(name = "Value") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String value; - @XmlElement(name = "Default") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String _default; - @XmlElement(name = "Regex") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String regex; - @XmlElement(name = "MaxLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer maxLaenge; - @XmlElement(name = "MinLaenge") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer minLaenge; - @XmlElement(name = "Values") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List values; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(String value) { - this.value = value; - } - - /** - * Ruft den Wert der default-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDefault() { - return _default; - } - - /** - * Legt den Wert der default-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDefault(String value) { - this._default = value; - } - - /** - * Ruft den Wert der regex-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getRegex() { - return regex; - } - - /** - * Legt den Wert der regex-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRegex(String value) { - this.regex = value; - } - - /** - * Ruft den Wert der maxLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMaxLaenge() { - return maxLaenge; - } - - /** - * Legt den Wert der maxLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxLaenge(Integer value) { - this.maxLaenge = value; - } - - /** - * Ruft den Wert der minLaenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMinLaenge() { - return minLaenge; - } - - /** - * Legt den Wert der minLaenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMinLaenge(Integer value) { - this.minLaenge = value; - } - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributType.java deleted file mode 100644 index 9343864a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AttributType.java +++ /dev/null @@ -1,168 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Attribut_Type", propOrder = { - "aenderbar", - "bezeichnung", - "beschreibungTxt", - "msg" -}) -@XmlSeeAlso({ - ASingleAttributType.class, - AListenAttributType.class, - RaucherType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AttributType { - - @XmlElement(name = "Aenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean aenderbar; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - @XmlElement(name = "Msg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributMsgType msg; - - /** - * Ruft den Wert der aenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isAenderbar() { - return aenderbar; - } - - /** - * Legt den Wert der aenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAenderbar(Boolean value) { - this.aenderbar = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der msg-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributMsgType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributMsgType getMsg() { - return msg; - } - - /** - * Legt den Wert der msg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributMsgType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMsg(AttributMsgType value) { - this.msg = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AuthorizationFilter.java deleted file mode 100644 index ccbc6788..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungType.java deleted file mode 100644 index c1ade3b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungType.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für Autorisierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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}string" minOccurs="0"/>
- *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentType.Autorisierungen.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AutorisierungType { - - @XmlElement(name = "AutorisierungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short lfnrPerson; - @XmlElement(name = "Rolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AutorisierungsartType autorisierungsart; - - /** - * Ruft den Wert der autorisierungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAutorisierungsId() { - return autorisierungsId; - } - - /** - * Legt den Wert der autorisierungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAutorisierungsId(String value) { - this.autorisierungsId = value; - } - - /** - * Ruft den Wert der lfnrPerson-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnrPerson(short value) { - this.lfnrPerson = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRolle(String value) { - this.rolle = value; - } - - /** - * Ruft den Wert der autorisierungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AutorisierungsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AutorisierungsartType getAutorisierungsart() { - return autorisierungsart; - } - - /** - * Legt den Wert der autorisierungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AutorisierungsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAutorisierungsart(AutorisierungsartType value) { - this.autorisierungsart = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsAnforderungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsAnforderungType.java deleted file mode 100644 index d89ceacf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsAnforderungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) - * - *

Java-Klasse für AutorisierungsAnforderung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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}string" minOccurs="0"/>
- *         <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = { - "autorisierungsId", - "lfnrPerson", - "rolle", - "autorisierungsart" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AutorisierungsAnforderungType { - - @XmlElement(name = "AutorisierungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String autorisierungsId; - @XmlElement(name = "LfnrPerson") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short lfnrPerson; - @XmlElement(name = "Rolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String rolle; - @XmlElement(name = "Autorisierungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List autorisierungsart; - - /** - * Ruft den Wert der autorisierungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAutorisierungsId() { - return autorisierungsId; - } - - /** - * Legt den Wert der autorisierungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAutorisierungsId(String value) { - this.autorisierungsId = value; - } - - /** - * Ruft den Wert der lfnrPerson-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getLfnrPerson() { - return lfnrPerson; - } - - /** - * Legt den Wert der lfnrPerson-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnrPerson(short value) { - this.lfnrPerson = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRolle(String value) { - this.rolle = value; - } - - /** - * Gets the value of the autorisierungsart property. - * - *

- * 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 set method for the autorisierungsart property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungsart().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsartType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAutorisierungsart() { - if (autorisierungsart == null) { - autorisierungsart = new ArrayList(); - } - return this.autorisierungsart; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsartType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsartType.java deleted file mode 100644 index d58c1225..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/AutorisierungsartType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - * Der Typ für Autorisierungsarten - * - *

Java-Klasse für Autorisierungsart_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Autorisierungsart_Type">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Autorisierungsart_Type", propOrder = { - "value" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AutorisierungsartType { - - @XmlValue - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String value; - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(String value) { - this.value = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BankverbindungType.java deleted file mode 100644 index 18243286..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BankverbindungType.java +++ /dev/null @@ -1,166 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bankverbindung_Type", propOrder = { - "kontoinhaber", - "bank", - "bic", - "iban" -}) -@XmlSeeAlso({ - PersBankverbindungType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BankverbindungType { - - @XmlElement(name = "Kontoinhaber", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kontoinhaber; - @XmlElement(name = "Bank") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bank; - @XmlElement(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bic; - @XmlElement(name = "IBAN", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String iban; - - /** - * Ruft den Wert der kontoinhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKontoinhaber() { - return kontoinhaber; - } - - /** - * Legt den Wert der kontoinhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKontoinhaber(String value) { - this.kontoinhaber = value; - } - - /** - * Ruft den Wert der bank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBank() { - return bank; - } - - /** - * Legt den Wert der bank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBank(String value) { - this.bank = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der iban-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getIBAN() { - return iban; - } - - /** - * Legt den Wert der iban-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setIBAN(String value) { - this.iban = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BasisProduktbausteinType.java deleted file mode 100644 index 453ca7bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,405 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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="TarifId" type="{urn:omds3CommonServiceTypes-1-1-0}TarifId_Type" minOccurs="0"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Konvertierung" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *         <element name="Attribut" type="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisProduktbaustein_Type", propOrder = { - "id", - "tarifId", - "bezeichnung", - "bedingungen", - "meldungen", - "konvertierung", - "kombinationen", - "attribut" -}) -@XmlSeeAlso({ - ProduktbausteinType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class BasisProduktbausteinType { - - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String id; - @XmlElement(name = "TarifId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected TarifIdType tarifId; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - @XmlElement(name = "Bedingungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bedingungen; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - @XmlElement(name = "Konvertierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BasisProduktbausteinType.Konvertierung konvertierung; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KombinationenType kombinationen; - @XmlElement(name = "Attribut") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attribut; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der tarifId-Eigenschaft ab. - * - * @return - * possible object is - * {@link TarifIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public TarifIdType getTarifId() { - return tarifId; - } - - /** - * Legt den Wert der tarifId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TarifIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTarifId(TarifIdType value) { - this.tarifId = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - * Gets the value of the bedingungen property. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Ruft den Wert der konvertierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BasisProduktbausteinType.Konvertierung } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BasisProduktbausteinType.Konvertierung getKonvertierung() { - return konvertierung; - } - - /** - * Legt den Wert der konvertierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BasisProduktbausteinType.Konvertierung } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKonvertierung(BasisProduktbausteinType.Konvertierung value) { - this.konvertierung = value; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - - /** - * Gets the value of the attribut property. - * - *

- * 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 set method for the attribut property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttribut().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttribut() { - if (attribut == null) { - attribut = new ArrayList(); - } - return this.attribut; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "ersetztId", - "konvertierungsaktion" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Konvertierung { - - @XmlElement(name = "ErsetztId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersetztId; - @XmlElement(name = "Konvertierungsaktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KonvertierungsaktionType konvertierungsaktion; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Ruft den Wert der konvertierungsaktion-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KonvertierungsaktionType getKonvertierungsaktion() { - return konvertierungsaktion; - } - - /** - * Legt den Wert der konvertierungsaktion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKonvertierungsaktion(KonvertierungsaktionType value) { - this.konvertierungsaktion = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BerechnungsvarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BerechnungsvarianteType.java deleted file mode 100644 index 8070b614..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BerechnungsvarianteType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Berechnungsvariante_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Berechnungsvariante_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="basic"/>
- *     <enumeration value="medium"/>
- *     <enumeration value="top"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Berechnungsvariante_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 1e4dca1d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = { - "lfnr", - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BeteiligtePersonVertragType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int lfnr; - @XmlElement(name = "Person", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PersonType person; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - 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 } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPerson(PersonType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungGesetzlicheErbenType.java deleted file mode 100644 index d4ffbcc3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungGesetzlicheErbenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung gesetzliche Erben - * - *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungGesetzlicheErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungIndividuell.java deleted file mode 100644 index 1098dc53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungIndividuell.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BezugsberechtigungIndividuell complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungIndividuell", propOrder = { - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungIndividuell - extends BezugsberechtigungType -{ - - @XmlElement(name = "Beschreibung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungNamentlich.java deleted file mode 100644 index f70bf2be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungNamentlich.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BezugsberechtigungNamentlich complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungNamentlich", propOrder = { - "unwiderruflich", - "personen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungNamentlich - extends BezugsberechtigungType -{ - - @XmlElement(name = "Unwiderruflich") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean unwiderruflich; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List personen; - - /** - * Ruft den Wert der unwiderruflich-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isUnwiderruflich() { - return unwiderruflich; - } - - /** - * Legt den Wert der unwiderruflich-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUnwiderruflich(boolean value) { - this.unwiderruflich = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonNamentlichesBezugsrechtType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungTestamentarischeErbenType.java deleted file mode 100644 index 2cc0ded8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungTestamentarischeErbenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung testamentarische Erben - * - *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungTestamentarischeErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungType.java deleted file mode 100644 index 68659845..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bezugsberechtigung_Type", propOrder = { - "art" -}) -@XmlSeeAlso({ - BezugsberechtigungGesetzlicheErbenType.class, - BezugsberechtigungTestamentarischeErbenType.class, - BezugsberechtigungUeberbringerType.class, - BezugsberechtigungNamentlich.class, - BezugsberechtigungVersicherungsnehmerType.class, - BezugsberechtigungVersichertePersonType.class, - BezugsberechtigungIndividuell.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class BezugsberechtigungType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short art; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArt(short value) { - this.art = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungUeberbringerType.java deleted file mode 100644 index 1dd37f5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungUeberbringerType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Überbringer - * - *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungUeberbringer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungUeberbringer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungUeberbringerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersichertePersonType.java deleted file mode 100644 index cf2bb2e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersichertePersonType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung VersichertePerson - * - *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersichertePerson_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungVersichertePersonType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersicherungsnehmerType.java deleted file mode 100644 index 28a6794b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsberechtigungVersicherungsnehmerType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Versicherungsnehmer - * - *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsberechtigungVersicherungsnehmerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsrechtType.java deleted file mode 100644 index 62f70bf4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BezugsrechtType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. - * - *

Java-Klasse für Bezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Bezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Bezugsrecht_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BezugsrechtType { - - @XmlElement(name = "PERSON", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PERSONType person; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PERSONType getPERSON() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPERSON(PERSONType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusSystemType.java deleted file mode 100644 index 38ce53c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,171 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BonusMalusSystem_Type", propOrder = { - "bonusMalusVorversicherung", - "versicherungsgesellschaft", - "polizzennummer", - "offeneSchaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BonusMalusSystemType { - - @XmlElement(name = "BonusMalusVorversicherung", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BonusMalusVorversicherungType bonusMalusVorversicherung; - @XmlElement(name = "Versicherungsgesellschaft") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String versicherungsgesellschaft; - @XmlElement(name = "Polizzennummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennummer; - @XmlElement(name = "OffeneSchaeden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffeneSchaedenType offeneSchaeden; - - /** - * Ruft den Wert der bonusMalusVorversicherung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusVorversicherungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BonusMalusVorversicherungType getBonusMalusVorversicherung() { - return bonusMalusVorversicherung; - } - - /** - * Legt den Wert der bonusMalusVorversicherung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusVorversicherungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBonusMalusVorversicherung(BonusMalusVorversicherungType value) { - this.bonusMalusVorversicherung = value; - } - - /** - * Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVersicherungsgesellschaft() { - return versicherungsgesellschaft; - } - - /** - * Legt den Wert der versicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungsgesellschaft(String value) { - this.versicherungsgesellschaft = value; - } - - /** - * Ruft den Wert der polizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennummer() { - return polizzennummer; - } - - /** - * Legt den Wert der polizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennummer(String value) { - this.polizzennummer = value; - } - - /** - * Ruft den Wert der offeneSchaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffeneSchaedenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffeneSchaedenType getOffeneSchaeden() { - return offeneSchaeden; - } - - /** - * Legt den Wert der offeneSchaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffeneSchaedenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffeneSchaeden(OffeneSchaedenType value) { - this.offeneSchaeden = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusVorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusVorversicherungType.java deleted file mode 100644 index 1529079d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/BonusMalusVorversicherungType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für BonusMalusVorversicherung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <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>
- * 
- * - */ -@XmlType(name = "BonusMalusVorversicherung_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -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); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessRequestType.java deleted file mode 100644 index 758cf5f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessRequestType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.common.BOAProcessRequestType; - - -/** - * Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessRequest_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonProcessRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallnummer; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessResponseType.java deleted file mode 100644 index f1dda567..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonProcessResponseType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.common.BOAProcessResponseType; - - -/** - * Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind - * - *

Java-Klasse für CommonProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonProcessResponse_Type", propOrder = { - "geschaeftsfallnummer" -}) -@XmlSeeAlso({ - BOAProcessResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonProcessResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallnummer; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonRequestType.java deleted file mode 100644 index 42e2e0b3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonRequestType.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.common.ConversionProposalRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.GetApplicationDocumentRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptRequest; - - -/** - * Abstraktes RequestObjekt - * - *

Java-Klasse für CommonRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonRequest_Type", propOrder = { - "vuNr", - "clientId", - "technischeParameter", - "technischeObjekte", - "korrelationsId" -}) -@XmlSeeAlso({ - CheckClaimRequestType.class, - SubmitClaimRequestType.class, - GetClaimRequestType.class, - CommonSearchRequestType.class, - GetApplicationDocumentRequestType.class, - ConversionProposalRequest.class, - ConversionScopeRequest.class, - AddInformationToClaimRequest.class, - SubmitReceiptRequest.class, - CheckCoverageRequest.class, - CommonProcessRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "ClientId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String clientId; - @XmlElement(name = "TechnischeParameter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List technischeParameter; - @XmlElement(name = "TechnischeObjekte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List technischeObjekte; - @XmlElement(name = "KorrelationsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String korrelationsId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der clientId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getClientId() { - return clientId; - } - - /** - * Legt den Wert der clientId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setClientId(String value) { - this.clientId = value; - } - - /** - * Gets the value of the technischeParameter property. - * - *

- * 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 set method for the technischeParameter property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeParameter().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnicalKeyValueType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTechnischeParameter() { - if (technischeParameter == null) { - technischeParameter = new ArrayList(); - } - return this.technischeParameter; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - return this.technischeObjekte; - } - - /** - * Ruft den Wert der korrelationsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKorrelationsId() { - return korrelationsId; - } - - /** - * Legt den Wert der korrelationsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKorrelationsId(String value) { - this.korrelationsId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonResponseType.java deleted file mode 100644 index 875198e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonResponseType.java +++ /dev/null @@ -1,195 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.common.ConversionProposalResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.GetApplicationDocumentResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptResponse; - - -/** - * Abstraktes ResponseObjekt - * - *

Java-Klasse für CommonResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonResponse_Type", propOrder = { - "status", - "technischeObjekte", - "gestartet", - "beendet" -}) -@XmlSeeAlso({ - CheckClaimResponseType.class, - SubmitClaimResponseType.class, - GetClaimResponseType.class, - CommonSearchResponseType.class, - GetApplicationDocumentResponseType.class, - ConversionProposalResponse.class, - ConversionScopeResponse.class, - AddInformationToClaimResponse.class, - SubmitReceiptResponse.class, - CheckCoverageResponse.class, - CommonProcessResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonResponseType { - - @XmlElement(name = "Status", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ResponseStatusType status; - @XmlElement(name = "TechnischeObjekte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List technischeObjekte; - @XmlElement(name = "Gestartet") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar gestartet; - @XmlElement(name = "Beendet") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar beendet; - - /** - * Ruft den Wert der status-Eigenschaft ab. - * - * @return - * possible object is - * {@link ResponseStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ResponseStatusType getStatus() { - return status; - } - - /** - * Legt den Wert der status-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ResponseStatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setStatus(ResponseStatusType value) { - this.status = value; - } - - /** - * Gets the value of the technischeObjekte property. - * - *

- * 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 set method for the technischeObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTechnischeObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TechnischesObjektType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTechnischeObjekte() { - if (technischeObjekte == null) { - technischeObjekte = new ArrayList(); - } - return this.technischeObjekte; - } - - /** - * Ruft den Wert der gestartet-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getGestartet() { - return gestartet; - } - - /** - * Legt den Wert der gestartet-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGestartet(XMLGregorianCalendar value) { - this.gestartet = value; - } - - /** - * Ruft den Wert der beendet-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getBeendet() { - return beendet; - } - - /** - * Legt den Wert der beendet-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeendet(XMLGregorianCalendar value) { - this.beendet = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchRequestType.java deleted file mode 100644 index ee5d36db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchRequestType.java +++ /dev/null @@ -1,225 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_15.ELZeitraumType; -import at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesRequestType; - - -/** - * Abstakter Typ fuer Suchanfragen - * - *

Java-Klasse für CommonSearchRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchRequest_Type", propOrder = { - "authFilter", - "suchbegriff", - "zeitraum", - "maxResults", - "offset", - "orderBy" -}) -@XmlSeeAlso({ - GetStateChangesRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonSearchRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String suchbegriff; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ELZeitraumType zeitraum; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String orderBy; - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der suchbegriff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSuchbegriff() { - return suchbegriff; - } - - /** - * Legt den Wert der suchbegriff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSuchbegriff(String value) { - this.suchbegriff = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ELZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ELZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxResults(long value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffset(long value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchResponseType.java deleted file mode 100644 index 52683e3c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/CommonSearchResponseType.java +++ /dev/null @@ -1,118 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_9_0.on1basis.GetStateChangesResponseType; - - -/** - * Abstrakter Typ für Ergebnisse von Suchen - * - *

Java-Klasse für CommonSearchResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CommonSearchResponse_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults" -}) -@XmlSeeAlso({ - GetStateChangesResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CommonSearchResponseType - extends CommonResponseType -{ - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long totalResults; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DateianhangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DateianhangType.java deleted file mode 100644 index eb8f6527..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DateianhangType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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. - * - *

Java-Klasse für Dateianhang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Dateianhang_Type", propOrder = { - "mimetype", - "dateiType", - "dateiName", - "dateiData", - "dateiBeschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DateianhangType { - - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String mimetype; - @XmlElement(name = "DateiType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer dateiType; - @XmlElement(name = "DateiName", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dateiName; - @XmlElement(name = "DateiData", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler dateiData; - @XmlElement(name = "DateiBeschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dateiBeschreibung; - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der dateiType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDateiType() { - return dateiType; - } - - /** - * Legt den Wert der dateiType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateiType(Integer value) { - this.dateiType = value; - } - - /** - * Ruft den Wert der dateiName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDateiName() { - return dateiName; - } - - /** - * Legt den Wert der dateiName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateiName(String value) { - this.dateiName = value; - } - - /** - * Ruft den Wert der dateiData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateiData(DataHandler value) { - this.dateiData = value; - } - - /** - * Ruft den Wert der dateiBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDateiBeschreibung() { - return dateiBeschreibung; - } - - /** - * Legt den Wert der dateiBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateiBeschreibung(String value) { - this.dateiBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DatenverwendungType.java deleted file mode 100644 index 10b1ce4c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DatenverwendungType.java +++ /dev/null @@ -1,123 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Datenverwendung_Type", propOrder = { - "zustimmungZurElektrUebermittlungVorvertraglDokumente", - "elektrUebermittlungVorvertraglDokumenteEmail", - "zustimmungZurVerwendungDerDatenZuWerbezwecken" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DatenverwendungType { - - @XmlElement(name = "ZustimmungZurElektrUebermittlungVorvertraglDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean zustimmungZurElektrUebermittlungVorvertraglDokumente; - @XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String elektrUebermittlungVorvertraglDokumenteEmail; - @XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken; - - /** - * Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isZustimmungZurElektrUebermittlungVorvertraglDokumente() { - return zustimmungZurElektrUebermittlungVorvertraglDokumente; - } - - /** - * Legt den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZustimmungZurElektrUebermittlungVorvertraglDokumente(Boolean value) { - this.zustimmungZurElektrUebermittlungVorvertraglDokumente = value; - } - - /** - * Ruft den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getElektrUebermittlungVorvertraglDokumenteEmail() { - return elektrUebermittlungVorvertraglDokumenteEmail; - } - - /** - * Legt den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setElektrUebermittlungVorvertraglDokumenteEmail(String value) { - this.elektrUebermittlungVorvertraglDokumenteEmail = value; - } - - /** - * Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() { - return zustimmungZurVerwendungDerDatenZuWerbezwecken; - } - - /** - * Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) { - this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DirectionCdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DirectionCdType.java deleted file mode 100644 index a439cc22..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DirectionCdType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für DirectionCd_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="DirectionCd_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="IN"/>
- *     <enumeration value="OUT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DirectionCd_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum DirectionCdType { - - - /** - * Input-Wert - * - */ - IN, - - /** - * Output-Wert - * - */ - OUT; - - public String value() { - return name(); - } - - public static DirectionCdType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentBinaryDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentBinaryDataType.java deleted file mode 100644 index 850ef252..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentBinaryDataType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für DokumentBinaryData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentBinaryData_Type", propOrder = { - "dateiData", - "mimetype", - "groesse", - "datum", - "name" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DokumentBinaryDataType - extends DokumentDataType -{ - - @XmlElement(name = "DateiData", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler dateiData; - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long groesse; - @XmlElement(name = "Datum") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "Name") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String name; - - /** - * Ruft den Wert der dateiData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getDateiData() { - return dateiData; - } - - /** - * Legt den Wert der dateiData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateiData(DataHandler value) { - this.dateiData = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setName(String value) { - this.name = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentDataType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentDataType.java deleted file mode 100644 index d9a36259..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentDataType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für DokumentData_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DokumentData_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentData_Type") -@XmlSeeAlso({ - DokumentBinaryDataType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class DokumentDataType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentInfoType.java deleted file mode 100644 index 07e938ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentInfoType.java +++ /dev/null @@ -1,338 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.activation.DataHandler; -import javax.annotation.Generated; -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) - * - *

Java-Klasse für DokumentInfo_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *               <enumeration value="4"/>
- *             </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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentInfo_Type", propOrder = { - "content", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "referenzWeitereDokumente", - "artAusfolgung", - "unterschrift" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DokumentInfoType { - - @XmlElement(name = "Content") - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler content; - @XmlElement(name = "Name") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String name; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int documentType; - @XmlElement(name = "Mimetype") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long groesse; - @XmlElement(name = "Datum") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "ReferenzWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List referenzWeitereDokumente; - @XmlElement(name = "ArtAusfolgung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short artAusfolgung; - @XmlElement(name = "Unterschrift") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short unterschrift; - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setContent(DataHandler value) { - this.content = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Gets the value of the referenzWeitereDokumente property. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArtAusfolgung(Short value) { - this.artAusfolgung = value; - } - - /** - * Ruft den Wert der unterschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getUnterschrift() { - return unterschrift; - } - - /** - * Legt den Wert der unterschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUnterschrift(Short value) { - this.unterschrift = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentenReferenzType.java deleted file mode 100644 index c4f9060a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,287 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DokumentenReferenz_Type", propOrder = { - "id", - "name", - "documentType", - "mimetype", - "groesse", - "datum", - "objektSpezifikation", - "referenzWeitereDokumente" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DokumentenReferenzType { - - @XmlElement(name = "Id", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ElementIdType id; - @XmlElement(name = "Name", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String name; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int documentType; - @XmlElement(name = "Mimetype") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String mimetype; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long groesse; - @XmlElement(name = "Datum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar datum; - @XmlElement(name = "ObjektSpezifikation") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "ReferenzWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List referenzWeitereDokumente; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ElementIdType getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(ElementIdType value) { - this.id = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGroesse(Long value) { - this.groesse = value; - } - - /** - * Ruft den Wert der datum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDatum() { - return datum; - } - - /** - * Legt den Wert der datum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDatum(XMLGregorianCalendar value) { - this.datum = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Gets the value of the referenzWeitereDokumente property. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EintragSchluessellisteType.java deleted file mode 100644 index fb96bc05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EintragSchluesselliste_Type", propOrder = { - "text", - "schluessel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class EintragSchluessellisteType { - - @XmlElement(name = "Text", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String text; - @XmlElement(name = "Schluessel", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schluessel; - - /** - * Ruft den Wert der text-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getText() { - return text; - } - - /** - * Legt den Wert der text-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setText(String value) { - this.text = value; - } - - /** - * Ruft den Wert der schluessel-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchluessel() { - return schluessel; - } - - /** - * Legt den Wert der schluessel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchluessel(String value) { - this.schluessel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwGesDatenVNType.java deleted file mode 100644 index fff9c070..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwGesDatenVNType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Bekanntgabe Gesundheitsdaten an VN - * - *

Java-Klasse für EinwGesDatenVN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwGesDatenVN_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwGesDatenVN_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class EinwGesDatenVNType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwSprachaufzType.java deleted file mode 100644 index a31291ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwSprachaufzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Sprachaufzeichnung - * - *

Java-Klasse für EinwSprachaufz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwSprachaufz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwSprachaufz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class EinwSprachaufzType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwVerarbGesDatenType.java deleted file mode 100644 index adc18974..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwVerarbGesDatenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Verarbeitung Gesundheitsdaten - * - *

Java-Klasse für EinwVerarbGesDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwVerarbGesDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwVerarbGesDaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class EinwVerarbGesDatenType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungPersDatenType.java deleted file mode 100644 index 22988e05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungPersDatenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für EinwilligungPersDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwilligungPersDaten_Type", propOrder = { - "personRefLfnr" -}) -@XmlSeeAlso({ - EinwVerarbGesDatenType.class, - EinwGesDatenVNType.class, - EinwSprachaufzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class EinwilligungPersDatenType - extends EinwilligungType -{ - - @XmlElement(name = "PersonRefLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersonRefLfnr(int value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungType.java deleted file mode 100644 index afdd2701..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/EinwilligungType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für Einwilligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Einwilligung_Type", propOrder = { - "zustimmung", - "text" -}) -@XmlSeeAlso({ - EinwilligungPersDatenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class EinwilligungType { - - @XmlElement(name = "Zustimmung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean zustimmung; - @XmlElement(name = "Text") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String text; - - /** - * Ruft den Wert der zustimmung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isZustimmung() { - return zustimmung; - } - - /** - * Legt den Wert der zustimmung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZustimmung(Boolean value) { - this.zustimmung = value; - } - - /** - * Ruft den Wert der text-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getText() { - return text; - } - - /** - * Legt den Wert der text-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setText(String value) { - this.text = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementFondsauswahlType.java deleted file mode 100644 index e34793d7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementFondsauswahlType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ElementFondsauswahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementFondsauswahl_Type", propOrder = { - "isin", - "wkn", - "prozentanteil", - "zusaetzlicheFondsdaten", - "bezeichnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementFondsauswahlType { - - @XmlElement(name = "ISIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType isin; - @XmlElement(name = "WKN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType wkn; - @XmlElement(name = "Prozentanteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Float prozentanteil; - @XmlElement(name = "ZusaetzlicheFondsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheFondsdaten; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - - /** - * Ruft den Wert der isin-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getISIN() { - return isin; - } - - /** - * Legt den Wert der isin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setISIN(AttributEnumType value) { - this.isin = value; - } - - /** - * Ruft den Wert der wkn-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getWKN() { - return wkn; - } - - /** - * Legt den Wert der wkn-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWKN(AttributEnumType value) { - this.wkn = value; - } - - /** - * Ruft den Wert der prozentanteil-Eigenschaft ab. - * - * @return - * possible object is - * {@link Float } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Float getProzentanteil() { - return prozentanteil; - } - - /** - * Legt den Wert der prozentanteil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Float } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProzentanteil(Float value) { - this.prozentanteil = value; - } - - /** - * Gets the value of the zusaetzlicheFondsdaten property. - * - *

- * 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 set method for the zusaetzlicheFondsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheFondsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheFondsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheFondsdaten() { - if (zusaetzlicheFondsdaten == null) { - zusaetzlicheFondsdaten = new ArrayList(); - } - return this.zusaetzlicheFondsdaten; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementIdType.java deleted file mode 100644 index ca2e4a68..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementIdType.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementIdType", propOrder = { - "id", - "idValidUntil", - "idIsSingleUse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementIdType { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String id; - @XmlElement(required = true, nillable = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar idValidUntil; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean idIsSingleUse; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der idValidUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getIdValidUntil() { - return idValidUntil; - } - - /** - * Legt den Wert der idValidUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setIdValidUntil(XMLGregorianCalendar value) { - this.idValidUntil = value; - } - - /** - * Ruft den Wert der idIsSingleUse-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isIdIsSingleUse() { - return idIsSingleUse; - } - - /** - * Legt den Wert der idIsSingleUse-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setIdIsSingleUse(boolean value) { - this.idIsSingleUse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktGenerischType.java deleted file mode 100644 index ce715f81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktGenerischType.java +++ /dev/null @@ -1,207 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.ElementarproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.TarifLebenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.ElementarproduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.LeistungsartUnfallType; - - -/** - * Basistyp für ein Elementarprodukt, 2. Generation - * - *

Java-Klasse für ElementarproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ElementarproduktRechtsschutzType.class, - LeistungsartUnfallType.class, - ElementarproduktSachPrivatType.class, - TarifLebenType.class, - ElementarproduktKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ElementarproduktGenerischType - extends ElementarproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - @XmlElement(name = "Versicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal versicherungssumme; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungssumme(BigDecimal value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktType.java deleted file mode 100644 index 532085ca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ElementarproduktType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.kfz.ElementarproduktKfzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType; - - -/** - * Basistyp für ein Elementarprodukt - * - *

Java-Klasse für Elementarprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Elementarprodukt_Type", propOrder = { - "vtgBeg", - "refSicherstellungLfnr", - "zusaetzlicheElementarproduktdaten" -}) -@XmlSeeAlso({ - ElementarproduktKfzType.class, - VerkehrsrechtsschutzKfzType.class, - ElementarproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ElementarproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheElementarproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheElementarproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheElementarproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheElementarproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheElementarproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheElementarproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheElementarproduktdaten() { - if (zusaetzlicheElementarproduktdaten == null) { - zusaetzlicheElementarproduktdaten = new ArrayList(); - } - return this.zusaetzlicheElementarproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeMitAendGrundType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeMitAendGrundType.java deleted file mode 100644 index f00a9baf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeMitAendGrundType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 - * - *

Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErsatzpolizzeMitAendGrund_Type", propOrder = { - "aendGrundCd", - "aendGrundbez" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ErsatzpolizzeMitAendGrundType - extends ErsatzpolizzeType -{ - - @XmlElement(name = "AendGrundCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aendGrundCd; - @XmlElement(name = "AendGrundbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aendGrundbez; - - /** - * Ruft den Wert der aendGrundCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAendGrundCd() { - return aendGrundCd; - } - - /** - * Legt den Wert der aendGrundCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAendGrundCd(String value) { - this.aendGrundCd = value; - } - - /** - * Ruft den Wert der aendGrundbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAendGrundbez() { - return aendGrundbez; - } - - /** - * Legt den Wert der aendGrundbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAendGrundbez(String value) { - this.aendGrundbez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeType.java deleted file mode 100644 index 037cb059..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzeType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Beschreibung einer durch Konvertierung zu ersetzenden Polizze - * - *

Java-Klasse für Ersatzpolizze_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizze_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizze_Type", propOrder = { - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - ErsatzpolizzeMitAendGrundType.class, - KonvertierungsumfangVertragType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ErsatzpolizzeType { - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzenType.java deleted file mode 100644 index b7b2e620..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ersatzpolizzen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
- *         <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ersatzpolizzen_Type", propOrder = { - "ersatzpolizzennummer1", - "ersatzpolizzennummer2", - "ersatzpolizzennummer3" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ErsatzpolizzenType { - - @XmlElement(name = "Ersatzpolizzennummer1", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersatzpolizzennummer1; - @XmlElement(name = "Ersatzpolizzennummer2") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersatzpolizzennummer2; - @XmlElement(name = "Ersatzpolizzennummer3") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersatzpolizzennummer3; - - /** - * Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsatzpolizzennummer1() { - return ersatzpolizzennummer1; - } - - /** - * Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsatzpolizzennummer1(String value) { - this.ersatzpolizzennummer1 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsatzpolizzennummer2() { - return ersatzpolizzennummer2; - } - - /** - * Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsatzpolizzennummer2(String value) { - this.ersatzpolizzennummer2 = value; - } - - /** - * Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsatzpolizzennummer3() { - return ersatzpolizzennummer3; - } - - /** - * Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsatzpolizzennummer3(String value) { - this.ersatzpolizzennummer3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCANatPersonType.java deleted file mode 100644 index 834c0b3c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_NatPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_NatPersonType", propOrder = { - "usIndizien", - "usSteuerpflicht" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class FATCANatPersonType { - - @XmlElement(name = "US_Indizien") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean usIndizien; - @XmlElement(name = "US_Steuerpflicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean usSteuerpflicht; - - /** - * Ruft den Wert der usIndizien-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isUSIndizien() { - return usIndizien; - } - - /** - * Legt den Wert der usIndizien-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUSIndizien(boolean value) { - this.usIndizien = value; - } - - /** - * Ruft den Wert der usSteuerpflicht-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isUSSteuerpflicht() { - return usSteuerpflicht; - } - - /** - * Legt den Wert der usSteuerpflicht-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUSSteuerpflicht(boolean value) { - this.usSteuerpflicht = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCASonstPersonType.java deleted file mode 100644 index b87282cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_SonstPersonType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *         <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_SonstPersonType", propOrder = { - "landFirmensitz", - "giin", - "konzessionFinanzen", - "nichtFinanzielleDienstleistungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class FATCASonstPersonType { - - @XmlElement(name = "LandFirmensitz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType landFirmensitz; - @XmlElement(name = "GIIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String giin; - @XmlElement(name = "KonzessionFinanzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean konzessionFinanzen; - @XmlElement(name = "NichtFinanzielleDienstleistungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean nichtFinanzielleDienstleistungen; - - /** - * Ruft den Wert der landFirmensitz-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getLandFirmensitz() { - return landFirmensitz; - } - - /** - * Legt den Wert der landFirmensitz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLandFirmensitz(AttributEnumType value) { - this.landFirmensitz = value; - } - - /** - * Ruft den Wert der giin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGIIN() { - return giin; - } - - /** - * Legt den Wert der giin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGIIN(String value) { - this.giin = value; - } - - /** - * Ruft den Wert der konzessionFinanzen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isKonzessionFinanzen() { - return konzessionFinanzen; - } - - /** - * Legt den Wert der konzessionFinanzen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKonzessionFinanzen(boolean value) { - this.konzessionFinanzen = value; - } - - /** - * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isNichtFinanzielleDienstleistungen() { - return nichtFinanzielleDienstleistungen; - } - - /** - * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNichtFinanzielleDienstleistungen(boolean value) { - this.nichtFinanzielleDienstleistungen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCAType.java deleted file mode 100644 index 5a4e7a39..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FATCAType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FATCA_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- *         <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FATCA_Type", propOrder = { - "ustin", - "fatcaNatPerson", - "fatcaSonstPerson" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class FATCAType { - - @XmlElement(name = "US_TIN") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ustin; - @XmlElement(name = "FATCA_NatPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected FATCANatPersonType fatcaNatPerson; - @XmlElement(name = "FATCA_SonstPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected FATCASonstPersonType fatcaSonstPerson; - - /** - * Ruft den Wert der ustin-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getUSTIN() { - return ustin; - } - - /** - * Legt den Wert der ustin-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUSTIN(String value) { - this.ustin = value; - } - - /** - * Ruft den Wert der fatcaNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCANatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public FATCANatPersonType getFATCANatPerson() { - return fatcaNatPerson; - } - - /** - * Legt den Wert der fatcaNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCANatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFATCANatPerson(FATCANatPersonType value) { - this.fatcaNatPerson = value; - } - - /** - * Ruft den Wert der fatcaSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCASonstPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public FATCASonstPersonType getFATCASonstPerson() { - return fatcaSonstPerson; - } - - /** - * Legt den Wert der fatcaSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCASonstPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFATCASonstPerson(FATCASonstPersonType value) { - this.fatcaSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FahrzeugType.java deleted file mode 100644 index 02499340..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/FahrzeugType.java +++ /dev/null @@ -1,1070 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; -import javax.xml.datatype.XMLGregorianCalendar; -import at.vvo.omds.types.omds2Types.v2_15.Entsch2Type; - - -/** - * Basisklasse für alle Fahrzeuge in der Kfz-Versicherung - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Fahrzeug_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
- *       <attribute name="Marke">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="40"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Handelsbez">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="30"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="TypVarVer">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
- *       <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Nutzlast">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
- *             <totalDigits value="6"/>
- *             <fractionDigits value="0"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
- *       <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
- *       <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
- *       <attribute name="Fahrgestnr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Motornr">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="20"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="NatCode">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <minLength value="1"/>
- *             <maxLength value="26"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
- *       <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
- *       <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
- *       <attribute name="Pol_Kennz">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="12"/>
- *             <minLength value="1"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="Listenpreis" type="{urn:omds20}decimal" />
- *       <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
- *       <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
- *       <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
- *       <attribute name="Historisch" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Fahrzeug_Type", propOrder = { - "zulassungsdaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class FahrzeugType - extends VersichertesInteresseType -{ - - @XmlElement(name = "Zulassungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZulassungsdatenType zulassungsdaten; - @XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fzgArtCd; - @XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String marke; - @XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String handelsbez; - @XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String typVarVer; - @XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Entsch2Type leasingkz; - @XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer modelljahr; - @XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer leistung; - @XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer plaetze; - @XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal nutzlast; - @XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer hubraum; - @XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String antriebsArtCd; - @XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer co2Ausstoss; - @XmlAttribute(name = "CO2_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer co2WLTPWMTC; - @XmlAttribute(name = "Kraftstoffverbr_NEFZ", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal kraftstoffverbrNEFZ; - @XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal kraftstoffverbrWLTPWMTC; - @XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrgestnr; - @XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String motornr; - @XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String natCode; - @XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String verwendzweckCd; - @XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar erstzulassdat; - @XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String landesCd; - @XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polKennz; - @XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer tueren; - @XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer baujahr; - @XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer gesamtgewicht; - @XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal listenpreis; - @XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal sonderausstattung; - @XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer eigengewicht; - @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar zulassdatHalter; - @XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aufbauNatC; - @XmlAttribute(name = "Historisch", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean historisch; - - /** - * Ruft den Wert der zulassungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZulassungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZulassungsdatenType getZulassungsdaten() { - return zulassungsdaten; - } - - /** - * Legt den Wert der zulassungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZulassungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZulassungsdaten(ZulassungsdatenType value) { - this.zulassungsdaten = value; - } - - /** - * Ruft den Wert der fzgArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFzgArtCd() { - return fzgArtCd; - } - - /** - * Legt den Wert der fzgArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFzgArtCd(String value) { - this.fzgArtCd = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTypVarVer(String value) { - this.typVarVer = value; - } - - /** - * Ruft den Wert der leasingkz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Entsch2Type getLeasingkz() { - return leasingkz; - } - - /** - * Legt den Wert der leasingkz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLeasingkz(Entsch2Type value) { - this.leasingkz = value; - } - - /** - * Ruft den Wert der modelljahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getModelljahr() { - return modelljahr; - } - - /** - * Legt den Wert der modelljahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setModelljahr(Integer value) { - this.modelljahr = value; - } - - /** - * Ruft den Wert der leistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getLeistung() { - return leistung; - } - - /** - * Legt den Wert der leistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLeistung(Integer value) { - this.leistung = value; - } - - /** - * Ruft den Wert der plaetze-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getPlaetze() { - return plaetze; - } - - /** - * Legt den Wert der plaetze-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPlaetze(Integer value) { - this.plaetze = value; - } - - /** - * Ruft den Wert der nutzlast-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getNutzlast() { - return nutzlast; - } - - /** - * Legt den Wert der nutzlast-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNutzlast(BigDecimal value) { - this.nutzlast = value; - } - - /** - * Ruft den Wert der hubraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getHubraum() { - return hubraum; - } - - /** - * Legt den Wert der hubraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHubraum(Integer value) { - this.hubraum = value; - } - - /** - * Ruft den Wert der antriebsArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAntriebsArtCd() { - return antriebsArtCd; - } - - /** - * Legt den Wert der antriebsArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntriebsArtCd(String value) { - this.antriebsArtCd = value; - } - - /** - * Ruft den Wert der co2Ausstoss-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getCO2Ausstoss() { - return co2Ausstoss; - } - - /** - * Legt den Wert der co2Ausstoss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setCO2Ausstoss(Integer value) { - this.co2Ausstoss = value; - } - - /** - * Ruft den Wert der co2WLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getCO2WLTPWMTC() { - return co2WLTPWMTC; - } - - /** - * Legt den Wert der co2WLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setCO2WLTPWMTC(Integer value) { - this.co2WLTPWMTC = value; - } - - /** - * Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getKraftstoffverbrNEFZ() { - return kraftstoffverbrNEFZ; - } - - /** - * Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKraftstoffverbrNEFZ(BigDecimal value) { - this.kraftstoffverbrNEFZ = value; - } - - /** - * Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getKraftstoffverbrWLTPWMTC() { - return kraftstoffverbrWLTPWMTC; - } - - /** - * Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKraftstoffverbrWLTPWMTC(BigDecimal value) { - this.kraftstoffverbrWLTPWMTC = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der motornr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMotornr() { - return motornr; - } - - /** - * Legt den Wert der motornr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMotornr(String value) { - this.motornr = value; - } - - /** - * Ruft den Wert der natCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getNatCode() { - return natCode; - } - - /** - * Legt den Wert der natCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNatCode(String value) { - this.natCode = value; - } - - /** - * Ruft den Wert der verwendzweckCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVerwendzweckCd() { - return verwendzweckCd; - } - - /** - * Legt den Wert der verwendzweckCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerwendzweckCd(String value) { - this.verwendzweckCd = value; - } - - /** - * Ruft den Wert der erstzulassdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getErstzulassdat() { - return erstzulassdat; - } - - /** - * Legt den Wert der erstzulassdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErstzulassdat(XMLGregorianCalendar value) { - this.erstzulassdat = value; - } - - /** - * Ruft den Wert der landesCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getLandesCd() { - return landesCd; - } - - /** - * Legt den Wert der landesCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLandesCd(String value) { - this.landesCd = value; - } - - /** - * Ruft den Wert der polKennz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolKennz() { - return polKennz; - } - - /** - * Legt den Wert der polKennz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolKennz(String value) { - this.polKennz = value; - } - - /** - * Ruft den Wert der tueren-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getTueren() { - return tueren; - } - - /** - * Legt den Wert der tueren-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTueren(Integer value) { - this.tueren = value; - } - - /** - * Ruft den Wert der baujahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getBaujahr() { - return baujahr; - } - - /** - * Legt den Wert der baujahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBaujahr(Integer value) { - this.baujahr = value; - } - - /** - * Ruft den Wert der gesamtgewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getGesamtgewicht() { - return gesamtgewicht; - } - - /** - * Legt den Wert der gesamtgewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGesamtgewicht(Integer value) { - this.gesamtgewicht = value; - } - - /** - * Ruft den Wert der listenpreis-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getListenpreis() { - return listenpreis; - } - - /** - * Legt den Wert der listenpreis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setListenpreis(BigDecimal value) { - this.listenpreis = value; - } - - /** - * Ruft den Wert der sonderausstattung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getSonderausstattung() { - return sonderausstattung; - } - - /** - * Legt den Wert der sonderausstattung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSonderausstattung(BigDecimal value) { - this.sonderausstattung = value; - } - - /** - * Ruft den Wert der eigengewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getEigengewicht() { - return eigengewicht; - } - - /** - * Legt den Wert der eigengewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEigengewicht(Integer value) { - this.eigengewicht = value; - } - - /** - * Ruft den Wert der zulassdatHalter-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getZulassdatHalter() { - return zulassdatHalter; - } - - /** - * Legt den Wert der zulassdatHalter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZulassdatHalter(XMLGregorianCalendar value) { - this.zulassdatHalter = value; - } - - /** - * Ruft den Wert der aufbauNatC-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAufbauNatC() { - return aufbauNatC; - } - - /** - * Legt den Wert der aufbauNatC-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAufbauNatC(String value) { - this.aufbauNatC = value; - } - - /** - * Ruft den Wert der historisch-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isHistorisch() { - return historisch; - } - - /** - * Legt den Wert der historisch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHistorisch(Boolean value) { - this.historisch = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GMSGType.java deleted file mode 100644 index 400ccf6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GMSGType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GMSG_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- *                   <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
-     *         <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "land", - "steuernummer" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class SteuerlichAnsaessig { - - @XmlElement(name = "Land", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType land; - @XmlElement(name = "Steuernummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributStringType steuernummer; - - /** - * Ruft den Wert der land-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getLand() { - return land; - } - - /** - * Legt den Wert der land-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLand(AttributEnumType value) { - this.land = value; - } - - /** - * Ruft den Wert der steuernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributStringType getSteuernummer() { - return steuernummer; - } - - /** - * Legt den Wert der steuernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSteuernummer(AttributStringType value) { - this.steuernummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GeschaeftsobjektArtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GeschaeftsobjektArtType.java deleted file mode 100644 index b65df21b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GeschaeftsobjektArtType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für GeschaeftsobjektArt_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="GeschaeftsobjektArt_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VTG"/>
- *     <enumeration value="SC"/>
- *     <enumeration value="AN"/>
- *     <enumeration value="IB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GeschaeftsobjektArt_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum GeschaeftsobjektArtType { - - - /** - * Vertrag - * - */ - VTG, - - /** - * Schaden - * - */ - SC, - - /** - * Antrag - * - */ - AN, - - /** - * Interventionsbericht - * - */ - IB; - - public String value() { - return name(); - } - - public static GeschaeftsobjektArtType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index 86be9371..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GlaeubigerSicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = { - "institut", - "plz", - "strasse", - "vertragsnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GlaeubigerSicherstellungType { - - @XmlElement(name = "Institut", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String institut; - @XmlElement(name = "PLZ", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String plz; - @XmlElement(name = "Strasse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String strasse; - @XmlElement(name = "Vertragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsnummer; - - /** - * Ruft den Wert der institut-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getInstitut() { - return institut; - } - - /** - * Legt den Wert der institut-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setInstitut(String value) { - this.institut = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der strasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getStrasse() { - return strasse; - } - - /** - * Legt den Wert der strasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setStrasse(String value) { - this.strasse = value; - } - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationType.java deleted file mode 100644 index e7007f6b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 eine Kombination von Produktbaustein-Ids - * - *

Java-Klasse für Kombination_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombination_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TarifId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombination_Type", propOrder = { - "tarifids" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KombinationType { - - @XmlElement(name = "TarifId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List tarifids; - - /** - *

Die Liste der zulässigen Baustein-Ids.

- * Gets the value of the tarifids property. - * - *

- * 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 set method for the tarifids property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarifids().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTarifids() { - if (tarifids == null) { - tarifids = new ArrayList(); - } - return this.tarifids; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationenType.java deleted file mode 100644 index 0bc57f9f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KombinationenType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion. - * - *

Java-Klasse für Kombinationen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kombinationen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="alle" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="zulaessige" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kombinationen_Type", propOrder = { - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KombinationenType { - - @XmlElement(name = "Kombination") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List kombinationen; - @XmlAttribute(name = "alle", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean alle; - @XmlAttribute(name = "zulaessige", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean zulaessige; - - /** - *

Die Liste der zulässigen Kombinationen.

- * Gets the value of the kombinationen property. - * - *

- * 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 set method for the kombinationen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKombinationen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KombinationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKombinationen() { - if (kombinationen == null) { - kombinationen = new ArrayList(); - } - return this.kombinationen; - } - - /** - * Ruft den Wert der alle-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isAlle() { - return alle; - } - - /** - * Legt den Wert der alle-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAlle(boolean value) { - this.alle = value; - } - - /** - * Ruft den Wert der zulaessige-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isZulaessige() { - if (zulaessige == null) { - return true; - } else { - return zulaessige; - } - } - - /** - * Legt den Wert der zulaessige-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZulaessige(Boolean value) { - this.zulaessige = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KontierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KontierungType.java deleted file mode 100644 index bd1dd4ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KontierungType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden, insbesondere - * wenn mehrere Vermittler an dem Vertrag beteiligt werden sollen. In der Regel wird die Aufteilung für Abschluss-, Folge- und Betreuungsprovision über alle Vermittler je Kategorie 100 Prozent ergeben. - * Es gibt aber auch Fälle, in denen die prozentuale Aufteilung nicht mit dem Antrag übermittelt wird, sondern an anderer Stelle festgelegt wird. Es sollen dann nur die beteiligten Vermittler übermittelt werden. - * Daher können die prozentualen Angaben ab Version 1.9 auch entfallen. - * - * - *

Java-Klasse für Kontierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kontierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kontierung_Type", propOrder = { - "vermittlernummer", - "vermittlername", - "abschluss", - "folge", - "betreuung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KontierungType { - - @XmlElement(name = "Vermittlernummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vermittlernummer; - @XmlElement(name = "Vermittlername") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vermittlername; - @XmlElement(name = "Abschluss") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger abschluss; - @XmlElement(name = "Folge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger folge; - @XmlElement(name = "Betreuung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger betreuung; - - /** - * Ruft den Wert der vermittlernummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVermittlernummer() { - return vermittlernummer; - } - - /** - * Legt den Wert der vermittlernummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVermittlernummer(String value) { - this.vermittlernummer = value; - } - - /** - * Ruft den Wert der vermittlername-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVermittlername() { - return vermittlername; - } - - /** - * Legt den Wert der vermittlername-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVermittlername(String value) { - this.vermittlername = value; - } - - /** - * Ruft den Wert der abschluss-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getAbschluss() { - return abschluss; - } - - /** - * Legt den Wert der abschluss-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbschluss(BigInteger value) { - this.abschluss = value; - } - - /** - * Ruft den Wert der folge-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getFolge() { - return folge; - } - - /** - * Legt den Wert der folge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFolge(BigInteger value) { - this.folge = value; - } - - /** - * Ruft den Wert der betreuung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getBetreuung() { - return betreuung; - } - - /** - * Legt den Wert der betreuung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetreuung(BigInteger value) { - this.betreuung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungBausteinType.java deleted file mode 100644 index 3ae96803..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungBausteinType.java +++ /dev/null @@ -1,212 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Allgemeiner Typ um die Behandlung der Unterbausteine in der Konvertierung zu spezifizieren - * - *

Java-Klasse für KonvertierungBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungBaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Bezeichnung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungBaustein_Type", propOrder = { - "ersetztId", - "antragsId", - "bezeichnung", - "zulaessigeAktionen", - "gewaehlteAktion" -}) -@XmlSeeAlso({ - KonvertierungProduktBausteinType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungBausteinType { - - @XmlElement(name = "ErsetztId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersetztId; - @XmlElement(name = "AntragsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String antragsId; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - @XmlElement(name = "ZulaessigeAktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zulaessigeAktionen; - @XmlElement(name = "GewaehlteAktion") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KonvertierungsaktionType gewaehlteAktion; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Ruft den Wert der antragsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAntragsId() { - return antragsId; - } - - /** - * Legt den Wert der antragsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsId(String value) { - this.antragsId = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - *

Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - * Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - * Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

- * Gets the value of the zulaessigeAktionen property. - * - *

- * 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 set method for the zulaessigeAktionen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeAktionen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsaktionType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZulaessigeAktionen() { - if (zulaessigeAktionen == null) { - zulaessigeAktionen = new ArrayList(); - } - return this.zulaessigeAktionen; - } - - /** - * Ruft den Wert der gewaehlteAktion-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KonvertierungsaktionType getGewaehlteAktion() { - return gewaehlteAktion; - } - - /** - * Legt den Wert der gewaehlteAktion-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsaktionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGewaehlteAktion(KonvertierungsaktionType value) { - this.gewaehlteAktion = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungProduktBausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungProduktBausteinType.java deleted file mode 100644 index 5fcd889d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungProduktBausteinType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ableitung für die Produktebene (Ebene 2) mit der zusätzlichen Möglichkeit die Sparte zu signalisieren - * - *

Java-Klasse für KonvertierungProduktBaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungProduktBaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type">
- *       <sequence>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungProduktBaustein_Type", propOrder = { - "spartenCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungProduktBausteinType - extends KonvertierungBausteinType -{ - - @XmlElement(name = "SpartenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String spartenCd; - - /** - * Ruft den Wert der spartenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSpartenCd() { - return spartenCd; - } - - /** - * Legt den Wert der spartenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSpartenCd(String value) { - this.spartenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionBelassenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionBelassenType.java deleted file mode 100644 index 8066af19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionBelassenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag) - * - *

Java-Klasse für KonvertierungsaktionBelassen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionBelassen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionBelassen_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungsaktionBelassenType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionStornoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionStornoType.java deleted file mode 100644 index d6f6adfa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionStornoType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen) - * - *

Java-Klasse für KonvertierungsaktionStorno_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionStorno_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionStorno_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungsaktionStornoType - extends KonvertierungsaktionType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionType.java deleted file mode 100644 index d0fc4e42..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Aktion für einen Baustein - * - *

Java-Klasse für Konvertierungsaktion_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsaktion_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsaktion_Type", propOrder = { - "art" -}) -@XmlSeeAlso({ - KonvertierungsaktionBelassenType.class, - KonvertierungsaktionUebernehmenType.class, - KonvertierungsaktionStornoType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class KonvertierungsaktionType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String art; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArt(String value) { - this.art = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionUebernehmenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionUebernehmenType.java deleted file mode 100644 index 26faa461..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsaktionUebernehmenType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen) - * - *

Java-Klasse für KonvertierungsaktionUebernehmen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsaktionUebernehmen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type">
- *       <sequence>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsaktionUebernehmen_Type", propOrder = { - "bausteine", - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungsaktionUebernehmenType - extends KonvertierungsaktionType -{ - - @XmlElement(name = "Baustein") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bausteine; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KombinationenType kombinationen; - - /** - *

Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungBausteinType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsumfangVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsumfangVertragType.java deleted file mode 100644 index 05c4a420..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KonvertierungsumfangVertragType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag - * - *

Java-Klasse für KonvertierungsumfangVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KonvertierungsumfangVertrag_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
- *       <sequence>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungProduktBaustein_Type" maxOccurs="unbounded"/>
- *         <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KonvertierungsumfangVertrag_Type", propOrder = { - "bezeichnung", - "bausteine", - "kombinationen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungsumfangVertragType - extends ErsatzpolizzeType -{ - - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bezeichnung; - @XmlElement(name = "Baustein", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bausteine; - @XmlElement(name = "Kombinationen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KombinationenType kombinationen; - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(String value) { - this.bezeichnung = value; - } - - /** - *

Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the bausteine property. - * - *

- * 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 set method for the bausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungProduktBausteinType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBausteine() { - if (bausteine == null) { - bausteine = new ArrayList(); - } - return this.bausteine; - } - - /** - * Ruft den Wert der kombinationen-Eigenschaft ab. - * - * @return - * possible object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KombinationenType getKombinationen() { - return kombinationen; - } - - /** - * Legt den Wert der kombinationen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KombinationenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKombinationen(KombinationenType value) { - this.kombinationen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KostenFixOderProzentType.java deleted file mode 100644 index 76227b9a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; - - -/** - * Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KostenFixOderProzent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <choice>
- *           <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- *           <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KostenFixOderProzent_Type", propOrder = { - "absoluterBetrag", - "prozentVs" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KostenFixOderProzentType { - - @XmlElement(name = "AbsoluterBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal absoluterBetrag; - @XmlElement(name = "ProzentVs") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short prozentVs; - - /** - * Ruft den Wert der absoluterBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getAbsoluterBetrag() { - return absoluterBetrag; - } - - /** - * Legt den Wert der absoluterBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbsoluterBetrag(BigDecimal value) { - this.absoluterBetrag = value; - } - - /** - * Ruft den Wert der prozentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getProzentVs() { - return prozentVs; - } - - /** - * Legt den Wert der prozentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProzentVs(Short value) { - this.prozentVs = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KreditkarteType.java deleted file mode 100644 index c50ba102..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/KreditkarteType.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Kreditkarte_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pruefziffer" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- *             <totalDigits value="3"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufMonat" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *       <attribute name="AblaufJahr" use="required">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *             <totalDigits value="2"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Kreditkarte_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KreditkarteType { - - @XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gesellschaft; - @XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kartennummer; - @XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String inhaber; - @XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long pruefziffer; - @XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short ablaufMonat; - @XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short ablaufJahr; - - /** - * Ruft den Wert der gesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGesellschaft() { - return gesellschaft; - } - - /** - * Legt den Wert der gesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGesellschaft(String value) { - this.gesellschaft = value; - } - - /** - * Ruft den Wert der kartennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKartennummer() { - return kartennummer; - } - - /** - * Legt den Wert der kartennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKartennummer(String value) { - this.kartennummer = value; - } - - /** - * Ruft den Wert der inhaber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getInhaber() { - return inhaber; - } - - /** - * Legt den Wert der inhaber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setInhaber(String value) { - this.inhaber = value; - } - - /** - * Ruft den Wert der pruefziffer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getPruefziffer() { - return pruefziffer; - } - - /** - * Legt den Wert der pruefziffer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPruefziffer(long value) { - this.pruefziffer = value; - } - - /** - * Ruft den Wert der ablaufMonat-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getAblaufMonat() { - return ablaufMonat; - } - - /** - * Legt den Wert der ablaufMonat-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAblaufMonat(short value) { - this.ablaufMonat = value; - } - - /** - * Ruft den Wert der ablaufJahr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getAblaufJahr() { - return ablaufJahr; - } - - /** - * Legt den Wert der ablaufJahr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAblaufJahr(short value) { - this.ablaufJahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/LegitimationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/LegitimationType.java deleted file mode 100644 index f7394d77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/LegitimationType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELLegitimationType; - - -/** - * Daten zur Legitimation des Antragstellers bzw. Kunden - * - *

Java-Klasse für Legitimation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Legitimation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}EL-Legitimation_Type">
- *       <attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Legitimation_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class LegitimationType - extends ELLegitimationType -{ - - @XmlAttribute(name = "AusstellendesLand", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ausstellendesLand; - - /** - * Ruft den Wert der ausstellendesLand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAusstellendesLand() { - return ausstellendesLand; - } - - /** - * Legt den Wert der ausstellendesLand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAusstellendesLand(String value) { - this.ausstellendesLand = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjectFactory.java deleted file mode 100644 index ee310869..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjectFactory.java +++ /dev/null @@ -1,939 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault"); - private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd"); - private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId"); - private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person"); - private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link GMSGType } - * - */ - public GMSGType createGMSGType() { - return new GMSGType(); - } - - /** - * Create an instance of {@link ZahlwegType } - * - */ - public ZahlwegType createZahlwegType() { - return new ZahlwegType(); - } - - /** - * Create an instance of {@link ProzessDokumentType } - * - */ - public ProzessDokumentType createProzessDokumentType() { - return new ProzessDokumentType(); - } - - /** - * Create an instance of {@link TechnicalKeyValueType } - * - */ - public TechnicalKeyValueType createTechnicalKeyValueType() { - return new TechnicalKeyValueType(); - } - - /** - * Create an instance of {@link ObjektIdType } - * - */ - public ObjektIdType createObjektIdType() { - return new ObjektIdType(); - } - - /** - * Create an instance of {@link ResponseStatusType } - * - */ - public ResponseStatusType createResponseStatusType() { - return new ResponseStatusType(); - } - - /** - * Create an instance of {@link DokumentInfoType } - * - */ - public DokumentInfoType createDokumentInfoType() { - return new DokumentInfoType(); - } - - /** - * Create an instance of {@link DateianhangType } - * - */ - public DateianhangType createDateianhangType() { - return new DateianhangType(); - } - - /** - * Create an instance of {@link PersonType } - * - */ - public PersonType createPersonType() { - return new PersonType(); - } - - /** - * Create an instance of {@link ServiceFault } - * - */ - public ServiceFault createServiceFault() { - return new ServiceFault(); - } - - /** - * Create an instance of {@link AdresseType } - * - */ - public AdresseType createAdresseType() { - return new AdresseType(); - } - - /** - * Create an instance of {@link AgentFilterType } - * - */ - public AgentFilterType createAgentFilterType() { - return new AgentFilterType(); - } - - /** - * Create an instance of {@link ElementIdType } - * - */ - public ElementIdType createElementIdType() { - return new ElementIdType(); - } - - /** - * Create an instance of {@link Referenz } - * - */ - public Referenz createReferenz() { - return new Referenz(); - } - - /** - * Create an instance of {@link LegitimationType } - * - */ - public LegitimationType createLegitimationType() { - return new LegitimationType(); - } - - /** - * Create an instance of {@link DokumentBinaryDataType } - * - */ - public DokumentBinaryDataType createDokumentBinaryDataType() { - return new DokumentBinaryDataType(); - } - - /** - * Create an instance of {@link AutorisierungType } - * - */ - public AutorisierungType createAutorisierungType() { - return new AutorisierungType(); - } - - /** - * Create an instance of {@link AutorisierungsAnforderungType } - * - */ - public AutorisierungsAnforderungType createAutorisierungsAnforderungType() { - return new AutorisierungsAnforderungType(); - } - - /** - * Create an instance of {@link AutorisierungsartType } - * - */ - public AutorisierungsartType createAutorisierungsartType() { - return new AutorisierungsartType(); - } - - /** - * Create an instance of {@link ProzessDokRequirementType } - * - */ - public ProzessDokRequirementType createProzessDokRequirementType() { - return new ProzessDokRequirementType(); - } - - /** - * Create an instance of {@link ProzessDokToReturnType } - * - */ - public ProzessDokToReturnType createProzessDokToReturnType() { - return new ProzessDokToReturnType(); - } - - /** - * Create an instance of {@link ProzessDokHandoutType } - * - */ - public ProzessDokHandoutType createProzessDokHandoutType() { - return new ProzessDokHandoutType(); - } - - /** - * Create an instance of {@link KontierungType } - * - */ - public KontierungType createKontierungType() { - return new KontierungType(); - } - - /** - * Create an instance of {@link KombinationenType } - * - */ - public KombinationenType createKombinationenType() { - return new KombinationenType(); - } - - /** - * Create an instance of {@link KombinationType } - * - */ - public KombinationType createKombinationType() { - return new KombinationType(); - } - - /** - * Create an instance of {@link ZusatzproduktGenerischType } - * - */ - public ZusatzproduktGenerischType createZusatzproduktGenerischType() { - return new ZusatzproduktGenerischType(); - } - - /** - * Create an instance of {@link BeteiligtePersonVertragType } - * - */ - public BeteiligtePersonVertragType createBeteiligtePersonVertragType() { - return new BeteiligtePersonVertragType(); - } - - /** - * Create an instance of {@link PraemieType } - * - */ - public PraemieType createPraemieType() { - return new PraemieType(); - } - - /** - * Create an instance of {@link VersicherungssteuerType } - * - */ - public VersicherungssteuerType createVersicherungssteuerType() { - return new VersicherungssteuerType(); - } - - /** - * Create an instance of {@link VertragspersonType } - * - */ - public VertragspersonType createVertragspersonType() { - return new VertragspersonType(); - } - - /** - * Create an instance of {@link VinkulierungType } - * - */ - public VinkulierungType createVinkulierungType() { - return new VinkulierungType(); - } - - /** - * Create an instance of {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType createVinkularglaeubigerType() { - return new VinkularglaeubigerType(); - } - - /** - * Create an instance of {@link BezugsrechtType } - * - */ - public BezugsrechtType createBezugsrechtType() { - return new BezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType } - * - */ - public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() { - return new BezugsberechtigungGesetzlicheErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType } - * - */ - public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() { - return new BezugsberechtigungTestamentarischeErbenType(); - } - - /** - * Create an instance of {@link BezugsberechtigungUeberbringerType } - * - */ - public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() { - return new BezugsberechtigungUeberbringerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungNamentlich } - * - */ - public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() { - return new BezugsberechtigungNamentlich(); - } - - /** - * Create an instance of {@link PersonNamentlichesBezugsrechtType } - * - */ - public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() { - return new PersonNamentlichesBezugsrechtType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType } - * - */ - public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() { - return new BezugsberechtigungVersicherungsnehmerType(); - } - - /** - * Create an instance of {@link BezugsberechtigungVersichertePersonType } - * - */ - public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() { - return new BezugsberechtigungVersichertePersonType(); - } - - /** - * Create an instance of {@link BezugsberechtigungIndividuell } - * - */ - public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() { - return new BezugsberechtigungIndividuell(); - } - - /** - * Create an instance of {@link BonusMalusSystemType } - * - */ - public BonusMalusSystemType createBonusMalusSystemType() { - return new BonusMalusSystemType(); - } - - /** - * Create an instance of {@link OffeneSchaedenType } - * - */ - public OffeneSchaedenType createOffeneSchaedenType() { - return new OffeneSchaedenType(); - } - - /** - * Create an instance of {@link OffenerSchadenType } - * - */ - public OffenerSchadenType createOffenerSchadenType() { - return new OffenerSchadenType(); - } - - /** - * Create an instance of {@link VorversicherungenImplType } - * - */ - public VorversicherungenImplType createVorversicherungenImplType() { - return new VorversicherungenImplType(); - } - - /** - * Create an instance of {@link VorversicherungType } - * - */ - public VorversicherungType createVorversicherungType() { - return new VorversicherungType(); - } - - /** - * Create an instance of {@link VorversicherungenDetailType } - * - */ - public VorversicherungenDetailType createVorversicherungenDetailType() { - return new VorversicherungenDetailType(); - } - - /** - * Create an instance of {@link DatenverwendungType } - * - */ - public DatenverwendungType createDatenverwendungType() { - return new DatenverwendungType(); - } - - /** - * Create an instance of {@link ErsatzpolizzenType } - * - */ - public ErsatzpolizzenType createErsatzpolizzenType() { - return new ErsatzpolizzenType(); - } - - /** - * Create an instance of {@link ErsatzpolizzeMitAendGrundType } - * - */ - public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() { - return new ErsatzpolizzeMitAendGrundType(); - } - - /** - * Create an instance of {@link KonvertierungsumfangVertragType } - * - */ - public KonvertierungsumfangVertragType createKonvertierungsumfangVertragType() { - return new KonvertierungsumfangVertragType(); - } - - /** - * Create an instance of {@link KonvertierungBausteinType } - * - */ - public KonvertierungBausteinType createKonvertierungBausteinType() { - return new KonvertierungBausteinType(); - } - - /** - * Create an instance of {@link KonvertierungProduktBausteinType } - * - */ - public KonvertierungProduktBausteinType createKonvertierungProduktBausteinType() { - return new KonvertierungProduktBausteinType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionBelassenType } - * - */ - public KonvertierungsaktionBelassenType createKonvertierungsaktionBelassenType() { - return new KonvertierungsaktionBelassenType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionUebernehmenType } - * - */ - public KonvertierungsaktionUebernehmenType createKonvertierungsaktionUebernehmenType() { - return new KonvertierungsaktionUebernehmenType(); - } - - /** - * Create an instance of {@link KonvertierungsaktionStornoType } - * - */ - public KonvertierungsaktionStornoType createKonvertierungsaktionStornoType() { - return new KonvertierungsaktionStornoType(); - } - - /** - * Create an instance of {@link ZahlungsdatenType } - * - */ - public ZahlungsdatenType createZahlungsdatenType() { - return new ZahlungsdatenType(); - } - - /** - * Create an instance of {@link KreditkarteType } - * - */ - public KreditkarteType createKreditkarteType() { - return new KreditkarteType(); - } - - /** - * Create an instance of {@link BankverbindungType } - * - */ - public BankverbindungType createBankverbindungType() { - return new BankverbindungType(); - } - - /** - * Create an instance of {@link PersBankverbindungType } - * - */ - public PersBankverbindungType createPersBankverbindungType() { - return new PersBankverbindungType(); - } - - /** - * Create an instance of {@link VersichertePersonType } - * - */ - public VersichertePersonType createVersichertePersonType() { - return new VersichertePersonType(); - } - - /** - * Create an instance of {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType createRisikoNatPersonType() { - return new RisikoNatPersonType(); - } - - /** - * Create an instance of {@link FahrzeugType } - * - */ - public FahrzeugType createFahrzeugType() { - return new FahrzeugType(); - } - - /** - * Create an instance of {@link ZulassungsdatenType } - * - */ - public ZulassungsdatenType createZulassungsdatenType() { - return new ZulassungsdatenType(); - } - - /** - * Create an instance of {@link VersicherteLiegenschaftType } - * - */ - public VersicherteLiegenschaftType createVersicherteLiegenschaftType() { - return new VersicherteLiegenschaftType(); - } - - /** - * Create an instance of {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType createKostenFixOderProzentType() { - return new KostenFixOderProzentType(); - } - - /** - * Create an instance of {@link SelbstbehaltType } - * - */ - public SelbstbehaltType createSelbstbehaltType() { - return new SelbstbehaltType(); - } - - /** - * Create an instance of {@link UploadDokumentType } - * - */ - public UploadDokumentType createUploadDokumentType() { - return new UploadDokumentType(); - } - - /** - * Create an instance of {@link DokumentenReferenzType } - * - */ - public DokumentenReferenzType createDokumentenReferenzType() { - return new DokumentenReferenzType(); - } - - /** - * Create an instance of {@link ZeitraumType } - * - */ - public ZeitraumType createZeitraumType() { - return new ZeitraumType(); - } - - /** - * Create an instance of {@link PolizzenObjektSpezifikationType } - * - */ - public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() { - return new PolizzenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link SchadenObjektSpezifikationType } - * - */ - public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() { - return new SchadenObjektSpezifikationType(); - } - - /** - * Create an instance of {@link AttributMsgType } - * - */ - public AttributMsgType createAttributMsgType() { - return new AttributMsgType(); - } - - /** - * Create an instance of {@link AttributMetadatenStringType } - * - */ - public AttributMetadatenStringType createAttributMetadatenStringType() { - return new AttributMetadatenStringType(); - } - - /** - * Create an instance of {@link AttributMetadatenIntType } - * - */ - public AttributMetadatenIntType createAttributMetadatenIntType() { - return new AttributMetadatenIntType(); - } - - /** - * Create an instance of {@link AttributMetadatenDezimalType } - * - */ - public AttributMetadatenDezimalType createAttributMetadatenDezimalType() { - return new AttributMetadatenDezimalType(); - } - - /** - * Create an instance of {@link AttributMetadatenDatumType } - * - */ - public AttributMetadatenDatumType createAttributMetadatenDatumType() { - return new AttributMetadatenDatumType(); - } - - /** - * Create an instance of {@link AttributMetadatenEnumType } - * - */ - public AttributMetadatenEnumType createAttributMetadatenEnumType() { - return new AttributMetadatenEnumType(); - } - - /** - * Create an instance of {@link EintragSchluessellisteType } - * - */ - public EintragSchluessellisteType createEintragSchluessellisteType() { - return new EintragSchluessellisteType(); - } - - /** - * Create an instance of {@link AttributStringType } - * - */ - public AttributStringType createAttributStringType() { - return new AttributStringType(); - } - - /** - * Create an instance of {@link AttributIntType } - * - */ - public AttributIntType createAttributIntType() { - return new AttributIntType(); - } - - /** - * Create an instance of {@link AttributDezimalType } - * - */ - public AttributDezimalType createAttributDezimalType() { - return new AttributDezimalType(); - } - - /** - * Create an instance of {@link AttributDoubleType } - * - */ - public AttributDoubleType createAttributDoubleType() { - return new AttributDoubleType(); - } - - /** - * Create an instance of {@link AttributDatumType } - * - */ - public AttributDatumType createAttributDatumType() { - return new AttributDatumType(); - } - - /** - * Create an instance of {@link AttributEnumType } - * - */ - public AttributEnumType createAttributEnumType() { - return new AttributEnumType(); - } - - /** - * Create an instance of {@link AttributMultiEnumType } - * - */ - public AttributMultiEnumType createAttributMultiEnumType() { - return new AttributMultiEnumType(); - } - - /** - * Create an instance of {@link AbtretungType } - * - */ - public AbtretungType createAbtretungType() { - return new AbtretungType(); - } - - /** - * Create an instance of {@link VerpfaendungType } - * - */ - public VerpfaendungType createVerpfaendungType() { - return new VerpfaendungType(); - } - - /** - * Create an instance of {@link PfandglaeubigerType } - * - */ - public PfandglaeubigerType createPfandglaeubigerType() { - return new PfandglaeubigerType(); - } - - /** - * Create an instance of {@link VinkulierungPersonenType } - * - */ - public VinkulierungPersonenType createVinkulierungPersonenType() { - return new VinkulierungPersonenType(); - } - - /** - * Create an instance of {@link GlaeubigerSicherstellungType } - * - */ - public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() { - return new GlaeubigerSicherstellungType(); - } - - /** - * Create an instance of {@link EinwVerarbGesDatenType } - * - */ - public EinwVerarbGesDatenType createEinwVerarbGesDatenType() { - return new EinwVerarbGesDatenType(); - } - - /** - * Create an instance of {@link EinwGesDatenVNType } - * - */ - public EinwGesDatenVNType createEinwGesDatenVNType() { - return new EinwGesDatenVNType(); - } - - /** - * Create an instance of {@link EinwSprachaufzType } - * - */ - public EinwSprachaufzType createEinwSprachaufzType() { - return new EinwSprachaufzType(); - } - - /** - * Create an instance of {@link FATCAType } - * - */ - public FATCAType createFATCAType() { - return new FATCAType(); - } - - /** - * Create an instance of {@link FATCANatPersonType } - * - */ - public FATCANatPersonType createFATCANatPersonType() { - return new FATCANatPersonType(); - } - - /** - * Create an instance of {@link FATCASonstPersonType } - * - */ - public FATCASonstPersonType createFATCASonstPersonType() { - return new FATCASonstPersonType(); - } - - /** - * Create an instance of {@link PEPType } - * - */ - public PEPType createPEPType() { - return new PEPType(); - } - - /** - * Create an instance of {@link TreuhaenderfrageType } - * - */ - public TreuhaenderfrageType createTreuhaenderfrageType() { - return new TreuhaenderfrageType(); - } - - /** - * Create an instance of {@link ElementFondsauswahlType } - * - */ - public ElementFondsauswahlType createElementFondsauswahlType() { - return new ElementFondsauswahlType(); - } - - /** - * Create an instance of {@link at.vvo.omds.types.omds3Types.r1_9_0.common.BasisProduktbausteinType.Konvertierung } - * - */ - public at.vvo.omds.types.omds3Types.r1_9_0.common.BasisProduktbausteinType.Konvertierung createBasisProduktbausteinTypeKonvertierung() { - return new at.vvo.omds.types.omds3Types.r1_9_0.common.BasisProduktbausteinType.Konvertierung(); - } - - /** - * Create an instance of {@link GMSGType.SteuerlichAnsaessig } - * - */ - public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() { - return new GMSGType.SteuerlichAnsaessig(); - } - - /** - * Create an instance of {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() { - return new ZahlwegType.Kundenkonto(); - } - - /** - * Create an instance of {@link ProzessDokumentType.Autorisierungen } - * - */ - public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() { - return new ProzessDokumentType.Autorisierungen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault") - public JAXBElement createServiceFault(ServiceFault value) { - return new JAXBElement(_ServiceFault_QNAME, ServiceFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd") - public JAXBElement createOrdnungsbegriffZuordFremd(String value) { - return new JAXBElement(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId") - public JAXBElement createObjektId(ObjektIdType value) { - return new JAXBElement(_ObjektId_QNAME, ObjektIdType.class, null, value); - } - - /** - * 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:omds3CommonServiceTypes-1-1-0", name = "Person") - public JAXBElement createPerson(PersonType value) { - return new JAXBElement(_Person_QNAME, PersonType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse") - public JAXBElement createAdresse(AdresseType value) { - return new JAXBElement(_Adresse_QNAME, AdresseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektIdType.java deleted file mode 100644 index 1b2b983d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektIdType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="255"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektId_Type", propOrder = { - "id", - "gueltigAb", - "ordnungsbegriffZuordFremd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjektIdType { - - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String id; - @XmlElement(name = "GueltigAb") - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar gueltigAb; - @XmlElement(name = "OrdnungsbegriffZuordFremd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ordnungsbegriffZuordFremd; - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der gueltigAb-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getGueltigAb() { - return gueltigAb; - } - - /** - * Legt den Wert der gueltigAb-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGueltigAb(XMLGregorianCalendar value) { - this.gueltigAb = value; - } - - /** - * Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 0b41739e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - SchadenmelderVermittlerType.class, - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffeneSchaedenType.java deleted file mode 100644 index eeefd5ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffeneSchaeden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
- *         <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *         <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffeneSchaeden_Type", propOrder = { - "offenerSchaden1", - "offenerSchaden2", - "offenerSchaden3" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OffeneSchaedenType { - - @XmlElement(name = "OffenerSchaden1", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffenerSchadenType offenerSchaden1; - @XmlElement(name = "OffenerSchaden2") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffenerSchadenType offenerSchaden2; - @XmlElement(name = "OffenerSchaden3") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffenerSchadenType offenerSchaden3; - - /** - * Ruft den Wert der offenerSchaden1-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffenerSchadenType getOffenerSchaden1() { - return offenerSchaden1; - } - - /** - * Legt den Wert der offenerSchaden1-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffenerSchaden1(OffenerSchadenType value) { - this.offenerSchaden1 = value; - } - - /** - * Ruft den Wert der offenerSchaden2-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffenerSchadenType getOffenerSchaden2() { - return offenerSchaden2; - } - - /** - * Legt den Wert der offenerSchaden2-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffenerSchaden2(OffenerSchadenType value) { - this.offenerSchaden2 = value; - } - - /** - * Ruft den Wert der offenerSchaden3-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffenerSchadenType getOffenerSchaden3() { - return offenerSchaden3; - } - - /** - * Legt den Wert der offenerSchaden3-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffenerSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffenerSchaden3(OffenerSchadenType value) { - this.offenerSchaden3 = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffenerSchadenType.java deleted file mode 100644 index d1cba2b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 einzelner offener Schaden - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffenerSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffenerSchaden_Type", propOrder = { - "monat", - "jahr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OffenerSchadenType { - - @XmlElement(name = "Monat", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger monat; - @XmlElement(name = "Jahr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger jahr; - - /** - * Ruft den Wert der monat-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getMonat() { - return monat; - } - - /** - * Legt den Wert der monat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMonat(BigInteger value) { - this.monat = value; - } - - /** - * Ruft den Wert der jahr-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getJahr() { - return jahr; - } - - /** - * Legt den Wert der jahr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setJahr(BigInteger value) { - this.jahr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PEPType.java deleted file mode 100644 index f80e2644..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PEPType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PEP_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PEP_Type", propOrder = { - "pep", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PEPType { - - @XmlElement(name = "PEP") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean pep; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPEP(boolean value) { - this.pep = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PartnerRoleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PartnerRoleType.java deleted file mode 100644 index 9db8b45c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PartnerRoleType.java +++ /dev/null @@ -1,50 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PartnerRoleType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PartnerRoleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <length value="2"/>
- *     <enumeration value="VN"/>
- *     <enumeration value="VP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PartnerRoleType") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum PartnerRoleType { - - - /** - * Versicherungsnehmer - * - */ - VN, - - /** - * Versicherte Person - * - */ - VP; - - public String value() { - return name(); - } - - public static PartnerRoleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersBankverbindungType.java deleted file mode 100644 index e277b841..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersBankverbindung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
- *       <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersBankverbindung_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PersBankverbindungType - extends BankverbindungType -{ - - @XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer personRefLfnr; - - /** - * Ruft den Wert der personRefLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getPersonRefLfnr() { - return personRefLfnr; - } - - /** - * Legt den Wert der personRefLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersonRefLfnr(Integer value) { - this.personRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonNamentlichesBezugsrechtType.java deleted file mode 100644 index d43e16e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonNamentlichesBezugsrechtType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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; - - -/** - *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PersonNamentlichesBezugsrecht_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = { - "prozentsatz", - "zugunsten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PersonNamentlichesBezugsrechtType { - - @XmlElement(name = "Prozentsatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double prozentsatz; - @XmlElement(name = "Zugunsten") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int zugunsten; - - /** - * Ruft den Wert der prozentsatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getProzentsatz() { - return prozentsatz; - } - - /** - * Legt den Wert der prozentsatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProzentsatz(Double value) { - this.prozentsatz = value; - } - - /** - * Ruft den Wert der zugunsten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getZugunsten() { - return zugunsten; - } - - /** - * Legt den Wert der zugunsten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZugunsten(int value) { - this.zugunsten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonType.java deleted file mode 100644 index 820d8834..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PersonType.java +++ /dev/null @@ -1,452 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELAnzahlType; -import at.vvo.omds.types.omds2Types.v2_15.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_15.ELEntscheidungsfrageType; -import at.vvo.omds.types.omds2Types.v2_15.ELIdentifizierungType; -import at.vvo.omds.types.omds2Types.v2_15.ELKommunikationType; -import at.vvo.omds.types.omds2Types.v2_15.ELLegitimationType; -import at.vvo.omds.types.omds2Types.v2_15.ELTextType; -import at.vvo.omds.types.omds2Types.v2_15.NATUERLICHEPERSONType; -import at.vvo.omds.types.omds2Types.v2_15.PersArtCdType; -import at.vvo.omds.types.omds2Types.v2_15.SONSTIGEPERSONType; - - -/** - * Der Typ für eine Person mit ObjektId - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Person_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- *           <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- *         </choice>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Person_Type", propOrder = { - "objektId", - "natuerlicheperson", - "sonstigeperson", - "adresse", - "elKommunikation", - "elLegitimation", - "elAnzahl", - "elEinstufung", - "elEntscheidungsfrage", - "elIdentifizierung", - "elText" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PersonType { - - @XmlElement(name = "ObjektId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType objektId; - @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected NATUERLICHEPERSONType natuerlicheperson; - @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SONSTIGEPERSONType sonstigeperson; - @XmlElement(name = "Adresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AdresseType adresse; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elText; - @XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PersArtCdType persArtCd; - - /** - * Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der natuerlicheperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public NATUERLICHEPERSONType getNATUERLICHEPERSON() { - return natuerlicheperson; - } - - /** - * Legt den Wert der natuerlicheperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NATUERLICHEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) { - this.natuerlicheperson = value; - } - - /** - * Ruft den Wert der sonstigeperson-Eigenschaft ab. - * - * @return - * possible object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SONSTIGEPERSONType getSONSTIGEPERSON() { - return sonstigeperson; - } - - /** - * Legt den Wert der sonstigeperson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SONSTIGEPERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSONSTIGEPERSON(SONSTIGEPERSONType value) { - this.sonstigeperson = value; - } - - /** - * Die Hauptadresse des Partners mit ObjektId - * - * @return - * possible object is - * {@link AdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AdresseType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAdresse(AdresseType value) { - this.adresse = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - return this.elText; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PfandglaeubigerType.java deleted file mode 100644 index 6600ddbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Pfandglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pfandglaeubiger_Type", propOrder = { - "anteil", - "glaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PfandglaeubigerType { - - @XmlElement(name = "Anteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected double anteil; - @XmlElement(name = "Glaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GlaeubigerSicherstellungType glaeubiger; - - /** - * Ruft den Wert der anteil-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public double getAnteil() { - return anteil; - } - - /** - * Legt den Wert der anteil-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAnteil(double value) { - this.anteil = value; - } - - /** - * Ruft den Wert der glaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GlaeubigerSicherstellungType getGlaeubiger() { - return glaeubiger; - } - - /** - * Legt den Wert der glaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GlaeubigerSicherstellungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGlaeubiger(GlaeubigerSicherstellungType value) { - this.glaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 548dfc1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolizzenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = { - "polizzennr", - "vtgProdCd", - "rollePartner" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PolizzenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VtgProdCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vtgProdCd; - @XmlElement(name = "RollePartner") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List rollePartner; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vtgProdCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVtgProdCd() { - return vtgProdCd; - } - - /** - * Legt den Wert der vtgProdCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgProdCd(String value) { - this.vtgProdCd = value; - } - - /** - * Gets the value of the rollePartner property. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenversandType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenversandType.java deleted file mode 100644 index 10d5521d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PolizzenversandType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PolizzenversandType. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="PolizzenversandType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MAK2"/>
- *     <enumeration value="VN1"/>
- *     <enumeration value="MAKVN"/>
- *     <enumeration value="MAK1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PolizzenversandType") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum PolizzenversandType { - - - /** - * 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie - * - */ - @XmlEnumValue("MAK2") - MAK_2("MAK2"), - - /** - * 1fach Versicherungsnehmer: Kunde erhält Original - * - */ - @XmlEnumValue("VN1") - VN_1("VN1"), - - /** - * 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie - * - */ - MAKVN("MAKVN"), - - /** - * 1fach Makler: Makler erhält Original - * - */ - @XmlEnumValue("MAK1") - MAK_1("MAK1"); - private final String value; - - PolizzenversandType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static PolizzenversandType fromValue(String v) { - for (PolizzenversandType c: PolizzenversandType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PraemieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PraemieType.java deleted file mode 100644 index 84f43f49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/PraemieType.java +++ /dev/null @@ -1,389 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.WaehrungsCdType; - - -/** - * Darstellung einer Praemie - * - *

Java-Klasse für Praemie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Praemie_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="PraemieNto" type="{urn:omds20}decimal"/>
- *         <element name="PraemieBto" type="{urn:omds20}decimal"/>
- *         <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Referenz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="JahrespraemieBto" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Praemie_Type", propOrder = { - "zahlrhythmus", - "zahlweg", - "praemieNto", - "praemieBto", - "versicherungssteuer", - "waehrungsCd", - "unterjaehrigkeitszuschlag", - "abschlag", - "referenz", - "jahrespraemieNto", - "jahrespraemieBto" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PraemieType { - - @XmlElement(name = "Zahlrhythmus", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlrhythmus; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlweg; - @XmlElement(name = "PraemieNto", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal praemieNto; - @XmlElement(name = "PraemieBto", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal praemieBto; - @XmlElement(name = "Versicherungssteuer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherungssteuer; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Unterjaehrigkeitszuschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double unterjaehrigkeitszuschlag; - @XmlElement(name = "Abschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double abschlag; - @XmlElement(name = "Referenz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String referenz; - @XmlElement(name = "JahrespraemieNto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object jahrespraemieNto; - @XmlElement(name = "JahrespraemieBto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object jahrespraemieBto; - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der praemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getPraemieNto() { - return praemieNto; - } - - /** - * Legt den Wert der praemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPraemieNto(BigDecimal value) { - this.praemieNto = value; - } - - /** - * Ruft den Wert der praemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getPraemieBto() { - return praemieBto; - } - - /** - * Legt den Wert der praemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPraemieBto(BigDecimal value) { - this.praemieBto = value; - } - - /** - * Gets the value of the versicherungssteuer property. - * - *

- * 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 set method for the versicherungssteuer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungssteuer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersicherungssteuerType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherungssteuer() { - if (versicherungssteuer == null) { - versicherungssteuer = new ArrayList(); - } - return this.versicherungssteuer; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getUnterjaehrigkeitszuschlag() { - return unterjaehrigkeitszuschlag; - } - - /** - * Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUnterjaehrigkeitszuschlag(Double value) { - this.unterjaehrigkeitszuschlag = value; - } - - /** - * Ruft den Wert der abschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getAbschlag() { - return abschlag; - } - - /** - * Legt den Wert der abschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbschlag(Double value) { - this.abschlag = value; - } - - /** - * Ruft den Wert der referenz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getReferenz() { - return referenz; - } - - /** - * Legt den Wert der referenz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setReferenz(String value) { - this.referenz = value; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setJahrespraemieNto(Object value) { - this.jahrespraemieNto = value; - } - - /** - * Ruft den Wert der jahrespraemieBto-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getJahrespraemieBto() { - return jahrespraemieBto; - } - - /** - * Legt den Wert der jahrespraemieBto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setJahrespraemieBto(Object value) { - this.jahrespraemieBto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktGenerischType.java deleted file mode 100644 index fdc4045d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktGenerischType.java +++ /dev/null @@ -1,170 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.rs.ProduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.ProduktSachPrivatType; - - -/** - * Basistyp für ein Produkt, 2. Generation - * - *

Java-Klasse für ProduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - ProduktRechtsschutzType.class, - ProduktSachPrivatType.class, - ProduktMitVpType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProduktGenerischType - extends ProduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktMitVpType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktMitVpType.java deleted file mode 100644 index d3c50db6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktMitVpType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.ProduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.ProduktLebenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.ProduktUnfallType; - - -/** - * Basistyp für ein Produkt vom Typ "Versicherte Person" für Personensparten - * - *

Java-Klasse für ProduktMitVp_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktMitVp_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktMitVp_Type", propOrder = { - "bezugsberechtigungen", - "versPersonenRefLfnr" -}) -@XmlSeeAlso({ - ProduktUnfallType.class, - ProduktLebenType.class, - ProduktKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProduktMitVpType - extends ProduktGenerischType -{ - - @XmlElement(name = "Bezugsberechtigungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bezugsberechtigungen; - @XmlElement(name = "VersPersonenRefLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int versPersonenRefLfnr; - - /** - * Gets the value of the bezugsberechtigungen property. - * - *

- * 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 set method for the bezugsberechtigungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBezugsberechtigungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BezugsberechtigungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBezugsberechtigungen() { - if (bezugsberechtigungen == null) { - bezugsberechtigungen = new ArrayList(); - } - return this.bezugsberechtigungen; - } - - /** - * Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getVersPersonenRefLfnr() { - return versPersonenRefLfnr; - } - - /** - * Legt den Wert der versPersonenRefLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersPersonenRefLfnr(int value) { - this.versPersonenRefLfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktType.java deleted file mode 100644 index 4acb78f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.kfz.ProduktKfzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.ZusatzproduktKfzType; - - -/** - * Basistyp für ein Produkt - * - *

Java-Klasse für Produkt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produkt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produkt_Type", propOrder = { - "vtgBeg", - "produktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "refSicherstellungLfnr", - "zusaetzlicheProduktdaten" -}) -@XmlSeeAlso({ - ProduktKfzType.class, - ZusatzproduktKfzType.class, - ProduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Produktgeneration") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String produktgeneration; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheProduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheProduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der produktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getProduktgeneration() { - return produktgeneration; - } - - /** - * Legt den Wert der produktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProduktgeneration(String value) { - this.produktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheProduktdaten property. - * - *

- * 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 set method for the zusaetzlicheProduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheProduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheProduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheProduktdaten() { - if (zusaetzlicheProduktdaten == null) { - zusaetzlicheProduktdaten = new ArrayList(); - } - return this.zusaetzlicheProduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index f2980d05..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktbausteinGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProduktbausteinGenerischType - extends ProduktbausteinType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinType.java deleted file mode 100644 index 97681002..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Abstrakter Typ für alle Produktbausteine im Antragsprozess - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Produktbaustein_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
- *       <sequence>
- *         <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Produktbaustein_Type", propOrder = { - "vtgEnde", - "praemie", - "jahrespraemieNto" -}) -@XmlSeeAlso({ - ProduktbausteinGenerischType.class, - ZusatzproduktType.class, - VerkaufsproduktType.class, - ProduktType.class, - ElementarproduktType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProduktbausteinType - extends BasisProduktbausteinType -{ - - @XmlElement(name = "VtgEnde") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar vtgEnde; - @XmlElement(name = "Praemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List praemie; - @XmlElement(name = "JahrespraemieNto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal jahrespraemieNto; - - /** - * Ruft den Wert der vtgEnde-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getVtgEnde() { - return vtgEnde; - } - - /** - * Legt den Wert der vtgEnde-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgEnde(XMLGregorianCalendar value) { - this.vtgEnde = value; - } - - /** - * Gets the value of the praemie property. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - return this.praemie; - } - - /** - * Ruft den Wert der jahrespraemieNto-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getJahrespraemieNto() { - return jahrespraemieNto; - } - - /** - * Legt den Wert der jahrespraemieNto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setJahrespraemieNto(BigDecimal value) { - this.jahrespraemieNto = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokHandoutType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokHandoutType.java deleted file mode 100644 index ba2b8421..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokHandoutType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument für Kunde, nicht zu unterschreiben - * - *

Java-Klasse für ProzessDokHandout_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokHandout_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="ArtAusfolgung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokHandout_Type", propOrder = { - "dokData", - "artAusfolgung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProzessDokHandoutType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokData", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DokumentDataType dokData; - @XmlElement(name = "ArtAusfolgung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected short artAusfolgung; - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Ruft den Wert der artAusfolgung-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public short getArtAusfolgung() { - return artAusfolgung; - } - - /** - * Legt den Wert der artAusfolgung-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArtAusfolgung(short value) { - this.artAusfolgung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokRequirementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokRequirementType.java deleted file mode 100644 index 182bb09f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokRequirementType.java +++ /dev/null @@ -1,201 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Anforderung eines beizubringenden Dokuments - * - *

Java-Klasse für ProzessDokRequirement_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokRequirement_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" 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>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokRequirement_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "meldungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProzessDokRequirementType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zulaessigeMimetypes; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokToReturnType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokToReturnType.java deleted file mode 100644 index bb3f47bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokToReturnType.java +++ /dev/null @@ -1,232 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen - * - *

Java-Klasse für ProzessDokToReturn_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokToReturn_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokToReturn_Type", propOrder = { - "dokAnforderungsId", - "autorisierungen", - "docUploadRequired", - "zulaessigeMimetypes", - "dokData", - "meldungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProzessDokToReturnType - extends ProzessDokumentBasisType -{ - - @XmlElement(name = "DokAnforderungsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List autorisierungen; - @XmlElement(name = "DocUploadRequired") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean docUploadRequired; - @XmlElement(name = "ZulaessigeMimetypes") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zulaessigeMimetypes; - @XmlElement(name = "DokData", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DokumentDataType dokData; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AutorisierungsAnforderungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der docUploadRequired-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isDocUploadRequired() { - return docUploadRequired; - } - - /** - * Legt den Wert der docUploadRequired-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocUploadRequired(boolean value) { - this.docUploadRequired = value; - } - - /** - * Gets the value of the zulaessigeMimetypes property. - * - *

- * 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 set method for the zulaessigeMimetypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZulaessigeMimetypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZulaessigeMimetypes() { - if (zulaessigeMimetypes == null) { - zulaessigeMimetypes = new ArrayList(); - } - return this.zulaessigeMimetypes; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentBasisType.java deleted file mode 100644 index 7f242c96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentBasisType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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; - - -/** - * Basistyp für Bereitstellung und Anforderung von Dokumenten - * - *

Java-Klasse für ProzessDokumentBasis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokumentBasis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokumentBasis_Type", propOrder = { - "dokumenttyp", - "beschreibung" -}) -@XmlSeeAlso({ - ProzessDokRequirementType.class, - ProzessDokToReturnType.class, - ProzessDokHandoutType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ProzessDokumentBasisType { - - @XmlElement(name = "Dokumenttyp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentType.java deleted file mode 100644 index e260873c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ProzessDokumentType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. - * - *

Java-Klasse für ProzessDokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProzessDokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Beschreibung" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="200"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Autorisierungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProzessDokument_Type", propOrder = { - "dokAnforderungsId", - "dokumenttyp", - "beschreibung", - "autorisierungen", - "dokumentHinterlegt", - "dokData" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProzessDokumentType { - - @XmlElement(name = "DokAnforderungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType dokAnforderungsId; - @XmlElement(name = "Dokumenttyp", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dokumenttyp; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - @XmlElement(name = "Autorisierungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List autorisierungen; - @XmlElement(name = "DokumentHinterlegt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean dokumentHinterlegt; - @XmlElement(name = "DokData") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DokumentDataType dokData; - - /** - * Ruft den Wert der dokAnforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getDokAnforderungsId() { - return dokAnforderungsId; - } - - /** - * Legt den Wert der dokAnforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokAnforderungsId(ObjektIdType value) { - this.dokAnforderungsId = value; - } - - /** - * Ruft den Wert der dokumenttyp-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDokumenttyp() { - return dokumenttyp; - } - - /** - * Legt den Wert der dokumenttyp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumenttyp(String value) { - this.dokumenttyp = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - - /** - * Gets the value of the autorisierungen property. - * - *

- * 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 set method for the autorisierungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAutorisierungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType.Autorisierungen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAutorisierungen() { - if (autorisierungen == null) { - autorisierungen = new ArrayList(); - } - return this.autorisierungen; - } - - /** - * Ruft den Wert der dokumentHinterlegt-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isDokumentHinterlegt() { - return dokumentHinterlegt; - } - - /** - * Legt den Wert der dokumentHinterlegt-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumentHinterlegt(boolean value) { - this.dokumentHinterlegt = value; - } - - /** - * Ruft den Wert der dokData-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DokumentDataType getDokData() { - return dokData; - } - - /** - * Legt den Wert der dokData-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentDataType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokData(DokumentDataType value) { - this.dokData = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Autorisierungen - extends AutorisierungType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RaucherType.java deleted file mode 100644 index 1d3a528e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RaucherType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/Referenz.java deleted file mode 100644 index 6b3d405d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/Referenz.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class Referenz { - - @XmlElement(name = "Link", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object link; - @XmlElement(name = "Bezeichnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ResponseStatusType.java deleted file mode 100644 index 722b89d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ResponseStatusType.java +++ /dev/null @@ -1,174 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - @XmlElement(name = "Referenzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List referenzen; - - /** - * Ruft den Wert der korrelationsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKorrelationsId() { - return korrelationsId; - } - - /** - * Legt den Wert der korrelationsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKorrelationsId(String value) { - this.korrelationsId = value; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RisikoNatPersonType.java deleted file mode 100644 index cbb355ed..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,548 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 795dc2fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadennr; - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SelbstbehaltType.java deleted file mode 100644 index 519c41c6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,196 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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; - - -/** - * Dient zur Abbildung eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Art" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "art", - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SelbstbehaltType { - - @XmlElement(name = "Art") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String art; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ServiceFault.java deleted file mode 100644 index 84fa2929..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ServiceFault.java +++ /dev/null @@ -1,169 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigInteger; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ServiceFault { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger errorType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger errorCode; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String errorMsg; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String elementReference; - - /** - * Ruft den Wert der errorType-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getErrorType() { - return errorType; - } - - /** - * Legt den Wert der errorType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorType(BigInteger value) { - this.errorType = value; - } - - /** - * Ruft den Wert der errorCode-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getErrorCode() { - return errorCode; - } - - /** - * Legt den Wert der errorCode-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorCode(BigInteger value) { - this.errorCode = value; - } - - /** - * Ruft den Wert der errorMsg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErrorMsg() { - return errorMsg; - } - - /** - * Legt den Wert der errorMsg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErrorMsg(String value) { - this.errorMsg = value; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SicherstellungType.java deleted file mode 100644 index 02576fbe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/SicherstellungType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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 fuer Sicherstellungen - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int lfnr; - @XmlElement(name = "Betrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/StatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/StatusType.java deleted file mode 100644 index 725e117d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/StatusType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Status_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Status_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="OKNA"/>
- *     <enumeration value="NOK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum StatusType { - - - /** - * Request konnte verarbeitet werden - * - */ - OK, - - /** - * Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. - * - */ - OKNA, - - /** - * Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden - * - */ - NOK; - - public String value() { - return name(); - } - - public static StatusType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TarifIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TarifIdType.java deleted file mode 100644 index 91893d61..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TarifIdType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für eine TarifId. Dieser Typ muss von der VU überschrieben werden, - * die z.B. ein Enum für die zulässigen Tarifschlüssel anbietet. - * - *

Java-Klasse für TarifId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifId_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifId_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class TarifIdType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnicalKeyValueType.java deleted file mode 100644 index ff480017..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String key; - @XmlElement(name = "Value", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKey(String value) { - this.key = value; - } - - /** - * Ruft den Wert der value-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getValue() { - return value; - } - - /** - * Legt den Wert der value-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValue(String value) { - this.value = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnischesObjektType.java deleted file mode 100644 index 77ff9d64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TechnischesObjektType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TreuhaenderfrageType.java deleted file mode 100644 index 351ae9ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean treuhaender; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTreuhaender(boolean value) { - this.treuhaender = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/UploadDokumentType.java deleted file mode 100644 index ff38ddd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/UploadDokumentType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String name; - @XmlElement(name = "Mimetype", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler content; - @XmlElement(name = "DocumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int documentType; - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der mimetype-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMimetype() { - return mimetype; - } - - /** - * Legt den Wert der mimetype-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMimetype(String value) { - this.mimetype = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setContent(DataHandler value) { - this.content = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktGenerischType.java deleted file mode 100644 index cdff251e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktGenerischType.java +++ /dev/null @@ -1,175 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.VerkaufsproduktKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.VerkaufsproduktLebenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.VerkaufsproduktRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.VerkaufsproduktUnfallType; - - -/** - * Basistyp für ein Produktbündel, 2. Generation - * - *

Java-Klasse für VerkaufsproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_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"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt" -}) -@XmlSeeAlso({ - VerkaufsproduktRechtsschutzType.class, - VerkaufsproduktUnfallType.class, - VerkaufsproduktSachPrivatType.class, - VerkaufsproduktLebenType.class, - VerkaufsproduktKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class VerkaufsproduktGenerischType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktType.java deleted file mode 100644 index 347ced2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerkaufsproduktType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.omds2Types.v2_15.ELRahmenvereinbarungType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.VerkaufsproduktKfzType; - - -/** - * Basistyp für ein Produktbündel - * - *

Java-Klasse für Verkaufsprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verkaufsprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum"/>
- *         <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
- *         <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
- *         <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type" minOccurs="0"/>
- *         <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
- *         <element name="Vermittlernr" type="{urn:omds20}Vermnr" minOccurs="0"/>
- *         <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
- *         <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verkaufsprodukt_Type", propOrder = { - "vtgBeg", - "verkaufsproduktgeneration", - "zahlweg", - "zahlrhythmus", - "hauptfaelligkeit", - "berechnungsvariante", - "vermittlernr", - "elRahmenvereinbarung", - "refSicherstellungLfnr", - "zusaetzlicheVerkaufproduktdaten" -}) -@XmlSeeAlso({ - VerkaufsproduktKfzType.class, - VerkaufsproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class VerkaufsproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "Verkaufsproduktgeneration") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String verkaufsproduktgeneration; - @XmlElement(name = "Zahlweg") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlweg; - @XmlElement(name = "Zahlrhythmus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlrhythmus; - @XmlElement(name = "Hauptfaelligkeit") - @XmlSchemaType(name = "gMonthDay") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar hauptfaelligkeit; - @XmlElement(name = "Berechnungsvariante") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BerechnungsvarianteType berechnungsvariante; - @XmlElement(name = "Vermittlernr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vermittlernr; - @XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ELRahmenvereinbarungType elRahmenvereinbarung; - @XmlElement(name = "RefSicherstellungLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer refSicherstellungLfnr; - @XmlElement(name = "ZusaetzlicheVerkaufproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheVerkaufproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVerkaufsproduktgeneration() { - return verkaufsproduktgeneration; - } - - /** - * Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsproduktgeneration(String value) { - this.verkaufsproduktgeneration = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlweg(String value) { - this.zahlweg = value; - } - - /** - * Ruft den Wert der zahlrhythmus-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlrhythmus() { - return zahlrhythmus; - } - - /** - * Legt den Wert der zahlrhythmus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlrhythmus(String value) { - this.zahlrhythmus = value; - } - - /** - * Ruft den Wert der hauptfaelligkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getHauptfaelligkeit() { - return hauptfaelligkeit; - } - - /** - * Legt den Wert der hauptfaelligkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHauptfaelligkeit(XMLGregorianCalendar value) { - this.hauptfaelligkeit = value; - } - - /** - * Ruft den Wert der berechnungsvariante-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungsvarianteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BerechnungsvarianteType getBerechnungsvariante() { - return berechnungsvariante; - } - - /** - * Legt den Wert der berechnungsvariante-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungsvarianteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsvariante(BerechnungsvarianteType value) { - this.berechnungsvariante = value; - } - - /** - * Ruft den Wert der vermittlernr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVermittlernr() { - return vermittlernr; - } - - /** - * Legt den Wert der vermittlernr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVermittlernr(String value) { - this.vermittlernr = value; - } - - /** - * Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELRahmenvereinbarungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ELRahmenvereinbarungType getELRahmenvereinbarung() { - return elRahmenvereinbarung; - } - - /** - * Legt den Wert der elRahmenvereinbarung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELRahmenvereinbarungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) { - this.elRahmenvereinbarung = value; - } - - /** - * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getRefSicherstellungLfnr() { - return refSicherstellungLfnr; - } - - /** - * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRefSicherstellungLfnr(Integer value) { - this.refSicherstellungLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheVerkaufproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheVerkaufproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVerkaufproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVerkaufproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheVerkaufproduktdaten() { - if (zusaetzlicheVerkaufproduktdaten == null) { - zusaetzlicheVerkaufproduktdaten = new ArrayList(); - } - return this.zusaetzlicheVerkaufproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerpfaendungType.java deleted file mode 100644 index d067f815..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VerpfaendungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index e5a6d6df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int ueberdachteFlaecheInQm; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertePersonType.java deleted file mode 100644 index b1f30478..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertePersonType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseMitAttributMetadatenType.java deleted file mode 100644 index 8deb9771..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseMitAttributMetadatenType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.sachPrivat.RisikoGebaeudeType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.RisikoHaushaltType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType; - - -/** - * Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten - * - *

Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
- *       <sequence>
- *         <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = { - "attributMetadaten" -}) -@XmlSeeAlso({ - VersichertePersonType.class, - VersicherteLiegenschaftType.class, - VersichertesObjektSachPrivatType.class, - RisikoHaushaltType.class, - RisikoGebaeudeType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class VersichertesInteresseMitAttributMetadatenType - extends VersichertesInteresseType -{ - - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseType.java deleted file mode 100644 index b9380c02..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersichertesInteresseType.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_15.ELBetragType; - - -/** - * Abstrakter Obertyp für versicherte Interessen - * - *

Java-Klasse für VersichertesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Bewertung" type="{urn:omds20}EL-Betrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesInteresse_Type", propOrder = { - "ersetztId", - "zusaetzlicheRisikodaten", - "bewertung" -}) -@XmlSeeAlso({ - FahrzeugType.class, - VersichertesInteresseMitAttributMetadatenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class VersichertesInteresseType { - - @XmlElement(name = "ErsetztId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersetztId; - @XmlElement(name = "ZusaetzlicheRisikodaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheRisikodaten; - @XmlElement(name = "Bewertung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bewertung; - @XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int lfnr; - - /** - * Ruft den Wert der ersetztId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsetztId() { - return ersetztId; - } - - /** - * Legt den Wert der ersetztId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsetztId(String value) { - this.ersetztId = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - - /** - * Gets the value of the bewertung property. - * - *

- * 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 set method for the bewertung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBewertung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELBetragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBewertung() { - if (bewertung == null) { - bewertung = new ArrayList(); - } - return this.bewertung; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherungssteuerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherungssteuerType.java deleted file mode 100644 index 1eb1978a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VersicherungssteuerType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Stellt die Versicherungsteuer einer Prämie dar - * - *

Java-Klasse für Versicherungssteuer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Versicherungssteuer_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
- *         <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
- *         <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Versicherungssteuer_Type", propOrder = { - "versicherungssteuer", - "versicherungssteuerArt", - "versicherungssteuerSatz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VersicherungssteuerType { - - @XmlElement(name = "Versicherungssteuer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal versicherungssteuer; - @XmlElement(name = "VersicherungssteuerArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String versicherungssteuerArt; - @XmlElement(name = "VersicherungssteuerSatz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal versicherungssteuerSatz; - - /** - * Ruft den Wert der versicherungssteuer-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getVersicherungssteuer() { - return versicherungssteuer; - } - - /** - * Legt den Wert der versicherungssteuer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungssteuer(BigDecimal value) { - this.versicherungssteuer = value; - } - - /** - * Ruft den Wert der versicherungssteuerArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVersicherungssteuerArt() { - return versicherungssteuerArt; - } - - /** - * Legt den Wert der versicherungssteuerArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungssteuerArt(String value) { - this.versicherungssteuerArt = value; - } - - /** - * Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getVersicherungssteuerSatz() { - return versicherungssteuerSatz; - } - - /** - * Legt den Wert der versicherungssteuerSatz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungssteuerSatz(BigDecimal value) { - this.versicherungssteuerSatz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VertragspersonType.java deleted file mode 100644 index caa6d8eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VertragspersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkularglaeubigerType.java deleted file mode 100644 index 9c3e043b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,190 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vinkularglaeubigerStrasse; - - /** - * Ruft den Wert der vertragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsnummer() { - return vertragsnummer; - } - - /** - * Legt den Wert der vertragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsnummer(String value) { - this.vertragsnummer = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungPersonenType.java deleted file mode 100644 index cd371e85..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungType.java deleted file mode 100644 index 08814d31..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VinkulierungType.java +++ /dev/null @@ -1,70 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VinkulierungType { - - @XmlElement(name = "PERSON", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PERSONType person; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PERSONType getPERSON() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPERSON(PERSONType value) { - this.person = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungType.java deleted file mode 100644 index 15b2d1b9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungType.java +++ /dev/null @@ -1,139 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Angaben zu einer Vorversicherung in der Standardimplementierung, erweitert VorversicherungenDetail_Type - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenDetailType.java deleted file mode 100644 index 03096917..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type - * und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - VorversicherungType.class, - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = value; - } - - /** - * Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVersicherungsgesellschaft() { - return versicherungsgesellschaft; - } - - /** - * Legt den Wert der versicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungsgesellschaft(String value) { - this.versicherungsgesellschaft = value; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenImplType.java deleted file mode 100644 index 7ced9d11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardimplementierung Vorversicherungen: Eine Liste von Vorversicherung_Type-Objekten - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenType.java deleted file mode 100644 index d28a84c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/VorversicherungenType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen, wird verwendet in SpezAntrag_Type. - * Es gibt zwei Ableitungen im Standard: VorversicherungenKfz_Type und VorversicherungenImpl_Type (s.u.), jede VU kann aber auch eigene Implementierungen vornehmen. - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenImplType.class, - VorversicherungenKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlungsdatenType.java deleted file mode 100644 index 999bb4e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlungsdatenType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibt die Zahlungsdaten in Antragsservices - * - *

Java-Klasse für Zahlungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
- *         <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlungsdaten_Type", propOrder = { - "zahlungsart", - "kontonummer", - "bic", - "beschreibung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZahlungsdatenType { - - @XmlElement(name = "Zahlungsart", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String zahlungsart; - @XmlElement(name = "Kontonummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kontonummer; - @XmlElement(name = "BIC") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bic; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - - /** - * Ruft den Wert der zahlungsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getZahlungsart() { - return zahlungsart; - } - - /** - * Legt den Wert der zahlungsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlungsart(String value) { - this.zahlungsart = value; - } - - /** - * Ruft den Wert der kontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKontonummer() { - return kontonummer; - } - - /** - * Legt den Wert der kontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKontonummer(String value) { - this.kontonummer = value; - } - - /** - * Ruft den Wert der bic-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBIC() { - return bic; - } - - /** - * Legt den Wert der bic-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBIC(String value) { - this.bic = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlwegType.java deleted file mode 100644 index 24d44089..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZahlwegType.java +++ /dev/null @@ -1,226 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZeitraumType.java deleted file mode 100644 index 4129e053..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZeitraumType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZulassungsdatenType.java deleted file mode 100644 index f6feadc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,131 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -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 Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index fe174a57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheFondsdatenType.java deleted file mode 100644 index c0226f1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheFondsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheFondsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheFondsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheFondsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index b9d592e5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheRisikodatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheRisikodatenType.java deleted file mode 100644 index 8f84c8ef..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheRisikodatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Risikodaten - * - *

Java-Klasse für ZusaetzlicheRisikodaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRisikodaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRisikodaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheRisikodatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index afdecf21..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index d158fba3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index 92eda567..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktGenerischType.java deleted file mode 100644 index c8e18130..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktGenerischType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.on2antrag.leben.ZusatzversicherungLebenType; - - -/** - * Basistyp für ein Zusatzprodukt, 2. Generation - * - *

Java-Klasse für ZusatzproduktGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktGenerisch_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = { - "eingeschlossen", - "einschlussAenderbar", - "attributMetadaten", - "beschreibungTxt", - "versicherungssumme" -}) -@XmlSeeAlso({ - ZusatzversicherungLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzproduktGenerischType - extends ZusatzproduktType -{ - - @XmlElement(name = "Eingeschlossen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean eingeschlossen; - @XmlElement(name = "EinschlussAenderbar") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean einschlussAenderbar; - @XmlElement(name = "AttributMetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List attributMetadaten; - @XmlElement(name = "BeschreibungTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibungTxt; - @XmlElement(name = "Versicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal versicherungssumme; - - /** - * Ruft den Wert der eingeschlossen-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isEingeschlossen() { - return eingeschlossen; - } - - /** - * Legt den Wert der eingeschlossen-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschlossen(boolean value) { - this.eingeschlossen = value; - } - - /** - * Ruft den Wert der einschlussAenderbar-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEinschlussAenderbar() { - return einschlussAenderbar; - } - - /** - * Legt den Wert der einschlussAenderbar-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEinschlussAenderbar(Boolean value) { - this.einschlussAenderbar = value; - } - - /** - * Gets the value of the attributMetadaten property. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - return this.attributMetadaten; - } - - /** - * Ruft den Wert der beschreibungTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibungTxt() { - return beschreibungTxt; - } - - /** - * Legt den Wert der beschreibungTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibungTxt(String value) { - this.beschreibungTxt = value; - } - - /** - * Ruft den Wert der versicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getVersicherungssumme() { - return versicherungssumme; - } - - /** - * Legt den Wert der versicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungssumme(BigDecimal value) { - this.versicherungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktType.java deleted file mode 100644 index 3eece52f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/ZusatzproduktType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Basistyp für ein Zusatzprodukt - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * Ruft den Wert der vtgBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getVtgBeg() { - return vtgBeg; - } - - /** - * Legt den Wert der vtgBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgBeg(XMLGregorianCalendar value) { - this.vtgBeg = value; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/package-info.java deleted file mode 100644 index 210576d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStateChangeEventType.java deleted file mode 100644 index 19a48587..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStateChangeEventType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Event einer Statusänderung - * - *

Java-Klasse für AbstractStateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStateChangeEvent_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStateChangeEvent_Type") -@XmlSeeAlso({ - StateChangeEventType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AbstractStateChangeEventType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStatusGeschaeftsfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStatusGeschaeftsfallType.java deleted file mode 100644 index bfac36f7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AbstractStatusGeschaeftsfallType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -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 Status eines Geschaeftsfalls - * - *

Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbstractStatusGeschaeftsfall_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbstractStatusGeschaeftsfall_Type") -@XmlSeeAlso({ - StatusAntragsGeschaeftsfall.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class AbstractStatusGeschaeftsfallType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index ec357122..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected UploadDokumentType dokument; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 5d362a67..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,83 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 198a7f9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DocumentInfosResponseResultType { - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long totalResults; - @XmlElement(name = "DokumentInfos") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZeitraumType zeitraum; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 39c63c90..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,298 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 0564803a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index 51feb9b5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,298 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index 747e0e1b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index 7d542132..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,196 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer dokumentType; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der objektSpezifikation-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektSpezifikationType getObjektSpezifikation() { - return objektSpezifikation; - } - - /** - * Legt den Wert der objektSpezifikation-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektSpezifikationType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektSpezifikation(ObjektSpezifikationType value) { - this.objektSpezifikation = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 6ca33013..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.math.BigInteger; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesRequestType.java deleted file mode 100644 index ce3d655f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesRequestType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.CommonSearchRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.GeschaeftsobjektArtType; - - -/** - * Typ des Requestobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
- *       <sequence>
- *         <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesRequest_Type", propOrder = { - "geschaeftsobjektArt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetStateChangesRequestType - extends CommonSearchRequestType -{ - - @XmlElement(name = "GeschaeftsobjektArt") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GeschaeftsobjektArtType geschaeftsobjektArt; - - /** - * Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GeschaeftsobjektArtType getGeschaeftsobjektArt() { - return geschaeftsobjektArt; - } - - /** - * Legt den Wert der geschaeftsobjektArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) { - this.geschaeftsobjektArt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesResponseType.java deleted file mode 100644 index c222f65a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/GetStateChangesResponseType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonSearchResponseType; - - -/** - * Typ des Responseobjektes um Geschäftsfalle abzuholen - * - *

Java-Klasse für GetStateChangesResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetStateChangesResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
- *       <sequence>
- *         <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetStateChangesResponse_Type", propOrder = { - "event" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetStateChangesResponseType - extends CommonSearchResponseType -{ - - @XmlElement(name = "Event") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List event; - - /** - * Gets the value of the event property. - * - *

- * 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 set method for the event property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AbstractStateChangeEventType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getEvent() { - if (event == null) { - event = new ArrayList(); - } - return this.event; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/ObjectFactory.java deleted file mode 100644 index e32d3bd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/ObjectFactory.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on1basis package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest"); - private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse"); - private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest"); - private final static QName _GetNumberOfDocumentsResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsResponse"); - private final static QName _GetDocumentsOfObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectRequest"); - private final static QName _GetDocumentsOfObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfObjectResponse"); - private final static QName _GetDocumentsOfPeriodRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodRequest"); - private final static QName _GetDocumentsOfPeriodResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetDocumentsOfPeriodResponse"); - private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest"); - private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on1basis - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link AddDocToBusinessCaseRequestType } - * - */ - public AddDocToBusinessCaseRequestType createAddDocToBusinessCaseRequestType() { - return new AddDocToBusinessCaseRequestType(); - } - - /** - * Create an instance of {@link AddDocToBusinessCaseResponseType } - * - */ - public AddDocToBusinessCaseResponseType createAddDocToBusinessCaseResponseType() { - return new AddDocToBusinessCaseResponseType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsRequestType } - * - */ - public GetNumberOfDocumentsRequestType createGetNumberOfDocumentsRequestType() { - return new GetNumberOfDocumentsRequestType(); - } - - /** - * Create an instance of {@link GetNumberOfDocumentsResponseType } - * - */ - public GetNumberOfDocumentsResponseType createGetNumberOfDocumentsResponseType() { - return new GetNumberOfDocumentsResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectRequestType } - * - */ - public GetDocumentsOfObjectRequestType createGetDocumentsOfObjectRequestType() { - return new GetDocumentsOfObjectRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfObjectResponseType } - * - */ - public GetDocumentsOfObjectResponseType createGetDocumentsOfObjectResponseType() { - return new GetDocumentsOfObjectResponseType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodRequestType } - * - */ - public GetDocumentsOfPeriodRequestType createGetDocumentsOfPeriodRequestType() { - return new GetDocumentsOfPeriodRequestType(); - } - - /** - * Create an instance of {@link GetDocumentsOfPeriodResponseType } - * - */ - public GetDocumentsOfPeriodResponseType createGetDocumentsOfPeriodResponseType() { - return new GetDocumentsOfPeriodResponseType(); - } - - /** - * Create an instance of {@link GetStateChangesRequestType } - * - */ - public GetStateChangesRequestType createGetStateChangesRequestType() { - return new GetStateChangesRequestType(); - } - - /** - * Create an instance of {@link GetStateChangesResponseType } - * - */ - public GetStateChangesResponseType createGetStateChangesResponseType() { - return new GetStateChangesResponseType(); - } - - /** - * Create an instance of {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType createDocumentInfosResponseResultType() { - return new DocumentInfosResponseResultType(); - } - - /** - * Create an instance of {@link StateChangeEventType } - * - */ - public StateChangeEventType createStateChangeEventType() { - return new StateChangeEventType(); - } - - /** - * Create an instance of {@link StatusAntragsGeschaeftsfall } - * - */ - public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() { - return new StatusAntragsGeschaeftsfall(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseRequest") - public JAXBElement createAddDocToBusinessCaseRequest(AddDocToBusinessCaseRequestType value) { - return new JAXBElement(_AddDocToBusinessCaseRequest_QNAME, AddDocToBusinessCaseRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link AddDocToBusinessCaseResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "AddDocToBusinessCaseResponse") - public JAXBElement createAddDocToBusinessCaseResponse(AddDocToBusinessCaseResponseType value) { - return new JAXBElement(_AddDocToBusinessCaseResponse_QNAME, AddDocToBusinessCaseResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsRequest") - public JAXBElement createGetNumberOfDocumentsRequest(GetNumberOfDocumentsRequestType value) { - return new JAXBElement(_GetNumberOfDocumentsRequest_QNAME, GetNumberOfDocumentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetNumberOfDocumentsResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetNumberOfDocumentsResponse") - public JAXBElement createGetNumberOfDocumentsResponse(GetNumberOfDocumentsResponseType value) { - return new JAXBElement(_GetNumberOfDocumentsResponse_QNAME, GetNumberOfDocumentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectRequest") - public JAXBElement createGetDocumentsOfObjectRequest(GetDocumentsOfObjectRequestType value) { - return new JAXBElement(_GetDocumentsOfObjectRequest_QNAME, GetDocumentsOfObjectRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfObjectResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfObjectResponse") - public JAXBElement createGetDocumentsOfObjectResponse(GetDocumentsOfObjectResponseType value) { - return new JAXBElement(_GetDocumentsOfObjectResponse_QNAME, GetDocumentsOfObjectResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodRequest") - public JAXBElement createGetDocumentsOfPeriodRequest(GetDocumentsOfPeriodRequestType value) { - return new JAXBElement(_GetDocumentsOfPeriodRequest_QNAME, GetDocumentsOfPeriodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetDocumentsOfPeriodResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetDocumentsOfPeriodResponse") - public JAXBElement createGetDocumentsOfPeriodResponse(GetDocumentsOfPeriodResponseType value) { - return new JAXBElement(_GetDocumentsOfPeriodResponse_QNAME, GetDocumentsOfPeriodResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest") - public JAXBElement createGetStateChangesRequest(GetStateChangesRequestType value) { - return new JAXBElement(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse") - public JAXBElement createGetStateChangesResponse(GetStateChangesResponseType value) { - return new JAXBElement(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StateChangeEventType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StateChangeEventType.java deleted file mode 100644 index f32428fa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StateChangeEventType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.GeschaeftsobjektArtType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; - - -/** - * Standard-Event einer Statusänderung - * - *

Java-Klasse für StateChangeEvent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StateChangeEvent_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
- *       <sequence>
- *         <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
- *         <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
- *         <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StateChangeEvent_Type", propOrder = { - "objektart", - "objektId", - "geschaeftsfallnummer", - "geschaeftsfallArt", - "aenderungsdatum", - "statusGueltigAbDatum", - "bisherigerStatus", - "neuerStatus" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class StateChangeEventType - extends AbstractStateChangeEventType -{ - - @XmlElement(name = "Objektart", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GeschaeftsobjektArtType objektart; - @XmlElement(name = "ObjektId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType objektId; - @XmlElement(name = "Geschaeftsfallnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "GeschaeftsfallArt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String geschaeftsfallArt; - @XmlElement(name = "Aenderungsdatum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar aenderungsdatum; - @XmlElement(name = "StatusGueltigAbDatum", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar statusGueltigAbDatum; - @XmlElement(name = "BisherigerStatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AbstractStatusGeschaeftsfallType bisherigerStatus; - @XmlElement(name = "NeuerStatus", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AbstractStatusGeschaeftsfallType neuerStatus; - - /** - * Ruft den Wert der objektart-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GeschaeftsobjektArtType getObjektart() { - return objektart; - } - - /** - * Legt den Wert der objektart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeschaeftsobjektArtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektart(GeschaeftsobjektArtType value) { - this.objektart = value; - } - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallnummer() { - return geschaeftsfallnummer; - } - - /** - * Legt den Wert der geschaeftsfallnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallnummer(ObjektIdType value) { - this.geschaeftsfallnummer = value; - } - - /** - * Ruft den Wert der geschaeftsfallArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGeschaeftsfallArt() { - return geschaeftsfallArt; - } - - /** - * Legt den Wert der geschaeftsfallArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallArt(String value) { - this.geschaeftsfallArt = value; - } - - /** - * Ruft den Wert der aenderungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getAenderungsdatum() { - return aenderungsdatum; - } - - /** - * Legt den Wert der aenderungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAenderungsdatum(XMLGregorianCalendar value) { - this.aenderungsdatum = value; - } - - /** - * Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getStatusGueltigAbDatum() { - return statusGueltigAbDatum; - } - - /** - * Legt den Wert der statusGueltigAbDatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setStatusGueltigAbDatum(XMLGregorianCalendar value) { - this.statusGueltigAbDatum = value; - } - - /** - * Ruft den Wert der bisherigerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AbstractStatusGeschaeftsfallType getBisherigerStatus() { - return bisherigerStatus; - } - - /** - * Legt den Wert der bisherigerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) { - this.bisherigerStatus = value; - } - - /** - * Ruft den Wert der neuerStatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AbstractStatusGeschaeftsfallType getNeuerStatus() { - return neuerStatus; - } - - /** - * Legt den Wert der neuerStatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractStatusGeschaeftsfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) { - this.neuerStatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StatusAntragsGeschaeftsfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StatusAntragsGeschaeftsfall.java deleted file mode 100644 index add4a87f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/StatusAntragsGeschaeftsfall.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Status eines Antrags - * - *

Java-Klasse für StatusAntragsGeschaeftsfall complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="StatusAntragsGeschaeftsfall">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = { - "antragstatus" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class StatusAntragsGeschaeftsfall - extends AbstractStatusGeschaeftsfallType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int antragstatus; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragstatus(int value) { - this.antragstatus = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/package-info.java deleted file mode 100644 index 4058e6a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessRequestType.java deleted file mode 100644 index 18db6278..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.CommonProcessRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Request-Types - * - *

Java-Klasse für BOAProcessRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessRequest_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationRequestType.class, - CreateApplicationRequestType.class, - CreateOfferRequestType.class, - CalculateRequestType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BOAProcessRequestType - extends CommonProcessRequestType -{ - - @XmlElement(name = "Aenderungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessResponseType.java deleted file mode 100644 index b9529047..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/BOAProcessResponseType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.CommonProcessResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ErsatzpolizzeType; - - -/** - * Abstraktes Zwischenelement für alle BOA-Response-Types - * - *

Java-Klasse für BOAProcessResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BOAProcessResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
- *       <sequence>
- *         <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
- *         <element name="Ersatzpolizzen" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BOAProcessResponse_Type", propOrder = { - "aenderungsgrund", - "ersatzpolizzen" -}) -@XmlSeeAlso({ - SubmitApplicationResponseType.class, - CreateApplicationResponseType.class, - CreateOfferResponseType.class, - CalculateResponseType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BOAProcessResponseType - extends CommonProcessResponseType -{ - - @XmlElement(name = "Aenderungsgrund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String aenderungsgrund; - @XmlElement(name = "Ersatzpolizzen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List ersatzpolizzen; - - /** - * Ruft den Wert der aenderungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAenderungsgrund() { - return aenderungsgrund; - } - - /** - * Legt den Wert der aenderungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAenderungsgrund(String value) { - this.aenderungsgrund = value; - } - - /** - * Gets the value of the ersatzpolizzen property. - * - *

- * 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 set method for the ersatzpolizzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getErsatzpolizzen() { - if (ersatzpolizzen == null) { - ersatzpolizzen = new ArrayList(); - } - return this.ersatzpolizzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestGenType.java deleted file mode 100644 index e69e0a77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestGenType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.CalculateKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallRequestType; - - -/** - * Abstrakter Request für die Berechnung mit generischen Produktbausteinen - * - *

Java-Klasse für CalculateRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CalculateUnfallRequestType.class, - CalculateSachPrivatRequestType.class, - CalculateLebenRequestType.class, - CalculateKrankenRequest.class, - CalculateRechtsschutzRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CalculateRequestGenType - extends CalculateRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestType.java deleted file mode 100644 index 26fdee61..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.kfz.CalculateKfzRequestType; - - -/** - * Abstrakter Request für die Berechnung - * - *

Java-Klasse für CalculateRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateRequest_Type", propOrder = { - "requestUpselling" -}) -@XmlSeeAlso({ - CalculateKfzRequestType.class, - CalculateRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CalculateRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "RequestUpselling", defaultValue = "false") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean requestUpselling; - - /** - * Ruft den Wert der requestUpselling-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isRequestUpselling() { - return requestUpselling; - } - - /** - * Legt den Wert der requestUpselling-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRequestUpselling(boolean value) { - this.requestUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseGenType.java deleted file mode 100644 index 38a757fc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseGenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallResponseType; - - -/** - * Abstrakter Response Berechnung - * - *

Java-Klasse für CalculateResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponseGen_Type") -@XmlSeeAlso({ - CalculateUnfallResponseType.class, - CalculateSachPrivatResponseType.class, - CalculateLebenResponseType.class, - CalculateKrankenResponse.class, - CalculateRechtsschutzResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CalculateResponseGenType - extends CalculateResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseType.java deleted file mode 100644 index 4f111eff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CalculateResponseType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzResponseType; - - -/** - * Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CalculateResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateResponse_Type") -@XmlSeeAlso({ - CalculateKfzResponseType.class, - CalculateResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CalculateResponseType - extends BOAProcessResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalRequest.java deleted file mode 100644 index 4ee1e145..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Konvertierungsplan" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsplan" -}) -@XmlRootElement(name = "ConversionProposalRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ConversionProposalRequest - extends CommonRequestType -{ - - @XmlElement(name = "Konvertierungsplan", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KonvertierungsumfangType konvertierungsplan; - - /** - * Ruft den Wert der konvertierungsplan-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KonvertierungsumfangType getKonvertierungsplan() { - return konvertierungsplan; - } - - /** - * Legt den Wert der konvertierungsplan-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKonvertierungsplan(KonvertierungsumfangType value) { - this.konvertierungsplan = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalResponse.java deleted file mode 100644 index ae5834be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionProposalResponse.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ErsatzpolizzeType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokHandoutType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Vorschlag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ersatzpolizze" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vorschlag", - "dokument", - "ersatzpolizze" -}) -@XmlRootElement(name = "ConversionProposalResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ConversionProposalResponse - extends CommonResponseType -{ - - @XmlElement(name = "Vorschlag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragType vorschlag; - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokument; - @XmlElement(name = "Ersatzpolizze") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List ersatzpolizze; - - /** - * Ruft den Wert der vorschlag-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragType getVorschlag() { - return vorschlag; - } - - /** - * Legt den Wert der vorschlag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorschlag(SpezAntragType value) { - this.vorschlag = value; - } - - /** - * Gets the value of the dokument property. - * - *

- * 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 set method for the dokument property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokument().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokHandoutType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokument() { - if (dokument == null) { - dokument = new ArrayList(); - } - return this.dokument; - } - - /** - * Gets the value of the ersatzpolizze property. - * - *

- * 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 set method for the ersatzpolizze property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErsatzpolizze().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getErsatzpolizze() { - if (ersatzpolizze == null) { - ersatzpolizze = new ArrayList(); - } - return this.ersatzpolizze; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeRequest.java deleted file mode 100644 index b69d0143..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeRequest.java +++ /dev/null @@ -1,80 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ErsatzpolizzeType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "vertraege" -}) -@XmlRootElement(name = "ConversionScopeRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ConversionScopeRequest - extends CommonRequestType -{ - - @XmlElement(name = "Vertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErsatzpolizzeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeResponse.java deleted file mode 100644 index ff3a609e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ConversionScopeResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Konvertierungsmoeglichkeit" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "konvertierungsmoeglichkeit" -}) -@XmlRootElement(name = "ConversionScopeResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ConversionScopeResponse - extends CommonResponseType -{ - - @XmlElement(name = "Konvertierungsmoeglichkeit", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KonvertierungsumfangType konvertierungsmoeglichkeit; - - /** - * Ruft den Wert der konvertierungsmoeglichkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KonvertierungsumfangType getKonvertierungsmoeglichkeit() { - return konvertierungsmoeglichkeit; - } - - /** - * Legt den Wert der konvertierungsmoeglichkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KonvertierungsumfangType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKonvertierungsmoeglichkeit(KonvertierungsumfangType value) { - this.konvertierungsmoeglichkeit = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestGenType.java deleted file mode 100644 index 6fdd70ec..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestGenType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.CreateApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateApplicationUnfallRequestType.class, - CreateApplicationSachPrivatRequestType.class, - CreateApplicationLebenRequestType.class, - CreateApplicationKrankenRequest.class, - CreateApplicationRechtsschutzRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateApplicationRequestGenType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestType.java deleted file mode 100644 index 7b242da7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationRequestType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzRequestType; - - -/** - * Abstrakter Request für den Antrag - * - *

Java-Klasse für CreateApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente" -}) -@XmlSeeAlso({ - CreateApplicationKfzRequestType.class, - CreateApplicationRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseGenType.java deleted file mode 100644 index 1797dc4f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseGenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragserzeugung - * - *

Java-Klasse für CreateApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponseGen_Type") -@XmlSeeAlso({ - CreateApplicationUnfallResponseType.class, - CreateApplicationSachPrivatResponseType.class, - CreateApplicationLebenResponseType.class, - CreateApplicationKrankenResponse.class, - CreateApplicationRechtsschutzResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateApplicationResponseGenType - extends CreateApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseType.java deleted file mode 100644 index 477d5757..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateApplicationResponseType.java +++ /dev/null @@ -1,183 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzResponseType; - - -/** - * Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateApplicationKfzResponseType.class, - CreateApplicationResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer antragstatus; - @XmlElement(name = "Antragsnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragstatus(Integer value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestGenType.java deleted file mode 100644 index ccfdcb74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestGenType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.CreateOfferKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallRequestType; - - -/** - * Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen - * - *

Java-Klasse für CreateOfferRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - CreateOfferUnfallRequestType.class, - CreateOfferSachPrivatRequestType.class, - CreateOfferLebenRequestType.class, - CreateOfferKrankenRequest.class, - CreateOfferRechtsschutzRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateOfferRequestGenType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestType.java deleted file mode 100644 index 24cf7c2f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferRequestType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzRequestType; - - -/** - * Abstrakter Request für das Offert - * - *

Java-Klasse für CreateOfferRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferRequest_Type") -@XmlSeeAlso({ - CreateOfferKfzRequestType.class, - CreateOfferRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateOfferRequestType - extends BOAProcessRequestType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseGenType.java deleted file mode 100644 index 45911157..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseGenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallResponseType; - - -/** - * Abstrakter Response der Offerterstellung - * - *

Java-Klasse für CreateOfferResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponseGen_Type") -@XmlSeeAlso({ - CreateOfferUnfallResponseType.class, - CreateOfferSachPrivatResponseType.class, - CreateOfferLebenResponseType.class, - CreateOfferKrankenResponse.class, - CreateOfferRechtsschutzResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateOfferResponseGenType - extends CreateOfferResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseType.java deleted file mode 100644 index 4856199a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/CreateOfferResponseType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType; - - -/** - * Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen - * - *

Java-Klasse für CreateOfferResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferResponse_Type", propOrder = { - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - CreateOfferKfzResponseType.class, - CreateOfferResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class CreateOfferResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumenteAnforderungen; - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 4fec4bb3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 75a4b49e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/KonvertierungsumfangType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/KonvertierungsumfangType.java deleted file mode 100644 index 5b36169a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/KonvertierungsumfangType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.KonvertierungsumfangVertragType; - - -/** - * Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag - * - *

Java-Klasse für Konvertierungsumfang_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Konvertierungsumfang_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Konvertierungsumfang_Type", propOrder = { - "vertraege" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class KonvertierungsumfangType { - - @XmlElement(name = "Vertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vertraege; - - /** - *

Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

- * Gets the value of the vertraege property. - * - *

- * 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 set method for the vertraege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVertraege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KonvertierungsumfangVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVertraege() { - if (vertraege == null) { - vertraege = new ArrayList(); - } - return this.vertraege; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ObjectFactory.java deleted file mode 100644 index 84c7b8c5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ObjectFactory.java +++ /dev/null @@ -1,145 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); - private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link BOAProcessRequestType } - * - */ - public BOAProcessRequestType createBOAProcessRequestType() { - return new BOAProcessRequestType(); - } - - /** - * Create an instance of {@link BOAProcessResponseType } - * - */ - public BOAProcessResponseType createBOAProcessResponseType() { - return new BOAProcessResponseType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentRequestType } - * - */ - public GetApplicationDocumentRequestType createGetApplicationDocumentRequestType() { - return new GetApplicationDocumentRequestType(); - } - - /** - * Create an instance of {@link GetApplicationDocumentResponseType } - * - */ - public GetApplicationDocumentResponseType createGetApplicationDocumentResponseType() { - return new GetApplicationDocumentResponseType(); - } - - /** - * Create an instance of {@link ConversionScopeRequest } - * - */ - public ConversionScopeRequest createConversionScopeRequest() { - return new ConversionScopeRequest(); - } - - /** - * Create an instance of {@link ConversionScopeResponse } - * - */ - public ConversionScopeResponse createConversionScopeResponse() { - return new ConversionScopeResponse(); - } - - /** - * Create an instance of {@link KonvertierungsumfangType } - * - */ - public KonvertierungsumfangType createKonvertierungsumfangType() { - return new KonvertierungsumfangType(); - } - - /** - * Create an instance of {@link ConversionProposalRequest } - * - */ - public ConversionProposalRequest createConversionProposalRequest() { - return new ConversionProposalRequest(); - } - - /** - * Create an instance of {@link ConversionProposalResponse } - * - */ - public ConversionProposalResponse createConversionProposalResponse() { - return new ConversionProposalResponse(); - } - - /** - * Create an instance of {@link SpezBOASchrittType } - * - */ - public SpezBOASchrittType createSpezBOASchrittType() { - return new SpezBOASchrittType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentRequest") - public JAXBElement createGetApplicationDocumentRequest(GetApplicationDocumentRequestType value) { - return new JAXBElement(_GetApplicationDocumentRequest_QNAME, GetApplicationDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "GetApplicationDocumentResponse") - public JAXBElement createGetApplicationDocumentResponse(GetApplicationDocumentResponseType value) { - return new JAXBElement(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragPersonenType.java deleted file mode 100644 index f4a194d3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragPersonenType.java +++ /dev/null @@ -1,173 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.common.FATCAType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.GMSGType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PEPType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.TreuhaenderfrageType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SpezAntragLebenType; - - -/** - * Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntragPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
- *         <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
- *         <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type"/>
- *         <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragPersonen_Type", propOrder = { - "fatca", - "gsgm", - "pep", - "treuhaenderfrage" -}) -@XmlSeeAlso({ - SpezAntragLebenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SpezAntragPersonenType - extends SpezAntragType -{ - - @XmlElement(name = "FATCA") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected FATCAType fatca; - @XmlElement(name = "GSGM") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GMSGType gsgm; - @XmlElement(name = "PEP", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PEPType pep; - @XmlElement(name = "Treuhaenderfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected TreuhaenderfrageType treuhaenderfrage; - - /** - * Ruft den Wert der fatca-Eigenschaft ab. - * - * @return - * possible object is - * {@link FATCAType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public FATCAType getFATCA() { - return fatca; - } - - /** - * Legt den Wert der fatca-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FATCAType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFATCA(FATCAType value) { - this.fatca = value; - } - - /** - * Ruft den Wert der gsgm-Eigenschaft ab. - * - * @return - * possible object is - * {@link GMSGType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GMSGType getGSGM() { - return gsgm; - } - - /** - * Legt den Wert der gsgm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GMSGType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGSGM(GMSGType value) { - this.gsgm = value; - } - - /** - * Ruft den Wert der pep-Eigenschaft ab. - * - * @return - * possible object is - * {@link PEPType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PEPType getPEP() { - return pep; - } - - /** - * Legt den Wert der pep-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PEPType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPEP(PEPType value) { - this.pep = value; - } - - /** - * Ruft den Wert der treuhaenderfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link TreuhaenderfrageType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public TreuhaenderfrageType getTreuhaenderfrage() { - return treuhaenderfrage; - } - - /** - * Legt den Wert der treuhaenderfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link TreuhaenderfrageType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTreuhaenderfrage(TreuhaenderfrageType value) { - this.treuhaenderfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragType.java deleted file mode 100644 index 0b4ab818..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezAntragType.java +++ /dev/null @@ -1,719 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.AbgelehnteRisikenType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AntragsartType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DatenverwendungType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.EinwilligungType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ErsatzpolizzenType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.KontierungType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PolizzenversandType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SicherstellungType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VertragspersonType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VorversicherungenType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZahlungsdatenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SpezAntragKfzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SpezAntragKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SpezAntragRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.AntragSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SpezAntragUnfallType; - - -/** - * Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezAntrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntrag_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/>
- *         <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
- *         <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
- *         <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
- *         <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
- *         <element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/>
- *         <element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntrag_Type", propOrder = { - "antragsart", - "personen", - "versicherungsnehmer", - "abweichenderPraemienzahler", - "weitereVersicherungsnehmer", - "weitereVertragspersonen", - "abgelehnteRisiken", - "vorversicherungen", - "zahlungsdaten", - "sepa", - "polizzenversand", - "datenschutzbestimmungen", - "kontierung", - "ersatzpolizzennummer", - "zusendungWeitereDokumente", - "zusaetzlicheAntragsdaten", - "sicherstellungen", - "einwilligungen", - "polizzennr", - "vertragsID" -}) -@XmlSeeAlso({ - SpezAntragRechtsschutzType.class, - SpezAntragUnfallType.class, - SpezAntragKfzType.class, - AntragSachPrivatType.class, - SpezAntragPersonenType.class, - SpezAntragKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SpezAntragType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Antragsart") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AntragsartType antragsart; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int versicherungsnehmer; - @XmlElement(name = "AbweichenderPraemienzahler") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer abweichenderPraemienzahler; - @XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List weitereVersicherungsnehmer; - @XmlElement(name = "WeitereVertragspersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List weitereVertragspersonen; - @XmlElement(name = "AbgelehnteRisiken") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AbgelehnteRisikenType abgelehnteRisiken; - @XmlElement(name = "Vorversicherungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VorversicherungenType vorversicherungen; - @XmlElement(name = "Zahlungsdaten", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZahlungsdatenType zahlungsdaten; - @XmlElement(name = "Sepa") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short sepa; - @XmlElement(name = "Polizzenversand") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PolizzenversandType polizzenversand; - @XmlElement(name = "Datenschutzbestimmungen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DatenverwendungType datenschutzbestimmungen; - @XmlElement(name = "Kontierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List kontierung; - @XmlElement(name = "Ersatzpolizzennummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ErsatzpolizzenType ersatzpolizzennummer; - @XmlElement(name = "ZusendungWeitereDokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusendungWeitereDokumente; - @XmlElement(name = "ZusaetzlicheAntragsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheAntragsdaten; - @XmlElement(name = "Sicherstellungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List sicherstellungen; - @XmlElement(name = "Einwilligungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List einwilligungen; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - - /** - * Ruft den Wert der antragsart-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AntragsartType getAntragsart() { - return antragsart; - } - - /** - * Legt den Wert der antragsart-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragsartType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsart(AntragsartType value) { - this.antragsart = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - - /** - * Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getAbweichenderPraemienzahler() { - return abweichenderPraemienzahler; - } - - /** - * Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbweichenderPraemienzahler(Integer value) { - this.abweichenderPraemienzahler = value; - } - - /** - * Gets the value of the weitereVersicherungsnehmer property. - * - *

- * 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 set method for the weitereVersicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getWeitereVersicherungsnehmer() { - if (weitereVersicherungsnehmer == null) { - weitereVersicherungsnehmer = new ArrayList(); - } - return this.weitereVersicherungsnehmer; - } - - /** - * Gets the value of the weitereVertragspersonen property. - * - *

- * 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 set method for the weitereVertragspersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWeitereVertragspersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VertragspersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getWeitereVertragspersonen() { - if (weitereVertragspersonen == null) { - weitereVertragspersonen = new ArrayList(); - } - return this.weitereVertragspersonen; - } - - /** - * Ruft den Wert der abgelehnteRisiken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbgelehnteRisikenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AbgelehnteRisikenType getAbgelehnteRisiken() { - return abgelehnteRisiken; - } - - /** - * Legt den Wert der abgelehnteRisiken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbgelehnteRisikenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbgelehnteRisiken(AbgelehnteRisikenType value) { - this.abgelehnteRisiken = value; - } - - /** - * Ruft den Wert der vorversicherungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VorversicherungenType getVorversicherungen() { - return vorversicherungen; - } - - /** - * Legt den Wert der vorversicherungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorversicherungen(VorversicherungenType value) { - this.vorversicherungen = value; - } - - /** - * Ruft den Wert der zahlungsdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZahlungsdatenType getZahlungsdaten() { - return zahlungsdaten; - } - - /** - * Legt den Wert der zahlungsdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlungsdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlungsdaten(ZahlungsdatenType value) { - this.zahlungsdaten = value; - } - - /** - * Ruft den Wert der sepa-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getSepa() { - return sepa; - } - - /** - * Legt den Wert der sepa-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSepa(Short value) { - this.sepa = value; - } - - /** - * Ruft den Wert der polizzenversand-Eigenschaft ab. - * - * @return - * possible object is - * {@link PolizzenversandType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PolizzenversandType getPolizzenversand() { - return polizzenversand; - } - - /** - * Legt den Wert der polizzenversand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PolizzenversandType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzenversand(PolizzenversandType value) { - this.polizzenversand = value; - } - - /** - * Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab. - * - * @return - * possible object is - * {@link DatenverwendungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DatenverwendungType getDatenschutzbestimmungen() { - return datenschutzbestimmungen; - } - - /** - * Legt den Wert der datenschutzbestimmungen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DatenverwendungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDatenschutzbestimmungen(DatenverwendungType value) { - this.datenschutzbestimmungen = value; - } - - /** - * Gets the value of the kontierung property. - * - *

- * 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 set method for the kontierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKontierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KontierungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKontierung() { - if (kontierung == null) { - kontierung = new ArrayList(); - } - return this.kontierung; - } - - /** - * Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErsatzpolizzenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ErsatzpolizzenType getErsatzpolizzennummer() { - return ersatzpolizzennummer; - } - - /** - * Legt den Wert der ersatzpolizzennummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErsatzpolizzenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsatzpolizzennummer(ErsatzpolizzenType value) { - this.ersatzpolizzennummer = value; - } - - /** - * Gets the value of the zusendungWeitereDokumente property. - * - *

- * 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 set method for the zusendungWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusendungWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusendungWeitereDokumente() { - if (zusendungWeitereDokumente == null) { - zusendungWeitereDokumente = new ArrayList(); - } - return this.zusendungWeitereDokumente; - } - - /** - * Gets the value of the zusaetzlicheAntragsdaten property. - * - *

- * 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 set method for the zusaetzlicheAntragsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheAntragsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheAntragsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheAntragsdaten() { - if (zusaetzlicheAntragsdaten == null) { - zusaetzlicheAntragsdaten = new ArrayList(); - } - return this.zusaetzlicheAntragsdaten; - } - - /** - * Gets the value of the sicherstellungen property. - * - *

- * 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 set method for the sicherstellungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSicherstellungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SicherstellungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSicherstellungen() { - if (sicherstellungen == null) { - sicherstellungen = new ArrayList(); - } - return this.sicherstellungen; - } - - /** - * Gets the value of the einwilligungen property. - * - *

- * 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 set method for the einwilligungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEinwilligungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EinwilligungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getEinwilligungen() { - if (einwilligungen == null) { - einwilligungen = new ArrayList(); - } - return this.einwilligungen; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBOASchrittType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBOASchrittType.java deleted file mode 100644 index 0cc27e11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBOASchrittType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrackter Basistyp für das Datenmodell aller BOA-Prozessschritte - * - *

Java-Klasse für SpezBOASchritt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBOASchritt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBOASchritt_Type") -@XmlSeeAlso({ - SpezBerechnungType.class, - SpezOffertType.class, - SpezAntragType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBOASchrittType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBerechnungType.java deleted file mode 100644 index 130c4bd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezBerechnungType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SpezBerechnungKfzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SpezBerechnungKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SpezBerechnungLebenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SpezBerechnungRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.BerechnungSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SpezBerechnungUnfallType; - - -/** - * Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist - * - *

Java-Klasse für SpezBerechnung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnung_Type", propOrder = { - "personen" -}) -@XmlSeeAlso({ - SpezBerechnungRechtsschutzType.class, - SpezBerechnungUnfallType.class, - SpezBerechnungKfzType.class, - BerechnungSachPrivatType.class, - SpezBerechnungLebenType.class, - SpezBerechnungKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SpezBerechnungType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Personen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List personen; - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezOffertType.java deleted file mode 100644 index 8db37f73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SpezOffertType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.BeteiligtePersonVertragType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SpezOffertKfzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SpezOffertKrankenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SpezOffertLebenType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SpezOffertRechtsschutzType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.OffertSachPrivatType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SpezOffertUnfallType; - - -/** - * Abstrakter Basistyp Offert, der bei Request und Response gleich ist - * - *

Java-Klasse für SpezOffert_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffert_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
- *       <sequence>
- *         <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
- *         <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffert_Type", propOrder = { - "offertnummer", - "personen", - "versicherungsnehmer" -}) -@XmlSeeAlso({ - SpezOffertRechtsschutzType.class, - SpezOffertUnfallType.class, - SpezOffertKfzType.class, - OffertSachPrivatType.class, - SpezOffertLebenType.class, - SpezOffertKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SpezOffertType - extends SpezBOASchrittType -{ - - @XmlElement(name = "Offertnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType offertnummer; - @XmlElement(name = "Personen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List personen; - @XmlElement(name = "Versicherungsnehmer") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int versicherungsnehmer; - - /** - * Ruft den Wert der offertnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getOffertnummer() { - return offertnummer; - } - - /** - * Legt den Wert der offertnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertnummer(ObjektIdType value) { - this.offertnummer = value; - } - - /** - * Gets the value of the personen property. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonVertragType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - - /** - * Ruft den Wert der versicherungsnehmer-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getVersicherungsnehmer() { - return versicherungsnehmer; - } - - /** - * Legt den Wert der versicherungsnehmer-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersicherungsnehmer(int value) { - this.versicherungsnehmer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestGenType.java deleted file mode 100644 index 6bc03451..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestGenType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -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_9_0.on2antrag.kranken.SubmitApplicationKrankenRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; - - -/** - * Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen - * - *

Java-Klasse für SubmitApplicationRequestGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequestGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = { - "produktmetadaten" -}) -@XmlSeeAlso({ - SubmitApplicationUnfallRequestType.class, - SubmitApplicationSachPrivatRequestType.class, - SubmitApplicationLebenRequestType.class, - SubmitApplicationKrankenRequest.class, - SubmitApplicationRechtsschutzRequest.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SubmitApplicationRequestGenType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Produktmetadaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean produktmetadaten; - - /** - * Ruft den Wert der produktmetadaten-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isProduktmetadaten() { - return produktmetadaten; - } - - /** - * Legt den Wert der produktmetadaten-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProduktmetadaten(boolean value) { - this.produktmetadaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestType.java deleted file mode 100644 index 431588f8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationRequestType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.DateianhangType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzRequestType; - - -/** - * Abstrakter Request für die Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
- *       <sequence>
- *         <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { - "dateianhaenge", - "dokumente", - "antragsnummer" -}) -@XmlSeeAlso({ - SubmitApplicationKfzRequestType.class, - SubmitApplicationRequestGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SubmitApplicationRequestType - extends BOAProcessRequestType -{ - - @XmlElement(name = "Dateianhaenge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dateianhaenge; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - @XmlElement(name = "Antragsnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType antragsnummer; - - /** - * Gets the value of the dateianhaenge property. - * - *

- * 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 set method for the dateianhaenge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDateianhaenge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DateianhangType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDateianhaenge() { - if (dateianhaenge == null) { - dateianhaenge = new ArrayList(); - } - return this.dateianhaenge; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseGenType.java deleted file mode 100644 index 1b0e0ab9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseGenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponseGen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponseGen_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponseGen_Type") -@XmlSeeAlso({ - SubmitApplicationUnfallResponseType.class, - SubmitApplicationSachPrivatResponseType.class, - SubmitApplicationLebenResponseType.class, - SubmitApplicationKrankenResponse.class, - SubmitApplicationRechtsschutzResponse.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SubmitApplicationResponseGenType - extends SubmitApplicationResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseType.java deleted file mode 100644 index cd30fd77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/SubmitApplicationResponseType.java +++ /dev/null @@ -1,175 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.DokumentInfoType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProzessDokumentBasisType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzResponseType; - - -/** - * Abstrakter Response der Antragsüberleitung - * - *

Java-Klasse für SubmitApplicationResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
- *       <sequence>
- *         <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
- *         <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationResponse_Type", propOrder = { - "antragstatus", - "antragsnummer", - "dokumente", - "dokumenteAnforderungen" -}) -@XmlSeeAlso({ - SubmitApplicationKfzResponseType.class, - SubmitApplicationResponseGenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SubmitApplicationResponseType - extends BOAProcessResponseType -{ - - @XmlElement(name = "Antragstatus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int antragstatus; - @XmlElement(name = "Antragsnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType antragsnummer; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - @XmlElement(name = "DokumenteAnforderungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumenteAnforderungen; - - /** - * Ruft den Wert der antragstatus-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getAntragstatus() { - return antragstatus; - } - - /** - * Legt den Wert der antragstatus-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragstatus(int value) { - this.antragstatus = value; - } - - /** - * Ruft den Wert der antragsnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getAntragsnummer() { - return antragsnummer; - } - - /** - * Legt den Wert der antragsnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsnummer(ObjektIdType value) { - this.antragsnummer = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Gets the value of the dokumenteAnforderungen property. - * - *

- * 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 set method for the dokumenteAnforderungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumenteAnforderungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProzessDokumentBasisType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumenteAnforderungen() { - if (dokumenteAnforderungen == null) { - dokumenteAnforderungen = new ArrayList(); - } - return this.dokumenteAnforderungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 90c17d1c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/package-info.java deleted file mode 100644 index 45efde95..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ArtBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ArtBesichtigungType.java deleted file mode 100644 index 3386d545..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ArtBesichtigungType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ArtBesichtigung_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="ArtBesichtigung_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Besichtigung durch Betreuer"/>
- *     <enumeration value="Kaufvertrag Markenhaendler mit Beschreibung"/>
- *     <enumeration value="Besichtigung durch ARBOE, OEAMTC"/>
- *     <enumeration value="Nachbesichtigung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ArtBesichtigung_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum ArtBesichtigungType { - - @XmlEnumValue("Besichtigung durch Betreuer") - BESICHTIGUNG_DURCH_BETREUER("Besichtigung durch Betreuer"), - @XmlEnumValue("Kaufvertrag Markenhaendler mit Beschreibung") - KAUFVERTRAG_MARKENHAENDLER_MIT_BESCHREIBUNG("Kaufvertrag Markenhaendler mit Beschreibung"), - @XmlEnumValue("Besichtigung durch ARBOE, OEAMTC") - BESICHTIGUNG_DURCH_ARBOE_OEAMTC("Besichtigung durch ARBOE, OEAMTC"), - @XmlEnumValue("Nachbesichtigung") - NACHBESICHTIGUNG("Nachbesichtigung"); - private final String value; - - ArtBesichtigungType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ArtBesichtigungType fromValue(String v) { - for (ArtBesichtigungType c: ArtBesichtigungType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index 949b727b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index a81eafe7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index 413ea7e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index 456779b8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index d5a2fa2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 114048a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 8c0a98af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 54956f9e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,111 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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_9_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 819f7507..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,324 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.math.BigInteger; -import javax.annotation.Generated; -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; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 605766cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_15.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index 501aee77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallSystemType.java deleted file mode 100644 index 49620027..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/InsassenUnfallSystemType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für InsassenUnfallSystem_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="InsassenUnfallSystem_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pauschalsystem"/>
- *     <enumeration value="Platzsystem1"/>
- *     <enumeration value="Platzsystem2"/>
- *     <enumeration value="Personensystem"/>
- *     <enumeration value="Lenkerunfallversicherung"/>
- *     <enumeration value="Aufsassenunfallversicherung"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "InsassenUnfallSystem_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum InsassenUnfallSystemType { - - @XmlEnumValue("Pauschalsystem") - PAUSCHALSYSTEM("Pauschalsystem"), - @XmlEnumValue("Platzsystem1") - PLATZSYSTEM_1("Platzsystem1"), - @XmlEnumValue("Platzsystem2") - PLATZSYSTEM_2("Platzsystem2"), - @XmlEnumValue("Personensystem") - PERSONENSYSTEM("Personensystem"), - @XmlEnumValue("Lenkerunfallversicherung") - LENKERUNFALLVERSICHERUNG("Lenkerunfallversicherung"), - @XmlEnumValue("Aufsassenunfallversicherung") - AUFSASSENUNFALLVERSICHERUNG("Aufsassenunfallversicherung"); - private final String value; - - InsassenUnfallSystemType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static InsassenUnfallSystemType fromValue(String v) { - for (InsassenUnfallSystemType c: InsassenUnfallSystemType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index 293e8dcc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,321 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.math.BigDecimal; -import javax.annotation.Generated; -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_9_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt", - "neuwertklausel" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean eingeschraenkt; - @XmlElement(name = "Neuwertklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean neuwertklausel; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 44932c47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ObjectFactory.java deleted file mode 100644 index 1c03739b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ObjectFactory.java +++ /dev/null @@ -1,387 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _CalculateKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzRequest"); - private final static QName _CalculateKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CalculateKfzResponse"); - private final static QName _CreateOfferKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzRequest"); - private final static QName _CreateOfferKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateOfferKfzResponse"); - private final static QName _CreateApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzRequest"); - private final static QName _CreateApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "CreateApplicationKfzResponse"); - private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest"); - private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse"); - private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link VorversicherungenKfzType } - * - */ - public VorversicherungenKfzType createVorversicherungenKfzType() { - return new VorversicherungenKfzType(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType } - * - */ - public CreateOfferKfzResponseType createCreateOfferKfzResponseType() { - return new CreateOfferKfzResponseType(); - } - - /** - * Create an instance of {@link CalculateKfzRequestType } - * - */ - public CalculateKfzRequestType createCalculateKfzRequestType() { - return new CalculateKfzRequestType(); - } - - /** - * Create an instance of {@link CalculateKfzResponseType } - * - */ - public CalculateKfzResponseType createCalculateKfzResponseType() { - return new CalculateKfzResponseType(); - } - - /** - * Create an instance of {@link CreateOfferKfzRequestType } - * - */ - public CreateOfferKfzRequestType createCreateOfferKfzRequestType() { - return new CreateOfferKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzRequestType } - * - */ - public CreateApplicationKfzRequestType createCreateApplicationKfzRequestType() { - return new CreateApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationKfzResponseType } - * - */ - public CreateApplicationKfzResponseType createCreateApplicationKfzResponseType() { - return new CreateApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzRequestType } - * - */ - public SubmitApplicationKfzRequestType createSubmitApplicationKfzRequestType() { - return new SubmitApplicationKfzRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationKfzResponseType } - * - */ - public SubmitApplicationKfzResponseType createSubmitApplicationKfzResponseType() { - return new SubmitApplicationKfzResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType createVerkaufsproduktKfzType() { - return new VerkaufsproduktKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzType } - * - */ - public ProduktKfzType createProduktKfzType() { - return new ProduktKfzType(); - } - - /** - * Create an instance of {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType createHaftpflichtKfzType() { - return new HaftpflichtKfzType(); - } - - /** - * Create an instance of {@link TeilkaskoKfzType } - * - */ - public TeilkaskoKfzType createTeilkaskoKfzType() { - return new TeilkaskoKfzType(); - } - - /** - * Create an instance of {@link VollkaskoKfzType } - * - */ - public VollkaskoKfzType createVollkaskoKfzType() { - return new VollkaskoKfzType(); - } - - /** - * Create an instance of {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType createInsassenUnfallKfzType() { - return new InsassenUnfallKfzType(); - } - - /** - * Create an instance of {@link LenkerUnfallKfzType } - * - */ - public LenkerUnfallKfzType createLenkerUnfallKfzType() { - return new LenkerUnfallKfzType(); - } - - /** - * Create an instance of {@link AssistanceKfzType } - * - */ - public AssistanceKfzType createAssistanceKfzType() { - return new AssistanceKfzType(); - } - - /** - * Create an instance of {@link ProduktKfzRechtsschutzType } - * - */ - public ProduktKfzRechtsschutzType createProduktKfzRechtsschutzType() { - return new ProduktKfzRechtsschutzType(); - } - - /** - * Create an instance of {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType createVerkehrsrechtsschutzKfzType() { - return new VerkehrsrechtsschutzKfzType(); - } - - /** - * Create an instance of {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType createSpezBerechnungKfzType() { - return new SpezBerechnungKfzType(); - } - - /** - * Create an instance of {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType createSpezOffertKfzType() { - return new SpezOffertKfzType(); - } - - /** - * Create an instance of {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType createSpezAntragKfzType() { - return new SpezAntragKfzType(); - } - - /** - * Create an instance of {@link ZusaetzlicheKfzdatenType } - * - */ - public ZusaetzlicheKfzdatenType createZusaetzlicheKfzdatenType() { - return new ZusaetzlicheKfzdatenType(); - } - - /** - * Create an instance of {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType createWechselkennzeichenType() { - return new WechselkennzeichenType(); - } - - /** - * Create an instance of {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType createFzZustandBesichtigungType() { - return new FzZustandBesichtigungType(); - } - - /** - * Create an instance of {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType createZusaetzlicheAntragsdatenKfzType() { - return new ZusaetzlicheAntragsdatenKfzType(); - } - - /** - * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz } - * - */ - public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() { - return new VorversicherungenKfzType.VorversicherungKfz(); - } - - /** - * Create an instance of {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort createCreateOfferKfzResponseTypeOffertantwort() { - return new CreateOfferKfzResponseType.Offertantwort(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzRequest") - public JAXBElement createCalculateKfzRequest(CalculateKfzRequestType value) { - return new JAXBElement(_CalculateKfzRequest_QNAME, CalculateKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CalculateKfzResponse") - public JAXBElement createCalculateKfzResponse(CalculateKfzResponseType value) { - return new JAXBElement(_CalculateKfzResponse_QNAME, CalculateKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzRequest") - public JAXBElement createCreateOfferKfzRequest(CreateOfferKfzRequestType value) { - return new JAXBElement(_CreateOfferKfzRequest_QNAME, CreateOfferKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateOfferKfzResponse") - public JAXBElement createCreateOfferKfzResponse(CreateOfferKfzResponseType value) { - return new JAXBElement(_CreateOfferKfzResponse_QNAME, CreateOfferKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzRequest") - public JAXBElement createCreateApplicationKfzRequest(CreateApplicationKfzRequestType value) { - return new JAXBElement(_CreateApplicationKfzRequest_QNAME, CreateApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "CreateApplicationKfzResponse") - public JAXBElement createCreateApplicationKfzResponse(CreateApplicationKfzResponseType value) { - return new JAXBElement(_CreateApplicationKfzResponse_QNAME, CreateApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzRequest") - public JAXBElement createSubmitApplicationKfzRequest(SubmitApplicationKfzRequestType value) { - return new JAXBElement(_SubmitApplicationKfzRequest_QNAME, SubmitApplicationKfzRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationKfzResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "SubmitApplicationKfzResponse") - public JAXBElement createSubmitApplicationKfzResponse(SubmitApplicationKfzResponseType value) { - return new JAXBElement(_SubmitApplicationKfzResponse_QNAME, SubmitApplicationKfzResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr") - public JAXBElement createFahrzeugRefLfdNr(String value) { - return new JAXBElement(_FahrzeugRefLfdNr_QNAME, String.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 6f60557d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index f06999f9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,251 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type" minOccurs="0"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Kasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "kasko", - "insassenunfall", - "assistance" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vollkasko; - @XmlElement(name = "Kasko") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List kasko; - @XmlElement(name = "Insassenunfall") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List insassenunfall; - @XmlElement(name = "Assistance") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Gets the value of the kasko property. - * - *

- * 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 set method for the kasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KaskoKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKasko() { - if (kasko == null) { - kasko = new ArrayList(); - } - return this.kasko; - } - - /** - * Gets the value of the insassenunfall property. - * - *

- * 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 set method for the insassenunfall property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getInsassenunfall().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsassenUnfallKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getInsassenunfall() { - if (insassenunfall == null) { - insassenunfall = new ArrayList(); - } - return this.insassenunfall; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAmFahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAmFahrzeugType.java deleted file mode 100644 index a129306a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAmFahrzeugType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAmFahrzeug_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAmFahrzeug_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an der Karosserie"/>
- *     <enumeration value="Schäden an der Karosserie"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAmFahrzeug_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum SchaedenAmFahrzeugType { - - @XmlEnumValue("keine Sch\u00e4den an der Karosserie") - KEINE_SCHÄDEN_AN_DER_KAROSSERIE("keine Sch\u00e4den an der Karosserie"), - @XmlEnumValue("Sch\u00e4den an der Karosserie") - SCHÄDEN_AN_DER_KAROSSERIE("Sch\u00e4den an der Karosserie"); - private final String value; - - SchaedenAmFahrzeugType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAmFahrzeugType fromValue(String v) { - for (SchaedenAmFahrzeugType c: SchaedenAmFahrzeugType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java deleted file mode 100644 index 54a10902..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SchaedenAnScheibenKleinglasType.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für SchaedenAnScheibenKleinglas_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="SchaedenAnScheibenKleinglas_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Schäden an Scheiben / Kleinglas"/>
- *     <enumeration value="Schäden an Scheiben / Kleinglas"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SchaedenAnScheibenKleinglas_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum SchaedenAnScheibenKleinglasType { - - @XmlEnumValue("keine Sch\u00e4den an Scheiben / Kleinglas") - KEINE_SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("keine Sch\u00e4den an Scheiben / Kleinglas"), - @XmlEnumValue("Sch\u00e4den an Scheiben / Kleinglas") - SCHÄDEN_AN_SCHEIBEN_KLEINGLAS("Sch\u00e4den an Scheiben / Kleinglas"); - private final String value; - - SchaedenAnScheibenKleinglasType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SchaedenAnScheibenKleinglasType fromValue(String v) { - for (SchaedenAnScheibenKleinglasType c: SchaedenAnScheibenKleinglasType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezAntragKfzType.java deleted file mode 100644 index f2839370..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezAntragKfzType.java +++ /dev/null @@ -1,167 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.BonusMalusSystemType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VinkularglaeubigerType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird - * - *

Java-Klasse für SpezAntragKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *         <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKfz_Type", propOrder = { - "verkaufsprodukt", - "bonusMalus", - "vinkulierung", - "zusaetzlicheKfzDaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezAntragKfzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - @XmlElement(name = "BonusMalus") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BonusMalusSystemType bonusMalus; - @XmlElement(name = "Vinkulierung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VinkularglaeubigerType vinkulierung; - @XmlElement(name = "ZusaetzlicheKfzDaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - - /** - * Ruft den Wert der bonusMalus-Eigenschaft ab. - * - * @return - * possible object is - * {@link BonusMalusSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BonusMalusSystemType getBonusMalus() { - return bonusMalus; - } - - /** - * Legt den Wert der bonusMalus-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BonusMalusSystemType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBonusMalus(BonusMalusSystemType value) { - this.bonusMalus = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VinkularglaeubigerType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVinkulierung(VinkularglaeubigerType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheKfzdatenType getZusaetzlicheKfzDaten() { - return zusaetzlicheKfzDaten; - } - - /** - * Legt den Wert der zusaetzlicheKfzDaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheKfzdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheKfzDaten(ZusaetzlicheKfzdatenType value) { - this.zusaetzlicheKfzDaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index 40f9c70f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 28004bff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index ea7b8bfa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index 7bf087ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index a56eeb68..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,63 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index b83684b3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,75 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VarianteLeihwagenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VarianteLeihwagenType.java deleted file mode 100644 index d1a3e0a9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VarianteLeihwagenType.java +++ /dev/null @@ -1,49 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für VarianteLeihwagen_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="VarianteLeihwagen_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="VA"/>
- *     <enumeration value="VB"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "VarianteLeihwagen_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum VarianteLeihwagenType { - - - /** - * ohne Leihwagen - * - */ - VA, - - /** - * mit Leihwagen - * - */ - VB; - - public String value() { - return name(); - } - - public static VarianteLeihwagenType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index bc712926..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,254 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds2Types.v2_15.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = value; - } - - /** - * Ruft den Wert der plz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPLZ() { - return plz; - } - - /** - * Legt den Wert der plz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPLZ(String value) { - this.plz = value; - } - - /** - * Ruft den Wert der persArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PersArtCdType getPersArtCd() { - return persArtCd; - } - - /** - * Legt den Wert der persArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersArtCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersArtCd(PersArtCdType value) { - this.persArtCd = value; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index 479bb618..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index a73572cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "leasingklausel" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Leasingklausel") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VorversicherungenKfzType.java deleted file mode 100644 index e6eba2b0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/VorversicherungenKfzType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VorversicherungenDetailType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VorversicherungenType; - - -/** - * Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. - * - *

Java-Klasse für VorversicherungenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *                 <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenKfz_Type", propOrder = { - "vorversicherungKfz", - "vorversicherungRechtsschutz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VorversicherungenKfzType - extends VorversicherungenType -{ - - @XmlElement(name = "VorversicherungKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vorversicherungKfz; - @XmlElement(name = "VorversicherungRechtsschutz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VorversicherungenDetailType vorversicherungRechtsschutz; - - /** - * Gets the value of the vorversicherungKfz property. - * - *

- * 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 set method for the vorversicherungKfz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungKfz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungenKfzType.VorversicherungKfz } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVorversicherungKfz() { - if (vorversicherungKfz == null) { - vorversicherungKfz = new ArrayList(); - } - return this.vorversicherungKfz; - } - - /** - * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VorversicherungenDetailType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VorversicherungenDetailType getVorversicherungRechtsschutz() { - return vorversicherungRechtsschutz; - } - - /** - * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VorversicherungenDetailType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) { - this.vorversicherungRechtsschutz = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
-     *       <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class VorversicherungKfz - extends VorversicherungenDetailType - { - - @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vtgSparteCd; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index 62c24260..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index aa8454c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 02e917aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,296 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -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; - - -/** - * Type zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 6dc013dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 695e0935..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenRequest.java deleted file mode 100644 index 4df01a5b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Kranken - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateKrankenRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungKrankenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungKrankenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(SpezBerechnungKrankenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenResponse.java deleted file mode 100644 index f2a76793..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CalculateKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Kranken-Berechnung - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateKrankenResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungKrankenType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungKrankenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(SpezBerechnungKrankenType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenRequest.java deleted file mode 100644 index bb648de3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationKrankenRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenResponse.java deleted file mode 100644 index aa8b0fd2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateApplicationKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Krankenantrags - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationKrankenResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenRequest.java deleted file mode 100644 index e0765501..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferKrankenRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertKrankenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertKrankenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(SpezOffertKrankenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenResponse.java deleted file mode 100644 index 1fbfbaeb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/CreateOfferKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Kranken-Offerts - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferKrankenResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertKrankenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertKrankenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(SpezOffertKrankenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ElementarproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ElementarproduktKrankenType.java deleted file mode 100644 index 26c295a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ElementarproduktKrankenType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für ElementarproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKranken_Type", propOrder = { - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementarproduktKrankenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ObjectFactory.java deleted file mode 100644 index 7f4d736a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ObjectFactory.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateKrankenRequest } - * - */ - public CalculateKrankenRequest createCalculateKrankenRequest() { - return new CalculateKrankenRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungKrankenType } - * - */ - public SpezBerechnungKrankenType createSpezBerechnungKrankenType() { - return new SpezBerechnungKrankenType(); - } - - /** - * Create an instance of {@link CalculateKrankenResponse } - * - */ - public CalculateKrankenResponse createCalculateKrankenResponse() { - return new CalculateKrankenResponse(); - } - - /** - * Create an instance of {@link CreateOfferKrankenRequest } - * - */ - public CreateOfferKrankenRequest createCreateOfferKrankenRequest() { - return new CreateOfferKrankenRequest(); - } - - /** - * Create an instance of {@link SpezOffertKrankenType } - * - */ - public SpezOffertKrankenType createSpezOffertKrankenType() { - return new SpezOffertKrankenType(); - } - - /** - * Create an instance of {@link CreateOfferKrankenResponse } - * - */ - public CreateOfferKrankenResponse createCreateOfferKrankenResponse() { - return new CreateOfferKrankenResponse(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenRequest } - * - */ - public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() { - return new CreateApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SpezAntragKrankenType } - * - */ - public SpezAntragKrankenType createSpezAntragKrankenType() { - return new SpezAntragKrankenType(); - } - - /** - * Create an instance of {@link CreateApplicationKrankenResponse } - * - */ - public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() { - return new CreateApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenRequest } - * - */ - public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() { - return new SubmitApplicationKrankenRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationKrankenResponse } - * - */ - public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() { - return new SubmitApplicationKrankenResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktKrankenType } - * - */ - public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() { - return new VerkaufsproduktKrankenType(); - } - - /** - * Create an instance of {@link ProduktKrankenType } - * - */ - public ProduktKrankenType createProduktKrankenType() { - return new ProduktKrankenType(); - } - - /** - * Create an instance of {@link ElementarproduktKrankenType } - * - */ - public ElementarproduktKrankenType createElementarproduktKrankenType() { - return new ElementarproduktKrankenType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ProduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ProduktKrankenType.java deleted file mode 100644 index 28cdb32c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/ProduktKrankenType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKranken_Type", propOrder = { - "elementarprodukte", - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktKrankenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Elementarprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elementarprodukte; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the elementarprodukte property. - * - *

- * 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 set method for the elementarprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktKrankenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getElementarprodukte() { - if (elementarprodukte == null) { - elementarprodukte = new ArrayList(); - } - return this.elementarprodukte; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezAntragKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezAntragKrankenType.java deleted file mode 100644 index 327d8305..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezAntragKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezAntragKrankenType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezBerechnungKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezBerechnungKrankenType.java deleted file mode 100644 index 644b4af3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezBerechnungKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBerechnungKrankenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezOffertKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezOffertKrankenType.java deleted file mode 100644 index 4ad8826c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SpezOffertKrankenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKranken_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezOffertKrankenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktKrankenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktKrankenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java deleted file mode 100644 index 4bd0363e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenRequest.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationKrankenRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationKrankenRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKrankenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKrankenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragKrankenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java deleted file mode 100644 index d6775a51..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/SubmitApplicationKrankenResponse.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationKrankenResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationKrankenResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragKrankenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragKrankenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKrankenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragKrankenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/VerkaufsproduktKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/VerkaufsproduktKrankenType.java deleted file mode 100644 index 37fa32af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/VerkaufsproduktKrankenType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung - * - *

Java-Klasse für VerkaufsproduktKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Krankenprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *         <element name="Gruppe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = { - "krankenprodukte", - "zusatzprodukte", - "versichertePersonen", - "gruppe" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktKrankenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Krankenprodukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List krankenprodukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versichertePersonen; - @XmlElement(name = "Gruppe") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gruppe; - - /** - * Gets the value of the krankenprodukte property. - * - *

- * 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 set method for the krankenprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKrankenprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKrankenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKrankenprodukte() { - if (krankenprodukte == null) { - krankenprodukte = new ArrayList(); - } - return this.krankenprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - - /** - * Ruft den Wert der gruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGruppe() { - return gruppe; - } - - /** - * Legt den Wert der gruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGruppe(String value) { - this.gruppe = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/package-info.java deleted file mode 100644 index ed42bb63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/kranken/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenRequestType.java deleted file mode 100644 index c7d742de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Leben - * - *

Java-Klasse für CalculateLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateLebenRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungLebenType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungLebenType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(SpezBerechnungLebenType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenResponseType.java deleted file mode 100644 index ba59c628..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CalculateLebenResponseType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Leben-Berechnung - * - *

Java-Klasse für CalculateLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateLebenResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateLebenResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungLebenType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungLebenType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(SpezBerechnungLebenType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenRequestType.java deleted file mode 100644 index d806138f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationLebenRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenResponseType.java deleted file mode 100644 index 2d6f5e7d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateApplicationLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Leben-Antrags - * - *

Java-Klasse für CreateApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationLebenResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenRequestType.java deleted file mode 100644 index 2b416cf5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferLebenRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertLebenType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertLebenType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(SpezOffertLebenType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenResponseType.java deleted file mode 100644 index e6f24781..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/CreateOfferLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Leben-Offerts - * - *

Java-Klasse für CreateOfferLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferLebenResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertLebenType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertLebenType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(SpezOffertLebenType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ObjectFactory.java deleted file mode 100644 index 5182c064..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ObjectFactory.java +++ /dev/null @@ -1,360 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest"); - private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse"); - private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest"); - private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse"); - private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest"); - private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse"); - private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest"); - private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse"); - private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateLebenRequestType } - * - */ - public CalculateLebenRequestType createCalculateLebenRequestType() { - return new CalculateLebenRequestType(); - } - - /** - * Create an instance of {@link CalculateLebenResponseType } - * - */ - public CalculateLebenResponseType createCalculateLebenResponseType() { - return new CalculateLebenResponseType(); - } - - /** - * Create an instance of {@link CreateOfferLebenRequestType } - * - */ - public CreateOfferLebenRequestType createCreateOfferLebenRequestType() { - return new CreateOfferLebenRequestType(); - } - - /** - * Create an instance of {@link CreateOfferLebenResponseType } - * - */ - public CreateOfferLebenResponseType createCreateOfferLebenResponseType() { - return new CreateOfferLebenResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenRequestType } - * - */ - public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() { - return new CreateApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationLebenResponseType } - * - */ - public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() { - return new CreateApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenRequestType } - * - */ - public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() { - return new SubmitApplicationLebenRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationLebenResponseType } - * - */ - public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() { - return new SubmitApplicationLebenResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktLebenType } - * - */ - public VerkaufsproduktLebenType createVerkaufsproduktLebenType() { - return new VerkaufsproduktLebenType(); - } - - /** - * Create an instance of {@link ProduktLebenType } - * - */ - public ProduktLebenType createProduktLebenType() { - return new ProduktLebenType(); - } - - /** - * Create an instance of {@link TarifLebenType } - * - */ - public TarifLebenType createTarifLebenType() { - return new TarifLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungLebenType } - * - */ - public ZusatzversicherungLebenType createZusatzversicherungLebenType() { - return new ZusatzversicherungLebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType } - * - */ - public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() { - return new ZusatzversicherungBerufsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType } - * - */ - public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() { - return new ZusatzversicherungErwerbsunfaehigkeitType(); - } - - /** - * Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType } - * - */ - public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() { - return new ZusatzversicherungPraemienuebernahmeAblebenType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfalltodType } - * - */ - public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() { - return new ZusatzversicherungUnfalltodType(); - } - - /** - * Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType } - * - */ - public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() { - return new ZusatzversicherungUnfallinvaliditaetType(); - } - - /** - * Create an instance of {@link ZusatzproduktLebenType } - * - */ - public ZusatzproduktLebenType createZusatzproduktLebenType() { - return new ZusatzproduktLebenType(); - } - - /** - * Create an instance of {@link RentenoptionType } - * - */ - public RentenoptionType createRentenoptionType() { - return new RentenoptionType(); - } - - /** - * Create an instance of {@link VersicherungssummeZusatzbausteinType } - * - */ - public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() { - return new VersicherungssummeZusatzbausteinType(); - } - - /** - * Create an instance of {@link SpezBerechnungLebenType } - * - */ - public SpezBerechnungLebenType createSpezBerechnungLebenType() { - return new SpezBerechnungLebenType(); - } - - /** - * Create an instance of {@link SpezOffertLebenType } - * - */ - public SpezOffertLebenType createSpezOffertLebenType() { - return new SpezOffertLebenType(); - } - - /** - * Create an instance of {@link SpezAntragLebenType } - * - */ - public SpezAntragLebenType createSpezAntragLebenType() { - return new SpezAntragLebenType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest") - public JAXBElement createCalculateLebenRequest(CalculateLebenRequestType value) { - return new JAXBElement(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse") - public JAXBElement createCalculateLebenResponse(CalculateLebenResponseType value) { - return new JAXBElement(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest") - public JAXBElement createCreateOfferLebenRequest(CreateOfferLebenRequestType value) { - return new JAXBElement(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse") - public JAXBElement createCreateOfferLebenResponse(CreateOfferLebenResponseType value) { - return new JAXBElement(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest") - public JAXBElement createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) { - return new JAXBElement(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse") - public JAXBElement createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) { - return new JAXBElement(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest") - public JAXBElement createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) { - return new JAXBElement(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse") - public JAXBElement createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) { - return new JAXBElement(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class) - public JAXBElement createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class) - public JAXBElement createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) { - return new JAXBElement(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ProduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ProduktLebenType.java deleted file mode 100644 index e2a22f49..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ProduktLebenType.java +++ /dev/null @@ -1,78 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktMitVpType; - - -/** - * Typ für ein Produkt in der Sparte Leben. - * - *

Java-Klasse für ProduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktLeben_Type", propOrder = { - "tarife" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktLebenType - extends ProduktMitVpType -{ - - @XmlElement(name = "Tarife") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List tarife; - - /** - * Gets the value of the tarife property. - * - *

- * 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 set method for the tarife property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTarife().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TarifLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getTarife() { - if (tarife == null) { - tarife = new ArrayList(); - } - return this.tarife; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/RentenoptionType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/RentenoptionType.java deleted file mode 100644 index 05afc134..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/RentenoptionType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Rentenoption - * - *

Java-Klasse für Rentenoption_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Rentenoption_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rentenoption_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RentenoptionType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezAntragLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezAntragLebenType.java deleted file mode 100644 index b47a95b2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezAntragLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragPersonenType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezAntragLebenType - extends SpezAntragPersonenType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezBerechnungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezBerechnungLebenType.java deleted file mode 100644 index 6e00d5d0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezBerechnungLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBerechnungLebenType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezOffertLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezOffertLebenType.java deleted file mode 100644 index 10d9cc58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SpezOffertLebenType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertLeben_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezOffertLebenType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktLebenType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktLebenType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktLebenType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenRequestType.java deleted file mode 100644 index 708f5891..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationLebenRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragLebenType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragLebenType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragLebenType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenResponseType.java deleted file mode 100644 index 61839e43..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/SubmitApplicationLebenResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationLebenResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationLebenResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationLebenResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragLebenType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragLebenType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragLebenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragLebenType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/TarifLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/TarifLebenType.java deleted file mode 100644 index f58fdae0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/TarifLebenType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementFondsauswahlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Leben. - * - *

Java-Klasse für TarifLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TarifLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
- *         <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
- *         <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TarifLeben_Type", propOrder = { - "garantierteAblebenssumme", - "rentenoption", - "fondsauswahl", - "zusatzbausteine" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class TarifLebenType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "GarantierteAblebenssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme; - @XmlElement(name = "Rentenoption") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RentenoptionType rentenoption; - @XmlElement(name = "Fondsauswahl") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List fondsauswahl; - @XmlElement(name = "Zusatzbausteine") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzbausteine; - - /** - * Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() { - return garantierteAblebenssumme; - } - - /** - * Legt den Wert der garantierteAblebenssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersicherungssummeZusatzbausteinType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) { - this.garantierteAblebenssumme = value; - } - - /** - * Ruft den Wert der rentenoption-Eigenschaft ab. - * - * @return - * possible object is - * {@link RentenoptionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RentenoptionType getRentenoption() { - return rentenoption; - } - - /** - * Legt den Wert der rentenoption-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RentenoptionType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRentenoption(RentenoptionType value) { - this.rentenoption = value; - } - - /** - * Gets the value of the fondsauswahl property. - * - *

- * 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 set method for the fondsauswahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFondsauswahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementFondsauswahlType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getFondsauswahl() { - if (fondsauswahl == null) { - fondsauswahl = new ArrayList(); - } - return this.fondsauswahl; - } - - /** - * Gets the value of the zusatzbausteine property. - * - *

- * 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 set method for the zusatzbausteine property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzbausteine().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzversicherungLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzbausteine() { - if (zusatzbausteine == null) { - zusatzbausteine = new ArrayList(); - } - return this.zusatzbausteine; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VerkaufsproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VerkaufsproduktLebenType.java deleted file mode 100644 index f23a3c78..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VerkaufsproduktLebenType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Leben - * - *

Java-Klasse für VerkaufsproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = { - "lebenProdukte", - "zusatzprodukte", - "versichertePersonen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktLebenType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "LebenProdukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List lebenProdukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versichertePersonen; - - /** - * Gets the value of the lebenProdukte property. - * - *

- * 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 set method for the lebenProdukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLebenProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktLebenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getLebenProdukte() { - if (lebenProdukte == null) { - lebenProdukte = new ArrayList(); - } - return this.lebenProdukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java deleted file mode 100644 index d3d65739..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/VersicherungssummeZusatzbausteinType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AttributDezimalType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AttributDoubleType; - - -/** - * Definition einer Versicherungssumme in einem Zusatzbaustein - * - *

Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherungssummeZusatzbaustein_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = { - "prozentVersicherungssumme", - "betrag" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VersicherungssummeZusatzbausteinType { - - @XmlElement(name = "ProzentVersicherungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributDoubleType prozentVersicherungssumme; - @XmlElement(name = "Betrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AttributDezimalType betrag; - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDoubleType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributDoubleType getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDoubleType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProzentVersicherungssumme(AttributDoubleType value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributDezimalType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AttributDezimalType getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributDezimalType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetrag(AttributDezimalType value) { - this.betrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/WartefristType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/WartefristType.java deleted file mode 100644 index 5dcaed20..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/WartefristType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element zur Abbildung einer Wartefrist - * - *

Java-Klasse für Wartefrist_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wartefrist_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wartefrist_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class WartefristType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzproduktLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzproduktLebenType.java deleted file mode 100644 index 2eebe9a7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzproduktLebenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren - * - *

Java-Klasse für ZusatzproduktLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktLeben_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktLeben_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzproduktLebenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java deleted file mode 100644 index 79616275..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungBerufsunfaehigkeitType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungBerufsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java deleted file mode 100644 index b21bd0fb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungErwerbsunfaehigkeitType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit - * - *

Java-Klasse für ZusatzversicherungErwerbsunfaehigkeit_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungErwerbsunfaehigkeit_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungErwerbsunfaehigkeit_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungErwerbsunfaehigkeitType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungLebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungLebenType.java deleted file mode 100644 index d51db0aa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungLebenType.java +++ /dev/null @@ -1,45 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZusatzproduktGenerischType; - - -/** - * Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) - * - *

Java-Klasse für ZusatzversicherungLeben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungLeben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ZusatzproduktGenerisch_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungLeben_Type") -@XmlSeeAlso({ - ZusatzversicherungBerufsunfaehigkeitType.class, - ZusatzversicherungErwerbsunfaehigkeitType.class, - ZusatzversicherungPraemienuebernahmeAblebenType.class, - ZusatzversicherungUnfalltodType.class, - ZusatzversicherungUnfallinvaliditaetType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungLebenType - extends ZusatzproduktGenerischType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java deleted file mode 100644 index 9ff5f8a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungPraemienuebernahmeAblebenType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall - * - *

Java-Klasse für ZusatzversicherungPraemienuebernahmeAbleben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungPraemienuebernahmeAbleben_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungPraemienuebernahmeAbleben_Type", propOrder = { - "wartefrist" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungPraemienuebernahmeAblebenType - extends ZusatzversicherungLebenType -{ - - @XmlElement(name = "Wartefrist") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WartefristType wartefrist; - - /** - * Ruft den Wert der wartefrist-Eigenschaft ab. - * - * @return - * possible object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WartefristType getWartefrist() { - return wartefrist; - } - - /** - * Legt den Wert der wartefrist-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WartefristType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWartefrist(WartefristType value) { - this.wartefrist = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java deleted file mode 100644 index 3f0345e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfallinvaliditaetType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet - * - *

Java-Klasse für ZusatzversicherungUnfallinvaliditaet_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfallinvaliditaet_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfallinvaliditaet_Type", propOrder = { - "rest" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungUnfallinvaliditaetType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1491 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java deleted file mode 100644 index da7cdd91..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/ZusatzversicherungUnfalltodType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - * Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod - * - *

Java-Klasse für ZusatzversicherungUnfalltod_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzversicherungUnfalltod_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
- *       <sequence>
- *         <element name="Versicherungssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzversicherungUnfalltod_Type", propOrder = { - "rest" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusatzversicherungUnfalltodType - extends ZusatzversicherungLebenType -{ - - @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", type = JAXBElement.class, required = false) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List> rest; - - /** - * Ruft das restliche Contentmodell ab. - * - *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3_ON2_Antrag_Leben.xsd - * Zeile 1491 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3CommonServiceTypes.xsd - *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: - * Gets the value of the rest property. - * - *

- * 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 set method for the rest property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRest().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >} - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List> getRest() { - if (rest == null) { - rest = new ArrayList>(); - } - return this.rest; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/package-info.java deleted file mode 100644 index 1c45b53f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/leben/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzRequest.java deleted file mode 100644 index 2ced0c6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsanfrage" -}) -@XmlRootElement(name = "CalculateRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateRechtsschutzRequest - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungRechtsschutzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungRechtsschutzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(SpezBerechnungRechtsschutzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzResponse.java deleted file mode 100644 index 2eb0ffae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CalculateRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "berechnungsantwort" -}) -@XmlRootElement(name = "CalculateRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateRechtsschutzResponse - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungRechtsschutzType berechnungsantwort; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungRechtsschutzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(SpezBerechnungRechtsschutzType value) { - this.berechnungsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java deleted file mode 100644 index 2466afa3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationRechtsschutzRequest - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java deleted file mode 100644 index 3eeafaf6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "CreateApplicationRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationRechtsschutzResponse - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java deleted file mode 100644 index b71a9f6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertanfrage" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferRechtsschutzRequest - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertRechtsschutzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertRechtsschutzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(SpezOffertRechtsschutzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java deleted file mode 100644 index 18cce04c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/CreateOfferRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offertantwort" -}) -@XmlRootElement(name = "CreateOfferRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferRechtsschutzResponse - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertRechtsschutzType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertRechtsschutzType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(SpezOffertRechtsschutzType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ElementarproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ElementarproduktRechtsschutzType.java deleted file mode 100644 index 318f4d79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ElementarproduktRechtsschutzType.java +++ /dev/null @@ -1,80 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.ElementarproduktGenerischType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten. - * - *

Java-Klasse für ElementarproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = { - "versInteressenRefLfNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementarproduktRechtsschutzType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ObjectFactory.java deleted file mode 100644 index 76b7df30..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ObjectFactory.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateRechtsschutzRequest } - * - */ - public CalculateRechtsschutzRequest createCalculateRechtsschutzRequest() { - return new CalculateRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezBerechnungRechtsschutzType } - * - */ - public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() { - return new SpezBerechnungRechtsschutzType(); - } - - /** - * Create an instance of {@link CalculateRechtsschutzResponse } - * - */ - public CalculateRechtsschutzResponse createCalculateRechtsschutzResponse() { - return new CalculateRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzRequest } - * - */ - public CreateOfferRechtsschutzRequest createCreateOfferRechtsschutzRequest() { - return new CreateOfferRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezOffertRechtsschutzType } - * - */ - public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() { - return new SpezOffertRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateOfferRechtsschutzResponse } - * - */ - public CreateOfferRechtsschutzResponse createCreateOfferRechtsschutzResponse() { - return new CreateOfferRechtsschutzResponse(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzRequest } - * - */ - public CreateApplicationRechtsschutzRequest createCreateApplicationRechtsschutzRequest() { - return new CreateApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SpezAntragRechtsschutzType } - * - */ - public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() { - return new SpezAntragRechtsschutzType(); - } - - /** - * Create an instance of {@link CreateApplicationRechtsschutzResponse } - * - */ - public CreateApplicationRechtsschutzResponse createCreateApplicationRechtsschutzResponse() { - return new CreateApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzRequest } - * - */ - public SubmitApplicationRechtsschutzRequest createSubmitApplicationRechtsschutzRequest() { - return new SubmitApplicationRechtsschutzRequest(); - } - - /** - * Create an instance of {@link SubmitApplicationRechtsschutzResponse } - * - */ - public SubmitApplicationRechtsschutzResponse createSubmitApplicationRechtsschutzResponse() { - return new SubmitApplicationRechtsschutzResponse(); - } - - /** - * Create an instance of {@link VerkaufsproduktRechtsschutzType } - * - */ - public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() { - return new VerkaufsproduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ProduktRechtsschutzType } - * - */ - public ProduktRechtsschutzType createProduktRechtsschutzType() { - return new ProduktRechtsschutzType(); - } - - /** - * Create an instance of {@link ElementarproduktRechtsschutzType } - * - */ - public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() { - return new ElementarproduktRechtsschutzType(); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ProduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ProduktRechtsschutzType.java deleted file mode 100644 index f35f8df6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/ProduktRechtsschutzType.java +++ /dev/null @@ -1,115 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; - - -/** - * Typ für ein Produkt in der Sparte Rechtsschutz. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktRechtsschutz_Type", propOrder = { - "elementarprodukteRechtsschutz", - "versInteressenRefLfNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktRechtsschutzType - extends ProduktGenerischType -{ - - @XmlElement(name = "ElementarprodukteRechtsschutz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elementarprodukteRechtsschutz; - @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versInteressenRefLfNr; - - /** - * Gets the value of the elementarprodukteRechtsschutz property. - * - *

- * 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 set method for the elementarprodukteRechtsschutz property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getElementarprodukteRechtsschutz().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktRechtsschutzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getElementarprodukteRechtsschutz() { - if (elementarprodukteRechtsschutz == null) { - elementarprodukteRechtsschutz = new ArrayList(); - } - return this.elementarprodukteRechtsschutz; - } - - /** - * Gets the value of the versInteressenRefLfNr property. - * - *

- * 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 set method for the versInteressenRefLfNr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersInteressenRefLfNr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersInteressenRefLfNr() { - if (versInteressenRefLfNr == null) { - versInteressenRefLfNr = new ArrayList(); - } - return this.versInteressenRefLfNr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezAntragRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezAntragRechtsschutzType.java deleted file mode 100644 index 75286d09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezAntragRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezAntragRechtsschutzType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java deleted file mode 100644 index 580a0e66..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBerechnungRechtsschutzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezOffertRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezOffertRechtsschutzType.java deleted file mode 100644 index 0d8d803e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SpezOffertRechtsschutzType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertRechtsschutz_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezOffertRechtsschutzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktRechtsschutzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java deleted file mode 100644 index 87b9de54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsanfrage" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationRechtsschutzRequest - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragRechtsschutzType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragRechtsschutzType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragRechtsschutzType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java deleted file mode 100644 index 14e35b11..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/SubmitApplicationRechtsschutzResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "antragsantwort" -}) -@XmlRootElement(name = "SubmitApplicationRechtsschutzResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationRechtsschutzResponse - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragRechtsschutzType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragRechtsschutzType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragRechtsschutzType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragRechtsschutzType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java deleted file mode 100644 index f88d9dbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Rechtsschutz - * - *

Java-Klasse für VerkaufsproduktRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ProduktRechtsschutz_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteInteressen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktRechtsschutzType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteInteressen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherteInteressen; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktRechtsschutzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteInteressen property. - * - *

- * 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 set method for the versicherteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherteInteressen() { - if (versicherteInteressen == null) { - versicherteInteressen = new ArrayList(); - } - return this.versicherteInteressen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/package-info.java deleted file mode 100644 index 03eb4ff3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/rs/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 1ecb0ebe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index 3eccf015..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 6348b8cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index 450988a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 3da16a09..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index 1bb84c88..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index d311da96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index ae2e856b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 64d7929a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 94dcccb9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index 9453ed8b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,306 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index a6a473ea..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index 8ceea948..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/NebengebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/NebengebaeudeType.java deleted file mode 100644 index 42df5fff..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/NebengebaeudeType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Nebengebaeude_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Nebengebaeude_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Abstellgebaeude"/>
- *     <enumeration value="Badehütte"/>
- *     <enumeration value="Bootshaus"/>
- *     <enumeration value="Carport"/>
- *     <enumeration value="ehemaliges Wirtschaftsgebaeude"/>
- *     <enumeration value="Garage"/>
- *     <enumeration value="Gartenhaus (nicht für Wohnzwecke)"/>
- *     <enumeration value="Holzhütte"/>
- *     <enumeration value="Keller"/>
- *     <enumeration value="Mobilheim (stationaer)"/>
- *     <enumeration value="Nebengebaeude"/>
- *     <enumeration value="Nebengebaeude mit Garage"/>
- *     <enumeration value="Presshaus"/>
- *     <enumeration value="Sauna"/>
- *     <enumeration value="Scheune / Schuppen / Stadel"/>
- *     <enumeration value="Werkstaette"/>
- *     <enumeration value="Werkzeug- und Geraeteschuppen"/>
- *     <enumeration value="Wintergarten, Veranda"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Nebengebaeude_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum NebengebaeudeType { - - @XmlEnumValue("Abstellgebaeude") - ABSTELLGEBAEUDE("Abstellgebaeude"), - @XmlEnumValue("Badeh\u00fctte") - BADEHÜTTE("Badeh\u00fctte"), - @XmlEnumValue("Bootshaus") - BOOTSHAUS("Bootshaus"), - @XmlEnumValue("Carport") - CARPORT("Carport"), - @XmlEnumValue("ehemaliges Wirtschaftsgebaeude") - EHEMALIGES_WIRTSCHAFTSGEBAEUDE("ehemaliges Wirtschaftsgebaeude"), - @XmlEnumValue("Garage") - GARAGE("Garage"), - @XmlEnumValue("Gartenhaus (nicht f\u00fcr Wohnzwecke)") - GARTENHAUS_NICHT_FÜR_WOHNZWECKE("Gartenhaus (nicht f\u00fcr Wohnzwecke)"), - @XmlEnumValue("Holzh\u00fctte") - HOLZHÜTTE("Holzh\u00fctte"), - @XmlEnumValue("Keller") - KELLER("Keller"), - @XmlEnumValue("Mobilheim (stationaer)") - MOBILHEIM_STATIONAER("Mobilheim (stationaer)"), - @XmlEnumValue("Nebengebaeude") - NEBENGEBAEUDE("Nebengebaeude"), - @XmlEnumValue("Nebengebaeude mit Garage") - NEBENGEBAEUDE_MIT_GARAGE("Nebengebaeude mit Garage"), - @XmlEnumValue("Presshaus") - PRESSHAUS("Presshaus"), - @XmlEnumValue("Sauna") - SAUNA("Sauna"), - @XmlEnumValue("Scheune / Schuppen / Stadel") - SCHEUNE_SCHUPPEN_STADEL("Scheune / Schuppen / Stadel"), - @XmlEnumValue("Werkstaette") - WERKSTAETTE("Werkstaette"), - @XmlEnumValue("Werkzeug- und Geraeteschuppen") - WERKZEUG_UND_GERAETESCHUPPEN("Werkzeug- und Geraeteschuppen"), - @XmlEnumValue("Wintergarten, Veranda") - WINTERGARTEN_VERANDA("Wintergarten, Veranda"); - private final String value; - - NebengebaeudeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NebengebaeudeType fromValue(String v) { - for (NebengebaeudeType c: NebengebaeudeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ObjectFactory.java deleted file mode 100644 index 0f52a45b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ObjectFactory.java +++ /dev/null @@ -1,409 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _ProduktGebaeudeversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktGebaeudeversicherung"); - private final static QName _ProduktHaushaltsversicherung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProduktHaushaltsversicherung"); - private final static QName _CalculateSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatRequest"); - private final static QName _CalculateSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CalculateSachPrivatResponse"); - private final static QName _CreateOfferSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatRequest"); - private final static QName _CreateOfferSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateOfferSachPrivatResponse"); - private final static QName _CreateApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatRequest"); - private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); - private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); - private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProduktGebaeudeversicherungType } - * - */ - public ProduktGebaeudeversicherungType createProduktGebaeudeversicherungType() { - return new ProduktGebaeudeversicherungType(); - } - - /** - * Create an instance of {@link ProduktHaushaltsversicherungType } - * - */ - public ProduktHaushaltsversicherungType createProduktHaushaltsversicherungType() { - return new ProduktHaushaltsversicherungType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatRequestType } - * - */ - public CalculateSachPrivatRequestType createCalculateSachPrivatRequestType() { - return new CalculateSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CalculateSachPrivatResponseType } - * - */ - public CalculateSachPrivatResponseType createCalculateSachPrivatResponseType() { - return new CalculateSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatRequestType } - * - */ - public CreateOfferSachPrivatRequestType createCreateOfferSachPrivatRequestType() { - return new CreateOfferSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateOfferSachPrivatResponseType } - * - */ - public CreateOfferSachPrivatResponseType createCreateOfferSachPrivatResponseType() { - return new CreateOfferSachPrivatResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatRequestType } - * - */ - public CreateApplicationSachPrivatRequestType createCreateApplicationSachPrivatRequestType() { - return new CreateApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationSachPrivatResponseType } - * - */ - public CreateApplicationSachPrivatResponseType createCreateApplicationSachPrivatResponseType() { - return new CreateApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatRequestType } - * - */ - public SubmitApplicationSachPrivatRequestType createSubmitApplicationSachPrivatRequestType() { - return new SubmitApplicationSachPrivatRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationSachPrivatResponseType } - * - */ - public SubmitApplicationSachPrivatResponseType createSubmitApplicationSachPrivatResponseType() { - return new SubmitApplicationSachPrivatResponseType(); - } - - /** - * Create an instance of {@link VersichertesObjektSachPrivatType } - * - */ - public VersichertesObjektSachPrivatType createVersichertesObjektSachPrivatType() { - return new VersichertesObjektSachPrivatType(); - } - - /** - * Create an instance of {@link RisikoAdresseType } - * - */ - public RisikoAdresseType createRisikoAdresseType() { - return new RisikoAdresseType(); - } - - /** - * Create an instance of {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType createRisikoHaushaltType() { - return new RisikoHaushaltType(); - } - - /** - * Create an instance of {@link RisikoGebaeudeType } - * - */ - public RisikoGebaeudeType createRisikoGebaeudeType() { - return new RisikoGebaeudeType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenWintergartenType } - * - */ - public ZusaetzlicheGebaeudedatenWintergartenType createZusaetzlicheGebaeudedatenWintergartenType() { - return new ZusaetzlicheGebaeudedatenWintergartenType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSolarthermieType } - * - */ - public ZusaetzlicheGebaeudedatenSolarthermieType createZusaetzlicheGebaeudedatenSolarthermieType() { - return new ZusaetzlicheGebaeudedatenSolarthermieType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenSchwimmbadType } - * - */ - public ZusaetzlicheGebaeudedatenSchwimmbadType createZusaetzlicheGebaeudedatenSchwimmbadType() { - return new ZusaetzlicheGebaeudedatenSchwimmbadType(); - } - - /** - * Create an instance of {@link ZusaetzlicheGebaeudedatenPhotovoltaikType } - * - */ - public ZusaetzlicheGebaeudedatenPhotovoltaikType createZusaetzlicheGebaeudedatenPhotovoltaikType() { - return new ZusaetzlicheGebaeudedatenPhotovoltaikType(); - } - - /** - * Create an instance of {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType createVerkaufsproduktSachPrivatType() { - return new VerkaufsproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ProduktSachPrivatType } - * - */ - public ProduktSachPrivatType createProduktSachPrivatType() { - return new ProduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktSachPrivatType } - * - */ - public ElementarproduktSachPrivatType createElementarproduktSachPrivatType() { - return new ElementarproduktSachPrivatType(); - } - - /** - * Create an instance of {@link ElementarproduktGebaeudeType } - * - */ - public ElementarproduktGebaeudeType createElementarproduktGebaeudeType() { - return new ElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link ElementarproduktHaushaltType } - * - */ - public ElementarproduktHaushaltType createElementarproduktHaushaltType() { - return new ElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link GenElementarproduktGebaeudeType } - * - */ - public GenElementarproduktGebaeudeType createGenElementarproduktGebaeudeType() { - return new GenElementarproduktGebaeudeType(); - } - - /** - * Create an instance of {@link GenElementarproduktHaushaltType } - * - */ - public GenElementarproduktHaushaltType createGenElementarproduktHaushaltType() { - return new GenElementarproduktHaushaltType(); - } - - /** - * Create an instance of {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType createBerechnungSachPrivatType() { - return new BerechnungSachPrivatType(); - } - - /** - * Create an instance of {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType createOffertSachPrivatType() { - return new OffertSachPrivatType(); - } - - /** - * Create an instance of {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType createAntragSachPrivatType() { - return new AntragSachPrivatType(); - } - - /** - * Create an instance of {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType createUpsellingSachPrivatResponseType() { - return new UpsellingSachPrivatResponseType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktGebaeudeversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktGebaeudeversicherung") - public JAXBElement createProduktGebaeudeversicherung(ProduktGebaeudeversicherungType value) { - return new JAXBElement(_ProduktGebaeudeversicherung_QNAME, ProduktGebaeudeversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ProduktHaushaltsversicherungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProduktHaushaltsversicherung") - public JAXBElement createProduktHaushaltsversicherung(ProduktHaushaltsversicherungType value) { - return new JAXBElement(_ProduktHaushaltsversicherung_QNAME, ProduktHaushaltsversicherungType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatRequest") - public JAXBElement createCalculateSachPrivatRequest(CalculateSachPrivatRequestType value) { - return new JAXBElement(_CalculateSachPrivatRequest_QNAME, CalculateSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CalculateSachPrivatResponse") - public JAXBElement createCalculateSachPrivatResponse(CalculateSachPrivatResponseType value) { - return new JAXBElement(_CalculateSachPrivatResponse_QNAME, CalculateSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatRequest") - public JAXBElement createCreateOfferSachPrivatRequest(CreateOfferSachPrivatRequestType value) { - return new JAXBElement(_CreateOfferSachPrivatRequest_QNAME, CreateOfferSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateOfferSachPrivatResponse") - public JAXBElement createCreateOfferSachPrivatResponse(CreateOfferSachPrivatResponseType value) { - return new JAXBElement(_CreateOfferSachPrivatResponse_QNAME, CreateOfferSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatRequest") - public JAXBElement createCreateApplicationSachPrivatRequest(CreateApplicationSachPrivatRequestType value) { - return new JAXBElement(_CreateApplicationSachPrivatRequest_QNAME, CreateApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "CreateApplicationSachPrivatResponse") - public JAXBElement createCreateApplicationSachPrivatResponse(CreateApplicationSachPrivatResponseType value) { - return new JAXBElement(_CreateApplicationSachPrivatResponse_QNAME, CreateApplicationSachPrivatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatRequest") - public JAXBElement createSubmitApplicationSachPrivatRequest(SubmitApplicationSachPrivatRequestType value) { - return new JAXBElement(_SubmitApplicationSachPrivatRequest_QNAME, SubmitApplicationSachPrivatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationSachPrivatResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "SubmitApplicationSachPrivatResponse") - public JAXBElement createSubmitApplicationSachPrivatResponse(SubmitApplicationSachPrivatResponseType value) { - return new JAXBElement(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index b730bae8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index 9ea15d42..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index f3f7b5ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index 6d32d8ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "selbstbehalt" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versObjekteRefLfnr; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List selbstbehalt; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Gets the value of the selbstbehalt property. - * - *

- * 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 set method for the selbstbehalt property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSelbstbehalt().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SelbstbehaltType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSelbstbehalt() { - if (selbstbehalt == null) { - selbstbehalt = new ArrayList(); - } - return this.selbstbehalt; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index 563364c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 552cc10d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,465 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_15.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bauartCd; - @XmlElement(name = "DachungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index 04c99fac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoVorschaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoVorschaedenType.java deleted file mode 100644 index f9fcebb5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/RisikoVorschaedenType.java +++ /dev/null @@ -1,55 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für RisikoVorschaeden_Type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="RisikoVorschaeden_Type">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="keine Vorschaeden"/>
- *     <enumeration value="ein Vorschaden"/>
- *     <enumeration value="mehr als ein Vorschaden"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RisikoVorschaeden_Type") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum RisikoVorschaedenType { - - @XmlEnumValue("keine Vorschaeden") - KEINE_VORSCHAEDEN("keine Vorschaeden"), - @XmlEnumValue("ein Vorschaden") - EIN_VORSCHADEN("ein Vorschaden"), - @XmlEnumValue("mehr als ein Vorschaden") - MEHR_ALS_EIN_VORSCHADEN("mehr als ein Vorschaden"); - private final String value; - - RisikoVorschaedenType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RisikoVorschaedenType fromValue(String v) { - for (RisikoVorschaedenType c: RisikoVorschaedenType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index efa4b61d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index db3fff44..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 10b9363e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java deleted file mode 100644 index 9d9fabe2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseType; - - -/** - * Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = { - "produkte", - "zusatzprodukte", - "versicherteObjekte" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktSachPrivatType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Produkte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List produkte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzprodukte; - @XmlElement(name = "VersicherteObjekte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherteObjekte; - - /** - * Gets the value of the produkte property. - * - *

- * 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 set method for the produkte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProdukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktSachPrivatType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getProdukte() { - if (produkte == null) { - produkte = new ArrayList(); - } - return this.produkte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versicherteObjekte property. - * - *

- * 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 set method for the versicherteObjekte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteObjekte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherteObjekte() { - if (versicherteObjekte == null) { - versicherteObjekte = new ArrayList(); - } - return this.versicherteObjekte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index 6035e3c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,172 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RisikoHaushaltType risikoHaushalt; - - /** - * Ruft den Wert der objektId-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getObjektId() { - return objektId; - } - - /** - * Legt den Wert der objektId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setObjektId(ObjektIdType value) { - this.objektId = value; - } - - /** - * Ruft den Wert der risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 7032148b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index ac363bcc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index 3a4e7d79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index 5a7984da..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,41 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index 880f3fcb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 4293be34..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 9143ded6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallRequestType.java deleted file mode 100644 index ed2f5177..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Unfall - * - *

Java-Klasse für CalculateUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallRequest_Type", propOrder = { - "berechnungsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateUnfallRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungUnfallType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungUnfallType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsanfrage(SpezBerechnungUnfallType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallResponseType.java deleted file mode 100644 index 512e6045..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CalculateUnfallResponseType.java +++ /dev/null @@ -1,109 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Unfall-Berechnung - * - *

Java-Klasse für CalculateUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/>
- *         <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateUnfallResponse_Type", propOrder = { - "berechnungsantwort", - "upsellingvarianten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CalculateUnfallResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezBerechnungUnfallType berechnungsantwort; - @XmlElement(name = "Upsellingvarianten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List upsellingvarianten; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezBerechnungUnfallType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBerechnungsantwort(SpezBerechnungUnfallType value) { - this.berechnungsantwort = value; - } - - /** - * Gets the value of the upsellingvarianten property. - * - *

- * 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 set method for the upsellingvarianten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingvarianten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpezBerechnungUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getUpsellingvarianten() { - if (upsellingvarianten == null) { - upsellingvarianten = new ArrayList(); - } - return this.upsellingvarianten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java deleted file mode 100644 index 7f51dfa5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Type des Requestobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationUnfallRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java deleted file mode 100644 index 4c9dca1a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateApplicationUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Type des Responseobjekts für die Erstellung eines Unfallantrags - * - *

Java-Klasse für CreateApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateApplicationUnfallResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallRequestType.java deleted file mode 100644 index bbe4d73d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = { - "offertanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferUnfallRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertUnfallType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertUnfallType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertanfrage(SpezOffertUnfallType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallResponseType.java deleted file mode 100644 index 6634a66a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/CreateOfferUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Type des Responseobjekts für eine Erstellung eines Unfall-Offerts - * - *

Java-Klasse für CreateOfferUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = { - "offertantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CreateOfferUnfallResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezOffertUnfallType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezOffertUnfallType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffertantwort(SpezOffertUnfallType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/LeistungsartUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/LeistungsartUnfallType.java deleted file mode 100644 index f5084a06..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/LeistungsartUnfallType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. - * - *

Java-Klasse für LeistungsartUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LeistungsartUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LeistungsartUnfall_Type", propOrder = { - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class LeistungsartUnfallType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ObjectFactory.java deleted file mode 100644 index d7606f55..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ObjectFactory.java +++ /dev/null @@ -1,261 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest"); - private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse"); - private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest"); - private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse"); - private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest"); - private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse"); - private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest"); - private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CalculateUnfallRequestType } - * - */ - public CalculateUnfallRequestType createCalculateUnfallRequestType() { - return new CalculateUnfallRequestType(); - } - - /** - * Create an instance of {@link CalculateUnfallResponseType } - * - */ - public CalculateUnfallResponseType createCalculateUnfallResponseType() { - return new CalculateUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallRequestType } - * - */ - public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() { - return new CreateOfferUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateOfferUnfallResponseType } - * - */ - public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() { - return new CreateOfferUnfallResponseType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallRequestType } - * - */ - public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() { - return new CreateApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link CreateApplicationUnfallResponseType } - * - */ - public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() { - return new CreateApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallRequestType } - * - */ - public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() { - return new SubmitApplicationUnfallRequestType(); - } - - /** - * Create an instance of {@link SubmitApplicationUnfallResponseType } - * - */ - public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() { - return new SubmitApplicationUnfallResponseType(); - } - - /** - * Create an instance of {@link VerkaufsproduktUnfallType } - * - */ - public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() { - return new VerkaufsproduktUnfallType(); - } - - /** - * Create an instance of {@link ProduktUnfallType } - * - */ - public ProduktUnfallType createProduktUnfallType() { - return new ProduktUnfallType(); - } - - /** - * Create an instance of {@link LeistungsartUnfallType } - * - */ - public LeistungsartUnfallType createLeistungsartUnfallType() { - return new LeistungsartUnfallType(); - } - - /** - * Create an instance of {@link SpezBerechnungUnfallType } - * - */ - public SpezBerechnungUnfallType createSpezBerechnungUnfallType() { - return new SpezBerechnungUnfallType(); - } - - /** - * Create an instance of {@link SpezOffertUnfallType } - * - */ - public SpezOffertUnfallType createSpezOffertUnfallType() { - return new SpezOffertUnfallType(); - } - - /** - * Create an instance of {@link SpezAntragUnfallType } - * - */ - public SpezAntragUnfallType createSpezAntragUnfallType() { - return new SpezAntragUnfallType(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest") - public JAXBElement createCalculateUnfallRequest(CalculateUnfallRequestType value) { - return new JAXBElement(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse") - public JAXBElement createCalculateUnfallResponse(CalculateUnfallResponseType value) { - return new JAXBElement(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest") - public JAXBElement createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) { - return new JAXBElement(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse") - public JAXBElement createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) { - return new JAXBElement(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest") - public JAXBElement createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) { - return new JAXBElement(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse") - public JAXBElement createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) { - return new JAXBElement(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest") - public JAXBElement createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) { - return new JAXBElement(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse") - public JAXBElement createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) { - return new JAXBElement(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ProduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ProduktUnfallType.java deleted file mode 100644 index 477d5c84..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/ProduktUnfallType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktMitVpType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.SelbstbehaltType; - - -/** - * Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. - * - *

Java-Klasse für ProduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
- *       <sequence>
- *         <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktUnfall_Type", propOrder = { - "leistungsarten", - "selbstbehalt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ProduktUnfallType - extends ProduktMitVpType -{ - - @XmlElement(name = "Leistungsarten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List leistungsarten; - @XmlElement(name = "Selbstbehalt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SelbstbehaltType selbstbehalt; - - /** - * Gets the value of the leistungsarten property. - * - *

- * 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 set method for the leistungsarten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLeistungsarten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LeistungsartUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getLeistungsarten() { - if (leistungsarten == null) { - leistungsarten = new ArrayList(); - } - return this.leistungsarten; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezAntragUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezAntragUnfallType.java deleted file mode 100644 index 64c1e44f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezAntragUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezAntragType; - - -/** - * Typ für den Schritt Antrags-Erzeugung - * - *

Java-Klasse für SpezAntragUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezAntragUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezAntragUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezAntragUnfallType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezBerechnungUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezBerechnungUnfallType.java deleted file mode 100644 index b776fbc1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezBerechnungUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ für den Schritt Berechnung - * - *

Java-Klasse für SpezBerechnungUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezBerechnungUnfallType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezOffertUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezOffertUnfallType.java deleted file mode 100644 index 6d3b9818..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SpezOffertUnfallType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SpezOffertType; - - -/** - * Typ für den Schritt Offert-Erzeugung - * - *

Java-Klasse für SpezOffertUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertUnfall_Type", propOrder = { - "verkaufsprodukt" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpezOffertUnfallType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VerkaufsproduktUnfallType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VerkaufsproduktUnfallType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java deleted file mode 100644 index 34da7db5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallRequestType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = { - "antragsanfrage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationUnfallRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragUnfallType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragUnfallType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsanfrage(SpezAntragUnfallType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java deleted file mode 100644 index 06cb45d6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/SubmitApplicationUnfallResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationUnfallResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationUnfallResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = { - "antragsantwort" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitApplicationUnfallResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpezAntragUnfallType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpezAntragUnfallType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragUnfallType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntragsantwort(SpezAntragUnfallType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/VerkaufsproduktUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/VerkaufsproduktUnfallType.java deleted file mode 100644 index ba9d9e96..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/VerkaufsproduktUnfallType.java +++ /dev/null @@ -1,150 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ProduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VerkaufsproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertePersonType; - - -/** - * Typ für ein Verkaufsprodukt in der Sparte Unfall - * - *

Java-Klasse für VerkaufsproduktUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- *       <sequence>
- *         <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ProduktUnfall_Type" maxOccurs="unbounded"/>
- *         <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { - "unfallprodukte", - "zusatzprodukte", - "versichertePersonen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class VerkaufsproduktUnfallType - extends VerkaufsproduktGenerischType -{ - - @XmlElement(name = "Unfallprodukte", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List unfallprodukte; - @XmlElement(name = "Zusatzprodukte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusatzprodukte; - @XmlElement(name = "VersichertePersonen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versichertePersonen; - - /** - * Gets the value of the unfallprodukte property. - * - *

- * 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 set method for the unfallprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUnfallprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktUnfallType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getUnfallprodukte() { - if (unfallprodukte == null) { - unfallprodukte = new ArrayList(); - } - return this.unfallprodukte; - } - - /** - * Gets the value of the zusatzprodukte property. - * - *

- * 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 set method for the zusatzprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusatzprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktGenerischType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusatzprodukte() { - if (zusatzprodukte == null) { - zusatzprodukte = new ArrayList(); - } - return this.zusatzprodukte; - } - - /** - * Gets the value of the versichertePersonen property. - * - *

- * 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 set method for the versichertePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersichertePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VersichertePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersichertePersonen() { - if (versichertePersonen == null) { - versichertePersonen = new ArrayList(); - } - return this.versichertePersonen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/package-info.java deleted file mode 100644 index 61dc7160..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on2antrag/unfall/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimRequest.java deleted file mode 100644 index eb9278f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimRequest.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AddInformationToClaimRequest - extends CommonRequestType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimResponse.java deleted file mode 100644 index 9f38902c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/AddInformationToClaimResponse.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="ErgaenzungSchadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchadenereignis_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "ergaenzungSchadenereignis" -}) -@XmlRootElement(name = "AddInformationToClaimResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class AddInformationToClaimResponse - extends CommonResponseType -{ - - @XmlElement(name = "ErgaenzungSchadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ErgaenzungSchadenereignisType ergaenzungSchadenereignis; - - /** - * Ruft den Wert der ergaenzungSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ErgaenzungSchadenereignisType getErgaenzungSchadenereignis() { - return ergaenzungSchadenereignis; - } - - /** - * Legt den Wert der ergaenzungSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ErgaenzungSchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErgaenzungSchadenereignis(ErgaenzungSchadenereignisType value) { - this.ergaenzungSchadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 224ce2bf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,431 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index a2eb0894..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,369 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_9_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List meldungen; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index a36da82c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPerson(PersonType value) { - this.person = value; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index a88272e7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index d8b45921..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageRequest.java deleted file mode 100644 index 7a42115d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageRequest.java +++ /dev/null @@ -1,243 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "eigenschaftCd", - "zusaetzlicheDeckungsauskunftsdaten" -}) -@XmlRootElement(name = "CheckCoverageRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CheckCoverageRequest - extends CommonRequestType -{ - - @XmlElement(name = "Versicherungsnehmer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "EigenschaftCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List eigenschaftCd; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheDeckungsauskunftsdaten; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the eigenschaftCd property. - * - *

- * 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 set method for the eigenschaftCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEigenschaftCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getEigenschaftCd() { - if (eigenschaftCd == null) { - eigenschaftCd = new ArrayList(); - } - return this.eigenschaftCd; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageResponse.java deleted file mode 100644 index 0419dc8e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/CheckCoverageResponse.java +++ /dev/null @@ -1,344 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PersonType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.VersichertesInteresseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheDeckungsauskunftsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheDeckungsauskunftsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Auskuenfte" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "versicherungsnehmer", - "polizzennr", - "vertragsID", - "versInteresse", - "zusaetzlicheDeckungsauskunftsdaten", - "auskuenfte" -}) -@XmlRootElement(name = "CheckCoverageResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class CheckCoverageResponse - extends CommonResponseType -{ - - @XmlElement(name = "Versicherungsnehmer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List versicherungsnehmer; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - @XmlElement(name = "VersInteresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VersichertesInteresseType versInteresse; - @XmlElement(name = "ZusaetzlicheDeckungsauskunftsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheDeckungsauskunftsdaten; - @XmlElement(name = "Auskuenfte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List auskuenfte; - - /** - * Gets the value of the versicherungsnehmer property. - * - *

- * 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 set method for the versicherungsnehmer property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherungsnehmer().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getVersicherungsnehmer() { - if (versicherungsnehmer == null) { - versicherungsnehmer = new ArrayList(); - } - return this.versicherungsnehmer; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der versInteresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VersichertesInteresseType getVersInteresse() { - return versInteresse; - } - - /** - * Legt den Wert der versInteresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VersichertesInteresseType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVersInteresse(VersichertesInteresseType value) { - this.versInteresse = value; - } - - /** - * Gets the value of the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * 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 set method for the zusaetzlicheDeckungsauskunftsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheDeckungsauskunftsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheDeckungsauskunftsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheDeckungsauskunftsdaten() { - if (zusaetzlicheDeckungsauskunftsdaten == null) { - zusaetzlicheDeckungsauskunftsdaten = new ArrayList(); - } - return this.zusaetzlicheDeckungsauskunftsdaten; - } - - /** - * Gets the value of the auskuenfte property. - * - *

- * 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 set method for the auskuenfte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuskuenfte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CheckCoverageResponse.Auskuenfte } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getAuskuenfte() { - if (auskuenfte == null) { - auskuenfte = new ArrayList(); - } - return this.auskuenfte; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "eigenschaftCd", - "antwort" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Auskuenfte { - - @XmlElement(name = "EigenschaftCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String eigenschaftCd; - @XmlElement(name = "Antwort", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String antwort; - - /** - * Ruft den Wert der eigenschaftCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getEigenschaftCd() { - return eigenschaftCd; - } - - /** - * Legt den Wert der eigenschaftCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setEigenschaftCd(String value) { - this.eigenschaftCd = value; - } - - /** - * Ruft den Wert der antwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAntwort() { - return antwort; - } - - /** - * Legt den Wert der antwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAntwort(String value) { - this.antwort = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenType.java deleted file mode 100644 index 35a16c38..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenType.java +++ /dev/null @@ -1,293 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentDataType; - - -/** - * Objekt Nachmeldung Schaden - * - *

Java-Klasse für ErgaenzungSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betreff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchaden_Type", propOrder = { - "schadennr", - "id", - "polizzennr", - "vertragsID", - "betreff", - "schadenTxt", - "belege", - "zusaetzlicheSchadensdaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ErgaenzungSchadenType { - - @XmlElement(name = "Schadennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadennr; - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String id; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - @XmlElement(name = "Betreff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String betreff; - @XmlElement(name = "SchadenTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadenTxt; - @XmlElement(name = "Belege") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List belege; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(String value) { - this.id = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betreff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBetreff() { - return betreff; - } - - /** - * Legt den Wert der betreff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetreff(String value) { - this.betreff = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenereignisType.java deleted file mode 100644 index 1887c841..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ErgaenzungSchadenereignisType.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; - - -/** - * Objekt Nachmeldung zu Schadenereignis - * - *

Java-Klasse für ErgaenzungSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ErgaenzungSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AnforderungsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="ErgaenzungSchaden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ErgaenzungSchaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ErgaenzungSchadenereignis_Type", propOrder = { - "anforderungsId", - "id", - "geschaeftsfallSchadenereignis", - "zusaetzlicheSchadensereignisdaten", - "ergaenzungSchaden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ErgaenzungSchadenereignisType { - - @XmlElement(name = "AnforderungsId") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String anforderungsId; - @XmlElement(name = "Id") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String id; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "ErgaenzungSchaden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List ergaenzungSchaden; - - /** - * Ruft den Wert der anforderungsId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getAnforderungsId() { - return anforderungsId; - } - - /** - * Legt den Wert der anforderungsId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAnforderungsId(String value) { - this.anforderungsId = value; - } - - /** - * Ruft den Wert der id-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getId() { - return id; - } - - /** - * Legt den Wert der id-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setId(String value) { - this.id = value; - } - - /** - * GeschäftsfallId der Anlage des ursprünglichen Schadenereignis-Objektes - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the ergaenzungSchaden property. - * - *

- * 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 set method for the ergaenzungSchaden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getErgaenzungSchaden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ErgaenzungSchadenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getErgaenzungSchaden() { - if (ergaenzungSchaden == null) { - ergaenzungSchaden = new ArrayList(); - } - return this.ergaenzungSchaden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index 86f3647d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index 840d1bfe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,105 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadenBeschreibung; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 1fbc00f1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,139 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrdnungsbegriffZuordFremd() { - return ordnungsbegriffZuordFremd; - } - - /** - * Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrdnungsbegriffZuordFremd(String value) { - this.ordnungsbegriffZuordFremd = value; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 2589ac97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,383 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String marke; - @XmlElement(name = "Handelsbez") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * Ruft den Wert der marke-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMarke() { - return marke; - } - - /** - * Legt den Wert der marke-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMarke(String value) { - this.marke = value; - } - - /** - * Ruft den Wert der handelsbez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getHandelsbez() { - return handelsbez; - } - - /** - * Legt den Wert der handelsbez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setHandelsbez(String value) { - this.handelsbez = value; - } - - /** - * Ruft den Wert der fahrgestnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFahrgestnr() { - return fahrgestnr; - } - - /** - * Legt den Wert der fahrgestnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFahrgestnr(String value) { - this.fahrgestnr = value; - } - - /** - * Ruft den Wert der typVarVer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getTypVarVer() { - return typVarVer; - } - - /** - * Legt den Wert der typVarVer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTypVarVer(String value) { - this.typVarVer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 9a727046..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,169 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadennr; - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index 2ee3bf0d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/NatPersonType.java deleted file mode 100644 index 4e0a2152..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ObjectFactory.java deleted file mode 100644 index c22b5325..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ObjectFactory.java +++ /dev/null @@ -1,504 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektIdType; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.on7schaden package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _CheckClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimRequest"); - private final static QName _CheckClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "CheckClaimResponse"); - private final static QName _SubmitClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimRequest"); - private final static QName _SubmitClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SubmitClaimResponse"); - private final static QName _GetClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimRequest"); - private final static QName _GetClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GetClaimResponse"); - private final static QName _SearchClaimRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimRequest"); - private final static QName _SearchClaimResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "SearchClaimResponse"); - private final static QName _GeschaeftsfallSchadenereignis_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenereignis"); - private final static QName _GeschaeftsfallSchadenanlage_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "GeschaeftsfallSchadenanlage"); - private final static QName _Schadenzuordnung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", "Schadenzuordnung"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.on7schaden - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CheckCoverageResponse } - * - */ - public CheckCoverageResponse createCheckCoverageResponse() { - return new CheckCoverageResponse(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType } - * - */ - public SpartendetailSchadenKrankenType createSpartendetailSchadenKrankenType() { - return new SpartendetailSchadenKrankenType(); - } - - /** - * Create an instance of {@link SchadenType } - * - */ - public SchadenType createSchadenType() { - return new SchadenType(); - } - - /** - * Create an instance of {@link CheckClaimRequestType } - * - */ - public CheckClaimRequestType createCheckClaimRequestType() { - return new CheckClaimRequestType(); - } - - /** - * Create an instance of {@link CheckClaimResponseType } - * - */ - public CheckClaimResponseType createCheckClaimResponseType() { - return new CheckClaimResponseType(); - } - - /** - * Create an instance of {@link SubmitClaimRequestType } - * - */ - public SubmitClaimRequestType createSubmitClaimRequestType() { - return new SubmitClaimRequestType(); - } - - /** - * Create an instance of {@link SubmitClaimResponseType } - * - */ - public SubmitClaimResponseType createSubmitClaimResponseType() { - return new SubmitClaimResponseType(); - } - - /** - * Create an instance of {@link GetClaimRequestType } - * - */ - public GetClaimRequestType createGetClaimRequestType() { - return new GetClaimRequestType(); - } - - /** - * Create an instance of {@link GetClaimResponseType } - * - */ - public GetClaimResponseType createGetClaimResponseType() { - return new GetClaimResponseType(); - } - - /** - * Create an instance of {@link SearchClaimRequestType } - * - */ - public SearchClaimRequestType createSearchClaimRequestType() { - return new SearchClaimRequestType(); - } - - /** - * Create an instance of {@link SearchClaimResponseType } - * - */ - public SearchClaimResponseType createSearchClaimResponseType() { - return new SearchClaimResponseType(); - } - - /** - * Create an instance of {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType createSchadenzuordnungType() { - return new SchadenzuordnungType(); - } - - /** - * Create an instance of {@link CheckCoverageRequest } - * - */ - public CheckCoverageRequest createCheckCoverageRequest() { - return new CheckCoverageRequest(); - } - - /** - * Create an instance of {@link CheckCoverageResponse.Auskuenfte } - * - */ - public CheckCoverageResponse.Auskuenfte createCheckCoverageResponseAuskuenfte() { - return new CheckCoverageResponse.Auskuenfte(); - } - - /** - * Create an instance of {@link SubmitReceiptRequest } - * - */ - public SubmitReceiptRequest createSubmitReceiptRequest() { - return new SubmitReceiptRequest(); - } - - /** - * Create an instance of {@link SubmitReceiptResponse } - * - */ - public SubmitReceiptResponse createSubmitReceiptResponse() { - return new SubmitReceiptResponse(); - } - - /** - * Create an instance of {@link AddInformationToClaimRequest } - * - */ - public AddInformationToClaimRequest createAddInformationToClaimRequest() { - return new AddInformationToClaimRequest(); - } - - /** - * Create an instance of {@link ErgaenzungSchadenereignisType } - * - */ - public ErgaenzungSchadenereignisType createErgaenzungSchadenereignisType() { - return new ErgaenzungSchadenereignisType(); - } - - /** - * Create an instance of {@link AddInformationToClaimResponse } - * - */ - public AddInformationToClaimResponse createAddInformationToClaimResponse() { - return new AddInformationToClaimResponse(); - } - - /** - * Create an instance of {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType createSearchClaimResponseResultType() { - return new SearchClaimResponseResultType(); - } - - /** - * Create an instance of {@link SchadenereignisType } - * - */ - public SchadenereignisType createSchadenereignisType() { - return new SchadenereignisType(); - } - - /** - * Create an instance of {@link SchadenereignisLightType } - * - */ - public SchadenereignisLightType createSchadenereignisLightType() { - return new SchadenereignisLightType(); - } - - /** - * Create an instance of {@link SchadenLightType } - * - */ - public SchadenLightType createSchadenLightType() { - return new SchadenLightType(); - } - - /** - * Create an instance of {@link BasisSchadenType } - * - */ - public BasisSchadenType createBasisSchadenType() { - return new BasisSchadenType(); - } - - /** - * Create an instance of {@link BeteiligtePersonType } - * - */ - public BeteiligtePersonType createBeteiligtePersonType() { - return new BeteiligtePersonType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKfzType } - * - */ - public SpartendetailSchadenKfzType createSpartendetailSchadenKfzType() { - return new SpartendetailSchadenKfzType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenUnfallType } - * - */ - public SpartendetailSchadenUnfallType createSpartendetailSchadenUnfallType() { - return new SpartendetailSchadenUnfallType(); - } - - /** - * Create an instance of {@link OrtType } - * - */ - public OrtType createOrtType() { - return new OrtType(); - } - - /** - * Create an instance of {@link GeokoordinatenType } - * - */ - public GeokoordinatenType createGeokoordinatenType() { - return new GeokoordinatenType(); - } - - /** - * Create an instance of {@link GeschaedigtesInteresseType } - * - */ - public GeschaedigtesInteresseType createGeschaedigtesInteresseType() { - return new GeschaedigtesInteresseType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektKfzType } - * - */ - public GeschaedigtesObjektKfzType createGeschaedigtesObjektKfzType() { - return new GeschaedigtesObjektKfzType(); - } - - /** - * Create an instance of {@link GeschaedigtesObjektImmobilieType } - * - */ - public GeschaedigtesObjektImmobilieType createGeschaedigtesObjektImmobilieType() { - return new GeschaedigtesObjektImmobilieType(); - } - - /** - * Create an instance of {@link SchadenmelderVermittlerType } - * - */ - public SchadenmelderVermittlerType createSchadenmelderVermittlerType() { - return new SchadenmelderVermittlerType(); - } - - /** - * Create an instance of {@link ReferenzAufBeteiligtePersonSchadenType } - * - */ - public ReferenzAufBeteiligtePersonSchadenType createReferenzAufBeteiligtePersonSchadenType() { - return new ReferenzAufBeteiligtePersonSchadenType(); - } - - /** - * Create an instance of {@link SachbearbVUType } - * - */ - public SachbearbVUType createSachbearbVUType() { - return new SachbearbVUType(); - } - - /** - * Create an instance of {@link NatPersonType } - * - */ - public NatPersonType createNatPersonType() { - return new NatPersonType(); - } - - /** - * Create an instance of {@link ErgaenzungSchadenType } - * - */ - public ErgaenzungSchadenType createErgaenzungSchadenType() { - return new ErgaenzungSchadenType(); - } - - /** - * Create an instance of {@link SpartendetailSchadenKrankenType.Behandlungen } - * - */ - public SpartendetailSchadenKrankenType.Behandlungen createSpartendetailSchadenKrankenTypeBehandlungen() { - return new SpartendetailSchadenKrankenType.Behandlungen(); - } - - /** - * Create an instance of {@link SchadenType.BeteiligtePersonen } - * - */ - public SchadenType.BeteiligtePersonen createSchadenTypeBeteiligtePersonen() { - return new SchadenType.BeteiligtePersonen(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimRequest") - public JAXBElement createCheckClaimRequest(CheckClaimRequestType value) { - return new JAXBElement(_CheckClaimRequest_QNAME, CheckClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link CheckClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "CheckClaimResponse") - public JAXBElement createCheckClaimResponse(CheckClaimResponseType value) { - return new JAXBElement(_CheckClaimResponse_QNAME, CheckClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimRequest") - public JAXBElement createSubmitClaimRequest(SubmitClaimRequestType value) { - return new JAXBElement(_SubmitClaimRequest_QNAME, SubmitClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SubmitClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SubmitClaimResponse") - public JAXBElement createSubmitClaimResponse(SubmitClaimResponseType value) { - return new JAXBElement(_SubmitClaimResponse_QNAME, SubmitClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimRequest") - public JAXBElement createGetClaimRequest(GetClaimRequestType value) { - return new JAXBElement(_GetClaimRequest_QNAME, GetClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link GetClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GetClaimResponse") - public JAXBElement createGetClaimResponse(GetClaimResponseType value) { - return new JAXBElement(_GetClaimResponse_QNAME, GetClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimRequest") - public JAXBElement createSearchClaimRequest(SearchClaimRequestType value) { - return new JAXBElement(_SearchClaimRequest_QNAME, SearchClaimRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SearchClaimResponseType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "SearchClaimResponse") - public JAXBElement createSearchClaimResponse(SearchClaimResponseType value) { - return new JAXBElement(_SearchClaimResponse_QNAME, SearchClaimResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenereignis") - public JAXBElement createGeschaeftsfallSchadenereignis(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenereignis_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "GeschaeftsfallSchadenanlage") - public JAXBElement createGeschaeftsfallSchadenanlage(ObjektIdType value) { - return new JAXBElement(_GeschaeftsfallSchadenanlage_QNAME, ObjektIdType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link SchadenzuordnungType }{@code >} - */ - @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", name = "Schadenzuordnung") - public JAXBElement createSchadenzuordnung(SchadenzuordnungType value) { - return new JAXBElement(_Schadenzuordnung_QNAME, SchadenzuordnungType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/OrtType.java deleted file mode 100644 index 2ab911cd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/OrtType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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_15.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OrtType { - - @XmlElement(name = "Adresse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ADRESSEType getAdresse() { - return adresse; - } - - /** - * Legt den Wert der adresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ADRESSEType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAdresse(ADRESSEType value) { - this.adresse = value; - } - - /** - * Ruft den Wert der beschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBeschreibung() { - return beschreibung; - } - - /** - * Legt den Wert der beschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBeschreibung(String value) { - this.beschreibung = value; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 36cf29c0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index d98d9b6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_15.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 5e6fd3c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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 leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenType.java deleted file mode 100644 index 11f09471..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,449 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds2Types.v2_15.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_15.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 816a4bf4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,77 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index c95f0f07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index b05f102e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index 09392fc8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index 119805de..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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 die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index 728607c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,343 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "Personennr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String personennr; - @XmlElement(name = "Zeitraum") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String bearbStandCd; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long offset; - @XmlElement(name = "OrderBy") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String orderBy; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der suchbegriff-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getSuchbegriff() { - return suchbegriff; - } - - /** - * Legt den Wert der suchbegriff-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSuchbegriff(String value) { - this.suchbegriff = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaxResults(long value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOffset(long value) { - this.offset = value; - } - - /** - * Ruft den Wert der orderBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOrderBy() { - return orderBy; - } - - /** - * Legt den Wert der orderBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOrderBy(String value) { - this.orderBy = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index b233997f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SearchClaimResponseResultType { - - @XmlElement(name = "ActualOffset") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualOffset; - @XmlElement(name = "ActualMaxResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long actualMaxResults; - @XmlElement(name = "TotalResults") - @XmlSchemaType(name = "unsignedInt") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected long totalResults; - @XmlElement(name = "Schadenereignisse") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List schadenereignisse; - - /** - * Ruft den Wert der actualOffset-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualOffset() { - return actualOffset; - } - - /** - * Legt den Wert der actualOffset-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualOffset(long value) { - this.actualOffset = value; - } - - /** - * Ruft den Wert der actualMaxResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getActualMaxResults() { - return actualMaxResults; - } - - /** - * Legt den Wert der actualMaxResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setActualMaxResults(long value) { - this.actualMaxResults = value; - } - - /** - * Ruft den Wert der totalResults-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public long getTotalResults() { - return totalResults; - } - - /** - * Legt den Wert der totalResults-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTotalResults(long value) { - this.totalResults = value; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index 6ba853c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,107 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index 5813bfbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,133 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index e47b7069..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,213 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String behandlerName; - @XmlElement(name = "Behandlungen") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index 7110a475..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index f9c483df..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,276 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Koerperhaelfte" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}byte">
- *               <enumeration value="0"/>
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Koerperteil" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="BehoerdlicheAufnahme" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName", - "koerperhaelfte", - "koerperteil", - "behoerdlicheAufnahme" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String diagnose; - @XmlElement(name = "BehandlerName") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String behandlerName; - @XmlElement(name = "Koerperhaelfte") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Byte koerperhaelfte; - @XmlElement(name = "Koerperteil") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List koerperteil; - @XmlElement(name = "BehoerdlicheAufnahme") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String behoerdlicheAufnahme; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Ruft den Wert der koerperhaelfte-Eigenschaft ab. - * - * @return - * possible object is - * {@link Byte } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Byte getKoerperhaelfte() { - return koerperhaelfte; - } - - /** - * Legt den Wert der koerperhaelfte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Byte } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setKoerperhaelfte(Byte value) { - this.koerperhaelfte = value; - } - - /** - * Gets the value of the koerperteil property. - * - *

- * 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 set method for the koerperteil property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKoerperteil().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getKoerperteil() { - if (koerperteil == null) { - koerperteil = new ArrayList(); - } - return this.koerperteil; - } - - /** - * Ruft den Wert der behoerdlicheAufnahme-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getBehoerdlicheAufnahme() { - return behoerdlicheAufnahme; - } - - /** - * Legt den Wert der behoerdlicheAufnahme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBehoerdlicheAufnahme(String value) { - this.behoerdlicheAufnahme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index d4ad4042..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 19ba744d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,72 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptRequest.java deleted file mode 100644 index d1ad9d77..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptRequest.java +++ /dev/null @@ -1,271 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.DokumentDataType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ZahlwegType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="Betrag" type="{urn:omds20}decimal"/>
- *         <element name="Grund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Zahlweg" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type"/>
- *         <element name="Belege" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type" maxOccurs="unbounded"/>
- *         <element name="ZusaetzlicheBelegeinreichungsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheBelegeinreichungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "polizzennr", - "vertragsID", - "betrag", - "grund", - "zahlweg", - "belege", - "zusaetzlicheBelegeinreichungsdaten" -}) -@XmlRootElement(name = "SubmitReceiptRequest") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitReceiptRequest - extends CommonRequestType -{ - - @XmlElement(name = "Polizzennr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String polizzennr; - @XmlElement(name = "VertragsID") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vertragsID; - @XmlElement(name = "Betrag", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected BigDecimal betrag; - @XmlElement(name = "Grund") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String grund; - @XmlElement(name = "Zahlweg", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ZahlwegType zahlweg; - @XmlElement(name = "Belege", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List belege; - @XmlElement(name = "ZusaetzlicheBelegeinreichungsdaten") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List zusaetzlicheBelegeinreichungsdaten; - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der grund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getGrund() { - return grund; - } - - /** - * Legt den Wert der grund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setGrund(String value) { - this.grund = value; - } - - /** - * Ruft den Wert der zahlweg-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ZahlwegType getZahlweg() { - return zahlweg; - } - - /** - * Legt den Wert der zahlweg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setZahlweg(ZahlwegType value) { - this.zahlweg = value; - } - - /** - * Gets the value of the belege property. - * - *

- * 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 set method for the belege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBelege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentDataType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getBelege() { - if (belege == null) { - belege = new ArrayList(); - } - return this.belege; - } - - /** - * Gets the value of the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * 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 set method for the zusaetzlicheBelegeinreichungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheBelegeinreichungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheBelegeinreichungsdatenType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getZusaetzlicheBelegeinreichungsdaten() { - if (zusaetzlicheBelegeinreichungsdaten == null) { - zusaetzlicheBelegeinreichungsdaten = new ArrayList(); - } - return this.zusaetzlicheBelegeinreichungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptResponse.java deleted file mode 100644 index d3914a7a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/SubmitReceiptResponse.java +++ /dev/null @@ -1,37 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.CommonResponseType; - - -/** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType>
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "SubmitReceiptResponse") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class SubmitReceiptResponse - extends CommonResponseType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java deleted file mode 100644 index c1019420..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheBelegeinreichungsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Service zur Belegeinreichung mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheBelegeinreichungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheBelegeinreichungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheBelegeinreichungsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheBelegeinreichungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java deleted file mode 100644 index 9b5f3679..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheDeckungsauskunftsdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Anfragen zu Deckungsauskünften mit Datentypen, die nicht im Standard halten sind - * - *

Java-Klasse für ZusaetzlicheDeckungsauskunftsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheDeckungsauskunftsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheDeckungsauskunftsdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheDeckungsauskunftsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index df7d4894..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index 46b847fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index 786010d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/package-info.java deleted file mode 100644 index b7fc18ee..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsService.java deleted file mode 100644 index f065565e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsService.java +++ /dev/null @@ -1,100 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_9_0.service; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.annotation.Generated; -import javax.xml.namespace.QName; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; -import javax.xml.ws.Service; - -/** - * This class was generated by Apache CXF 3.5.6 - * 2023-08-22T12:10:21.534+02:00 - * Generated source version: 3.5.6 - * - */ -@WebServiceClient(name = "omdsService", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3Services.wsdl", - targetNamespace = "urn:omds3Services-1-4-0") -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00", comments = "Apache CXF 3.5.6") -public class OmdsService extends Service { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public final static URL WSDL_LOCATION; - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public final static QName SERVICE = new QName("urn:omds3Services-1-4-0", "omdsService"); - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public final static QName OmdsServicePort = new QName("urn:omds3Services-1-4-0", "omdsServicePort"); - static { - URL url = null; - try { - url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3Services.wsdl"); - } catch (MalformedURLException e) { - java.util.logging.Logger.getLogger(OmdsService.class.getName()) - .log(java.util.logging.Level.INFO, - "Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3Services.wsdl"); - } - WSDL_LOCATION = url; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService(URL wsdlLocation) { - super(wsdlLocation, SERVICE); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService() { - super(WSDL_LOCATION, SERVICE); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService(WebServiceFeature ... features) { - super(WSDL_LOCATION, SERVICE, features); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService(URL wsdlLocation, WebServiceFeature ... features) { - super(wsdlLocation, SERVICE, features); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { - super(wsdlLocation, serviceName, features); - } - - - - - /** - * - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsServicePortType getOmdsServicePort() { - return super.getPort(OmdsServicePort, OmdsServicePortType.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OmdsServicePortType - */ - @WebEndpoint(name = "omdsServicePort") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.534+02:00") - public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) { - return super.getPort(OmdsServicePort, OmdsServicePortType.class, features); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortImpl.java deleted file mode 100644 index 838c79e0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortImpl.java +++ /dev/null @@ -1,854 +0,0 @@ - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -package at.vvo.omds.types.omds3Types.r1_9_0.service; - -import java.util.logging.Logger; -import javax.annotation.Generated; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.6 - * 2023-08-22T12:10:21.493+02:00 - * Generated source version: 3.5.6 - * - */ - -@javax.jws.WebService( - serviceName = "omdsService", - portName = "omdsServicePort", - targetNamespace = "urn:omds3Services-1-4-0", - wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_9_0/omds3Services.wsdl", - endpointInterface = "at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType") - -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00", comments = "Apache CXF 3.5.6") -public class OmdsServicePortImpl implements OmdsServicePortType { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation addDocToBusinessCase"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzResponse calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateRechtsschutz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitReceipt(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptResponse submitReceipt(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitReceipt"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzResponse createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferRechtsschutz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimResponseType searchClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation searchClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getStateChanges(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesRequestType parameters)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesResponseType getStateChanges(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesRequestType parameters) throws ServiceFaultMsg { - LOG.info("Executing operation getStateChanges"); - System.out.println(parameters); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkOfferRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkOffer"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfPeriod"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation checkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImageInfos"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackageList"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationRechtsschutz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPartnerRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPartner"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPolicyRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkPolicy"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getUserData"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkClaimRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkClaimRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation deepLinkClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#checkCoverage(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageResponse checkCoverage(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation checkCoverage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getNumberOfDocuments"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageResponse getOMDSPackage(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getOMDSPackage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationUnfall"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#conversionProposal(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalResponse conversionProposal(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation conversionProposal"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject(at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getDocumentsOfObject"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation calculateKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferKranken"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#conversionScope(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeResponse conversionScope(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation conversionScope"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimResponseType getClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation getClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#getArcImage(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageResponse getArcImage(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation getArcImage"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#addInformationToClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimResponse addInformationToClaim(at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation addInformationToClaim"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationRechtsschutz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation createOfferLeben"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.LoginRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse login(at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.LoginRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation login"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationKfz"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - - /* (non-Javadoc) - * @see at.vvo.omds.types.omds3Types.r1_9_0.service.OmdsServicePortType#submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param)* - */ - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.493+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param) throws ServiceFaultMsg { - LOG.info("Executing operation submitApplicationSachPrivat"); - System.out.println(param); - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null; - return _return; - } catch (java.lang.Exception ex) { - ex.printStackTrace(); - throw new RuntimeException(ex); - } - //throw new ServiceFaultMsg("ServiceFaultMsg..."); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType.java deleted file mode 100644 index 291293e2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType.java +++ /dev/null @@ -1,454 +0,0 @@ -package at.vvo.omds.types.omds3Types.r1_9_0.service; - -import javax.annotation.Generated; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.6 - * 2023-08-22T12:10:21.520+02:00 - * Generated source version: 3.5.6 - * - */ -@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") -@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_15.ObjectFactory.class}) -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00", comments = "Apache CXF 3.5.6") -public interface OmdsServicePortType { - - @WebMethod(action = "urn:calculateLeben") - @WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenResponseType calculateLeben( - - @WebParam(partName = "param", name = "CalculateLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addDocToBusinessCase") - @WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase( - - @WebParam(partName = "param", name = "AddDocToBusinessCaseRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateRechtsschutz") - @WebResult(name = "CalculateRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzResponse calculateRechtsschutz( - - @WebParam(partName = "param", name = "CalculateRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKfz") - @WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz( - - @WebParam(partName = "param", name = "CreateApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitReceipt") - @WebResult(name = "SubmitReceiptResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptResponse submitReceipt( - - @WebParam(partName = "param", name = "SubmitReceiptRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKfz") - @WebResult(name = "CreateOfferKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType createOfferKfz( - - @WebParam(partName = "param", name = "CreateOfferKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationLeben") - @WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben( - - @WebParam(partName = "param", name = "SubmitApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferRechtsschutz") - @WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzResponse createOfferRechtsschutz( - - @WebParam(partName = "param", name = "CreateOfferRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:searchClaim") - @WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimResponseType searchClaim( - - @WebParam(partName = "param", name = "SearchClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getStateChanges") - @WebResult(name = "GetStateChangesResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesResponseType getStateChanges( - - @WebParam(partName = "parameters", name = "GetStateChangesRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesRequestType parameters - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitClaim") - @WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimResponseType submitClaim( - - @WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkOffer") - @WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer( - - @WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkOfferRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfPeriod") - @WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod( - - @WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationUnfall") - @WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall( - - @WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKranken") - @WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken( - - @WebParam(partName = "param", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkClaim") - @WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimResponseType checkClaim( - - @WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationLeben") - @WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben( - - @WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferUnfall") - @WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall( - - @WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImageInfos") - @WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosResponse getArcImageInfos( - - @WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackageList") - @WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListResponse getOMDSPackageList( - - @WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationKranken") - @WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken( - - @WebParam(partName = "param", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateSachPrivat") - @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( - - @WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationRechtsschutz") - @WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz( - - @WebParam(partName = "param", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPartner") - @WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner( - - @WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPartnerRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkPolicy") - @WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy( - - @WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPolicyRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getUserData") - @WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataResponse getUserData( - - @WebParam(partName = "param", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:deepLinkClaim") - @WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim( - - @WebParam(partName = "param", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkClaimRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:checkCoverage") - @WebResult(name = "CheckCoverageResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageResponse checkCoverage( - - @WebParam(partName = "param", name = "CheckCoverageRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKranken") - @WebResult(name = "SubmitApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken( - - @WebParam(partName = "param", name = "SubmitApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getNumberOfDocuments") - @WebResult(name = "GetNumberOfDocumentsResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsResponseType getNumberOfDocuments( - - @WebParam(partName = "param", name = "GetNumberOfDocumentsRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getOMDSPackage") - @WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageResponse getOMDSPackage( - - @WebParam(partName = "param", name = "getOMDSPackageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateUnfall") - @WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall( - - @WebParam(partName = "param", name = "CalculateUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationUnfall") - @WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall( - - @WebParam(partName = "param", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:conversionProposal") - @WebResult(name = "ConversionProposalResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalResponse conversionProposal( - - @WebParam(partName = "param", name = "ConversionProposalRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getDocumentsOfObject") - @WebResult(name = "GetDocumentsOfObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectResponseType getDocumentsOfObject( - - @WebParam(partName = "param", name = "GetDocumentsOfObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen") - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:calculateKfz") - @WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz( - - @WebParam(partName = "param", name = "CalculateKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferKranken") - @WebResult(name = "CreateOfferKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken( - - @WebParam(partName = "param", name = "CreateOfferKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferSachPrivat") - @WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat( - - @WebParam(partName = "param", name = "CreateOfferSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createApplicationSachPrivat") - @WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat( - - @WebParam(partName = "param", name = "CreateApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:conversionScope") - @WebResult(name = "ConversionScopeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeResponse conversionScope( - - @WebParam(partName = "param", name = "ConversionScopeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getClaim") - @WebResult(name = "GetClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimResponseType getClaim( - - @WebParam(partName = "param", name = "GetClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:getArcImage") - @WebResult(name = "getArcImageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageResponse getArcImage( - - @WebParam(partName = "param", name = "getArcImageRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:addInformationToClaim") - @WebResult(name = "AddInformationToClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimResponse addInformationToClaim( - - @WebParam(partName = "param", name = "AddInformationToClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationRechtsschutz") - @WebResult(name = "SubmitApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse submitApplicationRechtsschutz( - - @WebParam(partName = "param", name = "SubmitApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:createOfferLeben") - @WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben( - - @WebParam(partName = "param", name = "CreateOfferLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:login") - @WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse login( - - @WebParam(partName = "param", name = "loginRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0") - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.LoginRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationKfz") - @WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz( - - @WebParam(partName = "param", name = "SubmitApplicationKfzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzRequestType param - ) throws ServiceFaultMsg; - - @WebMethod(action = "urn:submitApplicationSachPrivat") - @WebResult(name = "SubmitApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param") - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.520+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType submitApplicationSachPrivat( - - @WebParam(partName = "param", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat") - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param - ) throws ServiceFaultMsg; -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType_OmdsServicePort_Client.java deleted file mode 100644 index 34e997cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/OmdsServicePortType_OmdsServicePort_Client.java +++ /dev/null @@ -1,684 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.service; - -/** - * Please modify this class to meet your needs - * This class is not complete - */ - -import java.io.File; -import java.net.MalformedURLException; -import java.net.URL; -import javax.annotation.Generated; -import javax.xml.namespace.QName; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 3.5.6 - * 2023-08-22T12:10:21.380+02:00 - * Generated source version: 3.5.6 - * - */ -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.380+02:00", comments = "Apache CXF 3.5.6") -public final class OmdsServicePortType_OmdsServicePort_Client { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.380+02:00") - private static final QName SERVICE_NAME = new QName("urn:omds3Services-1-4-0", "omdsService"); - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.380+02:00") - private OmdsServicePortType_OmdsServicePort_Client() { - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.380+02:00") - public static void main(String args[]) throws java.lang.Exception { - URL wsdlURL = OmdsService.WSDL_LOCATION; - if (args.length > 0 && args[0] != null && !"".equals(args[0])) { - File wsdlFile = new File(args[0]); - try { - if (wsdlFile.exists()) { - wsdlURL = wsdlFile.toURI().toURL(); - } else { - wsdlURL = new URL(args[0]); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } - } - - OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); - OmdsServicePortType port = ss.getOmdsServicePort(); - - { - System.out.println("Invoking calculateLeben..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenRequestType _calculateLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CalculateLebenResponseType _calculateLeben__return = port.calculateLeben(_calculateLeben_param); - System.out.println("calculateLeben.result=" + _calculateLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addDocToBusinessCase..."); - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_param); - System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateRechtsschutz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzRequest _calculateRechtsschutz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CalculateRechtsschutzResponse _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_param); - System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzRequestType _createApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateApplicationKfzResponseType _createApplicationKfz__return = port.createApplicationKfz(_createApplicationKfz_param); - System.out.println("createApplicationKfz.result=" + _createApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitReceipt..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptRequest _submitReceipt_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitReceiptResponse _submitReceipt__return = port.submitReceipt(_submitReceipt_param); - System.out.println("submitReceipt.result=" + _submitReceipt__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKfz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzRequestType _createOfferKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_param); - System.out.println("createOfferKfz.result=" + _createOfferKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenRequestType _submitApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.SubmitApplicationLebenResponseType _submitApplicationLeben__return = port.submitApplicationLeben(_submitApplicationLeben_param); - System.out.println("submitApplicationLeben.result=" + _submitApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferRechtsschutz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzRequest _createOfferRechtsschutz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateOfferRechtsschutzResponse _createOfferRechtsschutz__return = port.createOfferRechtsschutz(_createOfferRechtsschutz_param); - System.out.println("createOfferRechtsschutz.result=" + _createOfferRechtsschutz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking searchClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimRequestType _searchClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SearchClaimResponseType _searchClaim__return = port.searchClaim(_searchClaim_param); - System.out.println("searchClaim.result=" + _searchClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getStateChanges..."); - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesRequestType _getStateChanges_parameters = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters); - System.out.println("getStateChanges.result=" + _getStateChanges__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimRequestType _submitClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_param); - System.out.println("submitClaim.result=" + _submitClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkOffer..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_param); - System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfPeriod..."); - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_param); - System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_param); - System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKranken..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenRequest _calculateKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CalculateKrankenResponse _calculateKranken__return = port.calculateKranken(_calculateKranken_param); - System.out.println("calculateKranken.result=" + _calculateKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimRequestType _checkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param); - System.out.println("checkClaim.result=" + _checkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationLeben..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_param); - System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferUnfall..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_param); - System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImageInfos..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_param); - System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getOMDSPackageList..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_param); - System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationKranken..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenRequest _createApplicationKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_param); - System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_param); - System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationRechtsschutz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzRequest _createApplicationRechtsschutz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_param); - System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPartner..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_param); - System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkPolicy..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_param); - System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getUserData..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataRequest _getUserData_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_param); - System.out.println("getUserData.result=" + _getUserData__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking deepLinkClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_param); - System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking checkCoverage..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageRequest _checkCoverage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.CheckCoverageResponse _checkCoverage__return = port.checkCoverage(_checkCoverage_param); - System.out.println("checkCoverage.result=" + _checkCoverage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKranken..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenRequest _submitApplicationKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.SubmitApplicationKrankenResponse _submitApplicationKranken__return = port.submitApplicationKranken(_submitApplicationKranken_param); - System.out.println("submitApplicationKranken.result=" + _submitApplicationKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getNumberOfDocuments..."); - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsRequestType _getNumberOfDocuments_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_param); - System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getOMDSPackage..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageRequest _getOMDSPackage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_param); - System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateUnfall..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallRequestType _calculateUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.CalculateUnfallResponseType _calculateUnfall__return = port.calculateUnfall(_calculateUnfall_param); - System.out.println("calculateUnfall.result=" + _calculateUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationUnfall..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallRequestType _submitApplicationUnfall_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_param); - System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking conversionProposal..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalRequest _conversionProposal_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionProposalResponse _conversionProposal__return = port.conversionProposal(_conversionProposal_param); - System.out.println("conversionProposal.result=" + _conversionProposal__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getDocumentsOfObject..."); - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectRequestType _getDocumentsOfObject_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_param); - System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking calculateKfz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzRequestType _calculateKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_param); - System.out.println("calculateKfz.result=" + _calculateKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferKranken..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenRequest _createOfferKranken_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kranken.CreateOfferKrankenResponse _createOfferKranken__return = port.createOfferKranken(_createOfferKranken_param); - System.out.println("createOfferKranken.result=" + _createOfferKranken__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType _createOfferSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_param); - System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType _createApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _createApplicationSachPrivat__return = port.createApplicationSachPrivat(_createApplicationSachPrivat_param); - System.out.println("createApplicationSachPrivat.result=" + _createApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking conversionScope..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeRequest _conversionScope_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.common.ConversionScopeResponse _conversionScope__return = port.conversionScope(_conversionScope_param); - System.out.println("conversionScope.result=" + _conversionScope__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimRequestType _getClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_param); - System.out.println("getClaim.result=" + _getClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking getArcImage..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageRequest _getArcImage_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_param); - System.out.println("getArcImage.result=" + _getArcImage__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking addInformationToClaim..."); - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimRequest _addInformationToClaim_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on7schaden.AddInformationToClaimResponse _addInformationToClaim__return = port.addInformationToClaim(_addInformationToClaim_param); - System.out.println("addInformationToClaim.result=" + _addInformationToClaim__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationRechtsschutz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest _submitApplicationRechtsschutz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _submitApplicationRechtsschutz__return = port.submitApplicationRechtsschutz(_submitApplicationRechtsschutz_param); - System.out.println("submitApplicationRechtsschutz.result=" + _submitApplicationRechtsschutz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking createOfferLeben..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenRequestType _createOfferLeben_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.leben.CreateOfferLebenResponseType _createOfferLeben__return = port.createOfferLeben(_createOfferLeben_param); - System.out.println("createOfferLeben.result=" + _createOfferLeben__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking login..."); - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.LoginRequestType _login_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_param); - System.out.println("login.result=" + _login__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationKfz..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzRequestType _submitApplicationKfz_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.kfz.SubmitApplicationKfzResponseType _submitApplicationKfz__return = port.submitApplicationKfz(_submitApplicationKfz_param); - System.out.println("submitApplicationKfz.result=" + _submitApplicationKfz__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - { - System.out.println("Invoking submitApplicationSachPrivat..."); - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType _submitApplicationSachPrivat_param = null; - try { - at.vvo.omds.types.omds3Types.r1_9_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_param); - System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return); - - } catch (ServiceFaultMsg e) { - System.out.println("Expected exception: ServiceFaultMsg has occurred."); - System.out.println(e.toString()); - } - - } - - System.exit(0); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/ServiceFaultMsg.java deleted file mode 100644 index e5d96bc2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/service/ServiceFaultMsg.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.service; - -import javax.annotation.Generated; -import javax.xml.ws.WebFault; - - -/** - * This class was generated by Apache CXF 3.5.6 - * 2023-08-22T12:10:21.487+02:00 - * Generated source version: 3.5.6 - */ - -@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0") -@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00", comments = "Apache CXF 3.5.6") -public class ServiceFaultMsg extends Exception { - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - private at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault faultInfo; - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public ServiceFaultMsg() { - super(); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public ServiceFaultMsg(String message) { - super(message); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public ServiceFaultMsg(String message, java.lang.Throwable cause) { - super(message, cause); - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault serviceFault) { - super(message); - this.faultInfo = serviceFault; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault serviceFault, java.lang.Throwable cause) { - super(message, cause); - this.faultInfo = serviceFault; - } - - @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2023-08-22T12:10:21.487+02:00") - public at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault getFaultInfo() { - return this.faultInfo; - } -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcContent.java deleted file mode 100644 index 8864ec01..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcContent { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index ea547a64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,253 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcImageInfo { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String name; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int documentType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String arcContentType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar date; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = value; - } - - /** - * Ruft den Wert der name-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getName() { - return name; - } - - /** - * Legt den Wert der name-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setName(String value) { - this.name = value; - } - - /** - * Ruft den Wert der documentType-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDocumentType(int value) { - this.documentType = value; - } - - /** - * Ruft den Wert der arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 8243621f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,297 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String policyNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String policyType; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List documentType; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar dateUntil; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 795824a6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,106 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcImageInfosResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index 6d2eed26..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String arcImageId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 9ba44c66..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 39ea6847..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DeepLinkBusinessObjectResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 0900ed27..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String claimNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 2d1fa3b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String offerNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 61cf9c93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String partnerNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 70b1c0bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,160 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String policyNumber; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected Boolean withoutFrame; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - - /** - * Ruft den Wert der policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/Geschaeftsvorfall.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/Geschaeftsvorfall.java deleted file mode 100644 index 66078409..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/Geschaeftsvorfall.java +++ /dev/null @@ -1,52 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für Geschaeftsvorfall. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - *

- * <simpleType name="Geschaeftsvorfall">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Neuantrag"/>
- *     <enumeration value="Aenderungsantrag"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Geschaeftsvorfall") -@XmlEnum -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public enum Geschaeftsvorfall { - - @XmlEnumValue("Neuantrag") - NEUANTRAG("Neuantrag"), - @XmlEnumValue("Aenderungsantrag") - AENDERUNGSANTRAG("Aenderungsantrag"); - private final String value; - - Geschaeftsvorfall(String v) { - value = v; - } - - public String value() { - return value; - } - - public static Geschaeftsvorfall fromValue(String v) { - for (Geschaeftsvorfall c: Geschaeftsvorfall.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index cc583ad0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,153 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class HttpActionLinkType { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String url; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int type; - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/LoginRequestType.java deleted file mode 100644 index 554e77a4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class LoginRequestType { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "AuthFilter") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AuthorizationFilter authFilter; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der authFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AuthorizationFilter getAuthFilter() { - return authFilter; - } - - /** - * Legt den Wert der authFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AuthorizationFilter } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAuthFilter(AuthorizationFilter value) { - this.authFilter = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index f02b5f6d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,260 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds2Types.v2_15.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_15.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String maklerID; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar timeStamp; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List packageContentCode; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 2f38ce2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected XMLGregorianCalendar dateUntil; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 7535ea02..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,110 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OMDSPackageListResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index 9bf3fc0f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected AgentFilterType agentFilter; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List omdsPackageId; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index b668c70f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class OMDSPackageResponse { - - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ObjectFactory.java deleted file mode 100644 index 1452ca3c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/ObjectFactory.java +++ /dev/null @@ -1,551 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.vvo.omds.types.omds3Types.r1_9_0.servicetypes package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class ObjectFactory { - - private final static QName _LoginRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginRequest"); - private final static QName _LoginResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "loginResponse"); - private final static QName _GetUserDataRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataRequest"); - private final static QName _GetUserDataResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getUserDataResponse"); - private final static QName _GetOMDSPackageListRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListRequest"); - private final static QName _GetOMDSPackageListResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageListResponse"); - private final static QName _GetOMDSPackageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageRequest"); - private final static QName _GetOMDSPackageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getOMDSPackageResponse"); - private final static QName _GetArcImageInfosRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosRequest"); - private final static QName _GetArcImageInfosResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageInfosResponse"); - private final static QName _GetArcImageRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageRequest"); - private final static QName _GetArcImageResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getArcImageResponse"); - private final static QName _GetDeepLinkClaimRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimRequest"); - private final static QName _GetDeepLinkClaimResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkClaimResponse"); - private final static QName _GetDeepLinkPartnerRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerRequest"); - private final static QName _GetDeepLinkPartnerResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPartnerResponse"); - private final static QName _GetDeepLinkOfferRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferRequest"); - private final static QName _GetDeepLinkOfferResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkOfferResponse"); - private final static QName _GetDeepLinkPolicyRequest_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyRequest"); - private final static QName _GetDeepLinkPolicyResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkPolicyResponse"); - private final static QName _GetDeepLinkBusinessObjectResponse_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "getDeepLinkBusinessObjectResponse"); - private final static QName _WithoutFrame_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "withoutFrame"); - private final static QName _HttpActionLink_QNAME = new QName("urn:omds3ServiceTypes-1-1-0", "httpActionLink"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_9_0.servicetypes - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link RequestedOMDSPackage } - * - */ - public RequestedOMDSPackage createRequestedOMDSPackage() { - return new RequestedOMDSPackage(); - } - - /** - * Create an instance of {@link UserDataResponse } - * - */ - public UserDataResponse createUserDataResponse() { - return new UserDataResponse(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link DeepLinkBusinessObjectResponse } - * - */ - public DeepLinkBusinessObjectResponse createDeepLinkBusinessObjectResponse() { - return new DeepLinkBusinessObjectResponse(); - } - - /** - * Create an instance of {@link UserDataRequest } - * - */ - public UserDataRequest createUserDataRequest() { - return new UserDataRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListRequest } - * - */ - public OMDSPackageListRequest createOMDSPackageListRequest() { - return new OMDSPackageListRequest(); - } - - /** - * Create an instance of {@link OMDSPackageListResponse } - * - */ - public OMDSPackageListResponse createOMDSPackageListResponse() { - return new OMDSPackageListResponse(); - } - - /** - * Create an instance of {@link OMDSPackageRequest } - * - */ - public OMDSPackageRequest createOMDSPackageRequest() { - return new OMDSPackageRequest(); - } - - /** - * Create an instance of {@link OMDSPackageResponse } - * - */ - public OMDSPackageResponse createOMDSPackageResponse() { - return new OMDSPackageResponse(); - } - - /** - * Create an instance of {@link ArcImageInfosRequest } - * - */ - public ArcImageInfosRequest createArcImageInfosRequest() { - return new ArcImageInfosRequest(); - } - - /** - * Create an instance of {@link ArcImageInfosResponse } - * - */ - public ArcImageInfosResponse createArcImageInfosResponse() { - return new ArcImageInfosResponse(); - } - - /** - * Create an instance of {@link ArcImageRequest } - * - */ - public ArcImageRequest createArcImageRequest() { - return new ArcImageRequest(); - } - - /** - * Create an instance of {@link ArcImageResponse } - * - */ - public ArcImageResponse createArcImageResponse() { - return new ArcImageResponse(); - } - - /** - * Create an instance of {@link DeepLinkClaimRequest } - * - */ - public DeepLinkClaimRequest createDeepLinkClaimRequest() { - return new DeepLinkClaimRequest(); - } - - /** - * Create an instance of {@link DeepLinkPartnerRequest } - * - */ - public DeepLinkPartnerRequest createDeepLinkPartnerRequest() { - return new DeepLinkPartnerRequest(); - } - - /** - * Create an instance of {@link DeepLinkOfferRequest } - * - */ - public DeepLinkOfferRequest createDeepLinkOfferRequest() { - return new DeepLinkOfferRequest(); - } - - /** - * Create an instance of {@link DeepLinkPolicyRequest } - * - */ - public DeepLinkPolicyRequest createDeepLinkPolicyRequest() { - return new DeepLinkPolicyRequest(); - } - - /** - * Create an instance of {@link HttpActionLinkType } - * - */ - public HttpActionLinkType createHttpActionLinkType() { - return new HttpActionLinkType(); - } - - /** - * Create an instance of {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType createOMDSPackageInfoType() { - return new OMDSPackageInfoType(); - } - - /** - * Create an instance of {@link PolicyPartnerRole } - * - */ - public PolicyPartnerRole createPolicyPartnerRole() { - return new PolicyPartnerRole(); - } - - /** - * Create an instance of {@link ArcImageInfo } - * - */ - public ArcImageInfo createArcImageInfo() { - return new ArcImageInfo(); - } - - /** - * Create an instance of {@link ArcContent } - * - */ - public ArcContent createArcContent() { - return new ArcContent(); - } - - /** - * Create an instance of {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage createRequestedOMDSPackageOmdsPackage() { - return new RequestedOMDSPackage.OmdsPackage(); - } - - /** - * Create an instance of {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices createUserDataResponseAvailableServices() { - return new UserDataResponse.AvailableServices(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginRequest") - public JAXBElement createLoginRequest(LoginRequestType value) { - return new JAXBElement(_LoginRequest_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "loginResponse") - public JAXBElement createLoginResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_LoginResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataRequest") - public JAXBElement createGetUserDataRequest(UserDataRequest value) { - return new JAXBElement(_GetUserDataRequest_QNAME, UserDataRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link UserDataResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getUserDataResponse") - public JAXBElement createGetUserDataResponse(UserDataResponse value) { - return new JAXBElement(_GetUserDataResponse_QNAME, UserDataResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListRequest") - public JAXBElement createGetOMDSPackageListRequest(OMDSPackageListRequest value) { - return new JAXBElement(_GetOMDSPackageListRequest_QNAME, OMDSPackageListRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageListResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageListResponse") - public JAXBElement createGetOMDSPackageListResponse(OMDSPackageListResponse value) { - return new JAXBElement(_GetOMDSPackageListResponse_QNAME, OMDSPackageListResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageRequest") - public JAXBElement createGetOMDSPackageRequest(OMDSPackageRequest value) { - return new JAXBElement(_GetOMDSPackageRequest_QNAME, OMDSPackageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link OMDSPackageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getOMDSPackageResponse") - public JAXBElement createGetOMDSPackageResponse(OMDSPackageResponse value) { - return new JAXBElement(_GetOMDSPackageResponse_QNAME, OMDSPackageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosRequest") - public JAXBElement createGetArcImageInfosRequest(ArcImageInfosRequest value) { - return new JAXBElement(_GetArcImageInfosRequest_QNAME, ArcImageInfosRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageInfosResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageInfosResponse") - public JAXBElement createGetArcImageInfosResponse(ArcImageInfosResponse value) { - return new JAXBElement(_GetArcImageInfosResponse_QNAME, ArcImageInfosResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageRequest") - public JAXBElement createGetArcImageRequest(ArcImageRequest value) { - return new JAXBElement(_GetArcImageRequest_QNAME, ArcImageRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link ArcImageResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getArcImageResponse") - public JAXBElement createGetArcImageResponse(ArcImageResponse value) { - return new JAXBElement(_GetArcImageResponse_QNAME, ArcImageResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkClaimRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimRequest") - public JAXBElement createGetDeepLinkClaimRequest(DeepLinkClaimRequest value) { - return new JAXBElement(_GetDeepLinkClaimRequest_QNAME, DeepLinkClaimRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkClaimResponse") - public JAXBElement createGetDeepLinkClaimResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkClaimResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPartnerRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerRequest") - public JAXBElement createGetDeepLinkPartnerRequest(DeepLinkPartnerRequest value) { - return new JAXBElement(_GetDeepLinkPartnerRequest_QNAME, DeepLinkPartnerRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPartnerResponse") - public JAXBElement createGetDeepLinkPartnerResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPartnerResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkOfferRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferRequest") - public JAXBElement createGetDeepLinkOfferRequest(DeepLinkOfferRequest value) { - return new JAXBElement(_GetDeepLinkOfferRequest_QNAME, DeepLinkOfferRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkOfferResponse") - public JAXBElement createGetDeepLinkOfferResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkOfferResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkPolicyRequest }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyRequest") - public JAXBElement createGetDeepLinkPolicyRequest(DeepLinkPolicyRequest value) { - return new JAXBElement(_GetDeepLinkPolicyRequest_QNAME, DeepLinkPolicyRequest.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkPolicyResponse") - public JAXBElement createGetDeepLinkPolicyResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkPolicyResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link DeepLinkBusinessObjectResponse }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "getDeepLinkBusinessObjectResponse") - public JAXBElement createGetDeepLinkBusinessObjectResponse(DeepLinkBusinessObjectResponse value) { - return new JAXBElement(_GetDeepLinkBusinessObjectResponse_QNAME, DeepLinkBusinessObjectResponse.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "withoutFrame") - public JAXBElement createWithoutFrame(Boolean value) { - return new JAXBElement(_WithoutFrame_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - * - * @param value - * Java instance representing xml element's value. - * @return - * the new instance of {@link JAXBElement }{@code <}{@link HttpActionLinkType }{@code >} - */ - @XmlElementDecl(namespace = "urn:omds3ServiceTypes-1-1-0", name = "httpActionLink") - public JAXBElement createHttpActionLink(HttpActionLinkType value) { - return new JAXBElement(_HttpActionLink_QNAME, HttpActionLinkType.class, null, value); - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index be2f0727..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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 at.vvo.omds.types.omds3Types.r1_9_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class PolicyPartnerRole { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String partnerNumber; - @XmlSchemaType(name = "string") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 80c71604..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,248 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.activation.DataHandler; -import javax.annotation.Generated; -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; -import at.vvo.omds.types.omds3Types.r1_9_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class RequestedOMDSPackage { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String requestedOmdsPackageId; - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class OmdsPackage { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * Ruft den Wert der content-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public DataHandler getContent() { - return content; - } - - /** - * Legt den Wert der content-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setContent(DataHandler value) { - this.content = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 8aca88f0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import javax.annotation.Generated; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class UserDataRequest { - - @XmlElement(name = "VUNr") - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String vuNr; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setVUNr(String value) { - this.vuNr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataResponse.java deleted file mode 100644 index af22b229..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,214 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.annotation.Generated; -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_15.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") -public class UserDataResponse { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected String userid; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = value; - } - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public PERSONType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public void setPerson(PERSONType value) { - this.person = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public static class AvailableServices { - - @XmlElement(required = true) - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.5", date = "2023-08-22T12:10:20+02:00") - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/package-info.java deleted file mode 100644 index 1e2dc0ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_9_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_9_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds20Types_binding.xml deleted file mode 100644 index 5fc569f6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 98c11a1d..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index e76bfcb9..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

-]]> - - - - - - Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index b2b04186..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kranken_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kranken_binding.xml deleted file mode 100644 index 521d9229..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Kranken_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Leben_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Leben_binding.xml deleted file mode 100644 index c28ab667..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Leben_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Produktfinder_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Produktfinder_binding.xml deleted file mode 100644 index 1140cb7c..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Produktfinder_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_RS_binding.xml deleted file mode 100644 index ee39d06f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_RS_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index c700e858..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Unfall_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Unfall_binding.xml deleted file mode 100644 index 08d814c6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON2_Antrag_Unfall_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON3_Vertrag_binding.xml deleted file mode 100644 index 05624a0e..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON3_Vertrag_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index b113a360..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index e6dd2430..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 91c75f91..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - Die Liste der zulässigen Kombinationen.

-]]>
-
-
- - - - Die Liste der zulässigen Baustein-Ids.

-]]>
-
-
- - - - - Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - - - Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

-]]>
-
-
- - - - Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

-]]>
-
-
- - -
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 511340d4..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsServiceTypes_binding.xml deleted file mode 100644 index ea690591..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_binding.xml deleted file mode 100644 index 80a41908..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_broker_binding.xml deleted file mode 100644 index d228b08e..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_10_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omds20Types_binding.xml deleted file mode 100644 index 891cf5d5..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omds20Types_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 1c3e9f08..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsExampleVuExtension_binding.xml deleted file mode 100644 index fa6bc5c4..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsServiceTypes_binding.xml deleted file mode 100644 index bf703cb1..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_binding.xml deleted file mode 100644 index 4b5d06c5..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_broker_binding.xml deleted file mode 100644 index 63187458..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_1_1/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omds20Types_binding.xml deleted file mode 100644 index 90a2aaed..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index d91e5e25..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 1dba9e38..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsServiceTypes_binding.xml deleted file mode 100644 index c7b8e815..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_binding.xml deleted file mode 100644 index d8c333db..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_broker_binding.xml deleted file mode 100644 index 7bbf3ca6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_2_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds20Types_binding.xml deleted file mode 100644 index 33e6d412..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index dbd0fddf..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index 0c8c4128..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index 8cbdc3fe..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index e55676c8..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index f194d7eb..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsServiceTypes_binding.xml deleted file mode 100644 index 83ae2a00..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_binding.xml deleted file mode 100644 index da46cf02..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_broker_binding.xml deleted file mode 100644 index e7a4a960..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_3_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds20Types_binding.xml deleted file mode 100644 index cd110ddd..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 7c2baa37..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index 266c9efe..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index 8dc3eed3..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index e0700981..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index 5801576e..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index 2b50e2c6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 6cf4a495..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 39938fac..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsServiceTypes_binding.xml deleted file mode 100644 index 4be1e35f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_binding.xml deleted file mode 100644 index cbcbc4f1..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_broker_binding.xml deleted file mode 100644 index 459cb165..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds20Types_binding.xml deleted file mode 100644 index 72a98116..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 2ebb76c3..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index 5f3aaee9..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index 58ea44a8..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kranken_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kranken_binding.xml deleted file mode 100644 index f835bc8b..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Kranken_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Leben_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Leben_binding.xml deleted file mode 100644 index de6a7f1f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Leben_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Produktfinder_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Produktfinder_binding.xml deleted file mode 100644 index 9b987e0c..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Produktfinder_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_RS_binding.xml deleted file mode 100644 index 29be37c0..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_RS_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index 7ae8f496..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Unfall_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Unfall_binding.xml deleted file mode 100644 index 613eaac6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_Unfall_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON3_Vertrag_binding.xml deleted file mode 100644 index e7c65bd1..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON3_Vertrag_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index 4c22bc33..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index cac8c5a7..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 1ae145d5..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 257f39f7..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsServiceTypes_binding.xml deleted file mode 100644 index c754be7b..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_binding.xml deleted file mode 100644 index 3f5b90b3..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_broker_binding.xml deleted file mode 100644 index 59700e11..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds20Types_binding.xml deleted file mode 100644 index bb80d57a..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 91b7a57c..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index fff77da3..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

-]]>
-
-
- - - - Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - -
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index a3c9bfbe..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kranken_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kranken_binding.xml deleted file mode 100644 index e0dcf93f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Kranken_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Leben_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Leben_binding.xml deleted file mode 100644 index f54f415f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Leben_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Produktfinder_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Produktfinder_binding.xml deleted file mode 100644 index bf715c85..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Produktfinder_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_RS_binding.xml deleted file mode 100644 index c8d67f75..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_RS_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index c02afbb9..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Unfall_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Unfall_binding.xml deleted file mode 100644 index 89124751..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON2_Antrag_Unfall_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON3_Vertrag_binding.xml deleted file mode 100644 index 44a3ee95..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON3_Vertrag_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index dabb11d9..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index 5c5b14c7..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index a88f9069..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - Die Liste der zulässigen Kombinationen.

-]]>
-
-
- - - - Die Liste der zulässigen Baustein-Ids.

-]]>
-
-
- - - - - Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - - - Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

-]]>
-
-
- - - - Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

-]]>
-
-
- - -
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 02e66ffe..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsServiceTypes_binding.xml deleted file mode 100644 index 1b83d573..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_binding.xml deleted file mode 100644 index 8a258987..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_broker_binding.xml deleted file mode 100644 index 67aa3839..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_8_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds20Types_binding.xml deleted file mode 100644 index 0827e052..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 14b9a795..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index 2f2fc651..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

-]]>
-
-
- - - - Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - -
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index 675f1a4e..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kranken_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kranken_binding.xml deleted file mode 100644 index 030ba4bc..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Kranken_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Leben_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Leben_binding.xml deleted file mode 100644 index e4a62a00..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Leben_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Produktfinder_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Produktfinder_binding.xml deleted file mode 100644 index ecd82f50..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Produktfinder_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_RS_binding.xml deleted file mode 100644 index e0779532..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_RS_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index 61b1bea8..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Unfall_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Unfall_binding.xml deleted file mode 100644 index 9d11d21f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON2_Antrag_Unfall_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON3_Vertrag_binding.xml deleted file mode 100644 index 0a33381f..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON3_Vertrag_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index 5a6869a4..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index 98a43fa6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 937d2264..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - Die Liste der zulässigen Kombinationen.

-]]>
-
-
- - - - Die Liste der zulässigen Baustein-Ids.

-]]>
-
-
- - - - - Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

-]]>
-
-
- - - - Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. - Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. - Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

-]]>
-
-
- - - - Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

-]]>
-
-
- - -
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 32729603..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsServiceTypes_binding.xml deleted file mode 100644 index e6c46b53..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_binding.xml deleted file mode 100644 index 2e55c07b..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_broker_binding.xml deleted file mode 100644 index 52f78846..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_9_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReadMe.txt b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReadMe.txt new file mode 100644 index 00000000..ca995f85 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReadMe.txt @@ -0,0 +1,18 @@ +Releases +================================ +OMDS 3 Version 1.0.0 - Okt. 2017 - erste Veröffentlichung der 'Quick-Wins' +OMDS 3 Version 1.1.0 - Okt. 2017 - Veröffentlichung Schaden, Services die von Maklern betrieben werden, Bugfixes zu 1.0.0 +OMDS 3 Version 1.1.1 - Dez. 2017 - Bugfixes zu 1.1.0: Bei einigen Elementen war der z.B. Typ nicht definiert +OMDS 3 Version 1.2.0 - Mai 2018 - Autorisierung neu beschrieben, keine Änderungen in den Services selbst +OMDS 3 Version 1.3.0 - Jun. 2019 - Berechnung-Offert-Antrag Kfz neu +OMDS 3 Version 1.4.0 - Okt. 2019 - Berechnung-Offert-Antrag Kfz überarbeitet, Verwendung OMDS 2.11 +OMDS 3 Version 1.5.0 - Jul. 2020 - Berechnung-Offert-Antrag Sach-privat, Schaden überarbeitet, Verwendung OMDS 2.11 +OMDS 3 Version 1.6.0 - Jul. 2021 - Service-Release: Verwendung OMDS 2.14 (SNAPSHOT) +OMDS 3 Version 1.7.0 - Jän. 2022 - Neue Sparten: Berechnung-Offert-Antrag Unfall, Leben, Verwendung OMDS 2.14.0, + Handling von Dokumenten im Prozess, Konvertierung-Fahrzeugwechsel-Wechselkennzeichen. +OMDS 3 Version 1.8.0 - Aug. 2022 - Service-Release: Deckungsprüfung, Belegeinreichung, Veröffentlichungsprozess, + Legitimation, Haftpflicht optional in Kfz +OMDS 3 Version 1.9.0 - Jul. 2023 - Konvertierungshilfe +OMDS 3 Version 1.10.0 - Dez. 2023 - Postservice, Geschäftsfall-Log, Elektronische Versicherungsbestätigung +OMDS 3 Version 1.11.0 - Mai. 2024 - Service-Release: Erweiterung Metadaten Postservice, ZusaetzlicheKfzDaten direkt zum Fzg + Anforderung opt. Dokumente in Prozess diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReleaseNotes-1-11-0.txt b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReleaseNotes-1-11-0.txt new file mode 100644 index 00000000..a3a5b749 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/ReleaseNotes-1-11-0.txt @@ -0,0 +1,374 @@ +============== +Version 1.11.0 +============== + +Was ist neu oder anders in Version 1.11.0 im Vergleich zur Version 1.10.0? +========================================================================== + +1. Vinkulierung in Kfz als deprecated markiert, es sollte das neuere Konzept Sicherstellung (inkl. Vinkulierung) + genutzt werden (seit Version 1.7.0). +2. In Vinkularglaeubiger_Type wurde die Vertragsnummer optional. +3. ZusatzproduktKfz_Type bekommt eine optionale FahrzeugRefLfdNr vom Typ xsd:unsignedShort. +4. Optionaler Bezug auf ein versichertes Interesse (oder mehrere versicherte Interessen) als VersInteresseRefLfnr + in VorversicherungenDetail_Type eingefügt. +5. HaftpflichtKfz_Type die Versicherungssumme wurde optional, damit sie im Request nicht + zwangsläufig mit übermittelt werden muss. +6. ZusaetzlicheKfzDaten als deprecated markiert, der Fahrzeug_Type wurde um diese Felder ergänzt. +7. Die FahrzeugRefLfdNr wurde von xsd:string auf xsd:unsignedShort geändert und passt damit vom Typ zur + Lfnr in VersichertesInteresse_Type, von welchem auch Fahrzeug_Type abgeleitet ist. Das ist streng genommen + nicht abwärtskompatibel. Da aber im Fahrzeug schon bisher die Lfnr vom Typ xsd:unsignedShort war, + müssen die Werte auch schon bisher eine Zahl gewesen sein und daher auch bisherige XMLs valide sein. + Bei der Implementierung kommt es allerdings zu änderungen, da die Referenz in den Bausteinen jetzt z.B. in + Java mit "int" und nicht mehr mit "String" abgebildet wird. +8. Korrektur der Geschäftsfallnummer in GeschaeftsfallEreignis_Type von xsd:string auf cst:ObjektId_Type. +9. Die verwendete OMDS 2 Version 2.16 schreibt jetzt ein Pattern im Format omds:Datum-Zeit vor. + Dieses Pattern ist neu und sieht 1-3 Millisekunden vor. + Betroffen sind: + * Service zur OMDS 2 Abholung (OMDSPackageInfoType) + * Schaden: Ereigniszeitpunkt, Meldedatum + * Geschäftsfall-Log / GetStateChanges: Ereigniszeitpunkt + * BOA-Services u. weitere: GueltigAb in ObjektId_Type. + ObjektId wird an vielen Stellen in BOA verwendet, oftmals wahrscheinlich ohne GueltigAb. + * Dokumententypen das Filedatum (DokumentData_Type, DokumentInfo_Type, DokumentenReferenz_Type) +10. Erweiterungen Metadaten Postservice. +11. DocumentType Wert 52 für BM Verzichtserklärung wurde gestrichen, da er doppelt definiert wurde. +12. Antragstrecke signalisiert Genehmigungsvorbehalt mit Fehlercode 40550. +13. RequestUpselling in Calculate ist optional und wurde als deprecated markiert. +14. Umstellung der Generierung der Java-Klassen auf Java 17 (einige Klassenpfade ändern sich von + "javax" auf "jakarta"), entfernen Javaklassen älterer Versionen, da aufgrund der unveränderten + Namespaces unterschiedliche Versionen derzeit ohnehin nicht in einer Applikation betrieben werden können. +15. ZustimmungZurVerwendungDerDatenZuWerbezwecken ist jetzt optional. Dies ermöglicht die Frage unbeantwortet zu lassen. +16. RequestUpselling ist künftig optional und deprecated +17. Neue Möglichkeit optionale Dokumente im Request von CreateOffer und CreateApplication anzufordern mittels + cst:ProzessDokRequest_Type. Dokumente werden dann im Response zurückgegeben. TODO Doku dazu +18. Personen in Calculate als Deprecated markiert, dort sollten keine Personendaten mehr mitgegeben werden. +19. SubmitApplicationStatus_Type neuer Zustand 15: Antrag ausgesteuert und wartet auf Rückmeldung vom Vermittler. + + +============== +Version 1.10.0 +============== + +Was ist neu oder anders in Version 1.10.0 im Vergleich zur Version 1.9.0? +====================================================?==================== + +1. Post-Service, bestehend aus den Services GetDocumentsOfPeriod, AcknowledgeDocuments und GetArcImage. +2. Geschäftsfall-Log: Service GetStateChanges +3. Elektronische Versicherungsbestätigung: Service CreateVB +4. Referenz auf versicherte Interessen (Risikoobjekte) kann in Produkten Sach-Privat entfallen, + z.B. wenn es nur ein Risikoobjekt gibt oder wenn die Deckung keinen Bezug auf ein spezifisches Risikobjekt benötigt. +2. Ergänzt fehlenden Typ für Jahrespraemien in Praemie_Type als omds:decimal +3. Dokumentation Statusübergänge am Antrag korrigiert, Dokumentation BOA-Prozess verbessert. +4. RisikoGebaeude_Type PreisProQm kein Pflichtfeld mehr. +5. Ersatzpolizze_Type nicht mehr abstrakt, kann direkt verwendet werden +6. Dokumentation Konvertierungshilfe verschoben in eigenes Verzeichnis ON_2.03 "BOA Vorbereitung" +7 Dokumentenreferenz_Type ist final +8 Im Response von GetArcImage (Typ ArcContent) dürfen die Metadaten des Dokuments (ArcImageInfo) entfallen. + +============= +Version 1.9.0 +============= + +Was ist neu oder anders in Version 1.9.0 im Vergleich zur Version 1.8.0? +======================================================================== +1. Version 1.9.0 ist abwärtskompatibel zur Version 1.8.0 in dem Sinne, dass ein XML welches unter 1.8.0 valide ist + auch unter 1.9.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Neue OMDS Version 2.15-00 +3. Neues Feature: Konvertierungshilfe, für Konvertierungsvorschläge der VU zu einem bestehenden Vertrag + (conversionScope, conversionProposal) +4. Dokumententypen erweitert: Rahmenvereinbarung, Infoblatt Berater +5. Nicht verwendeter CommonSearchRequest_Type und CommonSearchResponse_Type entfernt. +6. Fehler in Autorisierung_Type korrigiert AutorisierungsId hatte keinen Typ, Rolle nur optional +7. ProzessDokumentBasis_Type Beschreibung Dokument nur optional +8. JahrespraemieNto als deprecated markiert, dafür neue Felder JahrespraemieNto und JahrespraemieBto bei Prämie +9. Ein weiterer Zustand Antrag: "Antrag ausgesteuert" für Anträge die in manuelle Bearbeitung gehen +10. ArtAusfolgung ergänzt um "Dokument ist nur für den Vermittler bestimmt" +11. Messverfahren CO2-Ausstoß im Kfz-Objekt ergänzt +12. Aufnahme von Polizzennr und VertragsId im Antragsobjekt, um diese bei sofortiger Polizzierung retournieren zu können. +13. Fondsdaten um eine optionale Bezeichnung ergänzt. +14. Angaben zur Verteilung in Kontierungen optional, Mengenbeschränkung auf max. 3 Kontierungen entfernt. + + +============= +Version 1.8.0 +============= + +Was ist neu oder anders in Version 1.8.0 (Hotfix 1) im Vergleich zur Version 1.7.0? +=================================================================================== +1. Version 1.8.0 ist abwärtskompatibel zur Version 1.7.0 in dem Sinne, dass ein XML welches unter 1.7.0 valide ist + auch unter 1.8.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Neue Services Deckungsauskunft und Belegeinreichung aufgenommen: + Neue Methoden sind CheckCoverage und SubmitReceipt. +3. Haftpflicht in Kfz wird optionaler Vertragsbestandteil (bisher verpflichtend) +4. SpartendetailSchaden_Type bekommt folgende neue Attribute Koerperhaelfte, Koerperteil und BehoerdlicheAufnahme +5. Neu aufgenommen Legitimation_Type +6. Mit dem Wert "parameters" gab es ein Problem bei der Generierung von Clients unter Visual Studio. Daher wurde + + geändert auf + +7. Anpassung des Veröffentlichungsprocederes im Dokument ON_1.01.3 Versionierung: Der Steuerkreis + entscheidet über die Veröffentlichung unabhängig vom formalen Status der jeweiligen Norm. +8. Kfz-Kasko: Merkmal Neuwertklausel ja/nein auch bei Teilkasko verfügbar. +9. Selbstbehalt in Sach-Privat auf Produktebene verfügbar. Selbstbehalte bekommen eine Art + und können künftig von VU nochmals abgeleitet werden. +10. Kfz-Risikoobjekt erhält ein optionales Element "Historisch" vom Typ boolean. +11. Möglichkeit den Dateinamen beim Upload / Download von Binaries mit anzugeben. +12. Neues Feld TarifId um einen Antrags- bzw. Vertragsbaustein auf eine konkrete Produktkomponente beziehen zu können. + Der Typ von TarifId ist abstrakt und muss von der VU überschrieben werden, z.B. mit einem Enum der zulässigen + Werte. +13. Hauptfälligkeit, Zahlrhythmus und Zahlweg stehen jetzt optional auch auf Verkaufsproduktebene zur Verfügung. + Auf der Produktebene ist die Hauptfälligkeit jetzt optional und Hauptfälligkeit, Zahlrhythmus und Zahlweg sind im + Kommentar als deprecated markiert. +14. Neues Element SpezBOASchritt_Type: Die Schritte in BOA erben von diesem gemeinsamen Element und + bauen aufeinander auf. +15. Baujahr Gebäude ist optional +16. Neuer DocumentType 42 = Deckungsvergleich + + +============= +Version 1.7.0 +============= + +Was ist neu oder anders in Version 1.7.0 im Vergleich zur Version 1.6.0? +===================================================================================== +1. Version 1.7.0 ist abwärtskompatibel zur Version 1.6.0 in dem Sinne, dass ein XML welches unter 1.6.0 valide ist + auch unter 1.7.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Berechnung-Offert-Antrag wurde für die Sparten Unfall und Leben hinzugefügt. + Für Leben wurde die Möglichkeit geschaffen bis zu 4 Produktebenen abzubilden (bisher max. 3 Ebenen). +3. Struktur für Konvertierung in BOA wurde nochmals überarbeitet und verwendet jetzt + Vererbung, damit sie künftig erweitert werden kann. Dazu wurde eine neue Zwischenschicht + in der Vererbungshierarchie von B/O/A eingefügt. +4. Dokumentenhandling in BOA wurde verbessert. +5. Neue OMDS Version 2.14-00 + - Es sind neue Personenmerkmale hinzugekommen, einige Merkmale sind nicht mehr verpflichtend + - Neue Änderungsarten: Fahrzeugwechsel, Wechselkennzeichen Aus- und Einschluss. + - Neue Legitimierungsart: Firmenbuchauszug +6. Aufnahme Vermittlername in Kontierung_Type +7. Alle BOA-Sparten: Sicherstellungen und Einwilligungen sind im Antragsobjekt neu hinzu gekommen. +8. Erweiterungsmöglichkeit für die Risikomerkmale von versicherten Interessen. + + +============= +Version 1.6.0 +============= + +Was ist neu oder anders in Version 1.6.0 im Vergleich zur Version 1.5.0? +===================================================================================== +1. Version 1.6.0 ist abwärtskompatibel zur Version 1.5.0 in dem Sinne, dass ein XML welches unter 1.5.0 valide ist + auch unter 1.6.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Aufnahme der Aufbauart in Kfz +3. Aufnahme Felder für Konvertierung in Berechnung-Offert-Antrag +4. Erweiterung der Liste der Dokumentenarten +5. Aufnahmen eines Änderungsgrundes in BOA +6. Verwendet OMDS 2.14-00 (SNAPSHOT) statt 2.11-00: + - neue Vertragsrollen: AZ - Abweichender Zulassungsbesitzer, FI - Firmeninhaber, ZB - Zustellbevollmächtigter + - neues Feld GesFormCdType in Sonst-Person + - TIN für "Titel nachgestellt" + - neuer LegArtCd_Type: FA - Firmenbuchauszug + - Geburtsland an der Person +7. Entfernen der Restriktion auf genau 4 Zeichen im Status +8. Verwendung technische Objekte in CommonRequest_Type + + +============= +Version 1.5.0 +============= + +Was ist neu oder anders in Version 1.5.0 im Vergleich zur Version 1.4.0? +===================================================================================== +1. Version 1.5.0 ist abwärtskompatibel zur Version 1.4.0 in dem Sinne, dass ein XML welches unter 1.4.0 valide ist + auch unter 1.5.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Berechnung-Offert-Antrag wurde für die Sparte Sach-Privat hinzugefügt. +3. Es wurden Methoden definiert, um Schäden zu melden und Schadenmeldungen zu suchen und aufzurufen. +4. Vinkulierung ist nicht mehr im allgemeinen Antrags-Spezifikation zu finden, sondern + nur bei KFZ. Hintergrund ist, dass für Sicherstellungen (inkl. Vinkulierung) mit 1.7.0 eine + allgemeinere Lösung kommt. +5. In der Berechnung können optional schon Daten zu Personen angegeben werden. Dies erfolgt im + Vorgriff auf Personenversicherungen, wo dies benötigt wird. In der Praxis hat sich überdies + erwiesen, dass auch bei Sachversicherungen bei manchen Versicherern bereits in der Berechnung + Personendaten erforderlich sind. +6. Es wurden neue "generische" Produktbausteine geschaffen, welche optional Produkt-Metadaten + für den Client zu den Produktbausteinen enthalten können. +7. Es wurden neue Ableitungen für das Versicherte Interesse geschaffen. +8. Für die Übermittlung von Metadaten zu Attributen wurden spezielle Typen angelegt +9. Das allgemeine Response-Objekt kann "Referenzen" aufnehmen. Dies sind Deep-Links oder andere Querverweise. + + +============= +Version 1.4.0 +============= + +Was ist neu oder anders in Version 1.4.0 im Vergleich zur Version 1.3.0? +===================================================================================== +1. Version 1.4.0 ist abwärtskompatibel zur Version 1.3.0 in dem Sinne, dass ein XML welches unter 1.3.0 valide ist + auch unter 1.4.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Folgend dem Beschluss des Steuerkreises zur Versionierung vom 28.5.2019 sind alle + Definitionen, die noch nicht durch zwei Implementierungen validiert wurden, + aus dem offiziellen Release entfernt worden. + Dies betrifft insb. Schaden, Sparten außer Kfz, maklerseitige Services, Services + zu Partner und Vertragsänderungen. + Diese Teile des Standards sind im Branch "Develop" des Git-Repository aber weiterhin verfügbar: + https://bitbucket.org/omds/omdsservicedefinitions/src/develop/ +3. Antragsdaten Kfz können auch direkt in SubmitApplicationKfz übergeben werden, ein + vorheriger Aufruf von CreateApplicateionKfz ist optional. +4. Für BerechnungsdatenKfz, OffertdatenKfz und AntragsdatenKfz sind eigene Elemente + definiert. +5. Die Zulassungsdaten sind in die omds3CommonServiceTypes gewandert und nun + Teil des Typs "Fahrzeug_Type". In 1.3 waren sie Teil von BOA-Kfz. +6. Vertragsbeginn ist in Ebene 2 und 3 optional. Vertragsbeginn und Vertragsende sind + nur noch vom Typ omds:Datum und nicht omds_Datum-Zeit. +7. Das Element Vorversicherungen wurde verallgemeinert: Es steht jetzt ein abstakter Typ + zur Beschreibung der Vorversicherungen zur Verfügung und eine Implementierung für Kfz. + Bei der Implementierung für Kfz wurde zusätzlich die Möglichkeit der Angabe einer Sparte (VtgSparteCd) + aufgenommen. Die Vorversicherungen haben das neue optionale Merkmal "Ausländische Vorversicherung". + ZusaetzlicheVorversicherungsdaten_Type wurde als zusätzliche VU-spezifische Erweiterungsmöglichkeit eingeführt. +8. Es wurde ein neues abstraktes Element "AbgelehnteRisiken" bei den Antragsdaten eingeführt. +9. Es wurden einige optionale Tarifmerkmale im Kfz-Verkaufsprodukt aufgenommen: Geburtsdatum, Postleitzahl, + Vermittlernummer und Nat. Person / Sonstige Person. +10. Für den Fahrzeugzustand wurde ein zusätzliches Element vom Typ xsd:string eingeführt. Das bisherige + Element "Fahrzeugzustand" wurde zu FzZustandBesichtigung. Der Zustandsbeschreibung_Type wurde zu + ArtBesichtigung_Type und die Schlüsselwerte wurden etwas allgemeiner formuliert. +11. Drei Elemente die bislang in den Antragsdaten Kfz enthalten waren, sind in die allgemeinen Antragsdaten + aufgenommen worden: Ersatzpolizzennummer, ZusendungWeitereDokumente, Vorversicherungen +12. Der abstrakte Produktbaustein_Type wurde zu BasisProduktbaustein_Type; Die Unterscheidung in + ProduktbausteinAntragsprozess_Type und Produktbaustein_Auskunft_Type wurde aufgegeben. + Der ProduktbausteinAntragsprozess_Type heisst jetzt einfach Produktbaustein_Type. Da alle involvierten Typen + abstrakte Typen sind, hat diese Vereinfachung keine Auswirkung auf die tatsächlichen Produktbausteine. +13. Das optionale Element VvdVertrag in ZusaetzlicheKfzdaten_Type wurde umbenannt zu, da es für + den Standard zu spezifisch ist. Es wurde das Element ZusaetzlicheAntragsdatenKfz als zusätzliche VU-spezifische + Erweiterungsmöglichkeit eingeführt, um dieses Element aufnehmen zu können. +14. MTOM Unterstützung wurde aufgenommen für: + - Download OMDSDatensätze getOMDSPackage + - Download Dokumente getArcImage + - Upload und Download Dokumenente bei BOA createApplication, submitApplication + + +============= +Version 1.3.0 +============= + +Was ist neu oder anders in Version 1.3.0 im Vergleich zur Version 1.2.0? +===================================================================================== + +1. Version 1.3.0 ist abwärtskompatibel zur Version 1.2.0 in dem Sinne, dass ein XML welches unter 1.2.0 valide ist + auch unter 1.3.0 valide ist. Generierte Objekte können abweichen und neue Elemente können im XML enthalten sein. +2. Neu enthalten ist: KFZ Berechnung - Offert - Antrag +3. Schaden hat bislang Status "Empfehlung" und wurde bisher noch in keiner Task-force erprobt. + Schaden wurde nicht-abwärtskompatibel verändert: + * VUNr in Requests ist jetzt obligatorisch + * Bereinigung von Inner-Classes + * SchadenStatus_Type erbt jetzt von AbstraktesEreignisStatusAenderung_Type und kann damit auch in + Service "GetStatusChanges" verwendet werden. + * InformationenPerson_Type - Fehlerkorrektur: Personennr war nicht als optional vermerkt + * GetNumberOfDocumentsRequest_Type und GetDocumentInfosRequest_Type: + a) Objektspezifikation, also der Bezug auf ein Geschäftsobjekt, ist optional + b) Zeitraumangabe: Änderung von omds:EL-Zeitraum_Type auf neues Element Zeitraum_Type, + welches keine Art des Zeitraums enthält + * GetDocumentInfosRequest_Type: Vorgaben zur Offset und MaxResults + * GetDocumentInfosResponse_Type: verwendet statt Typ ArcImageInfo den neuen Typ DokumentenReferenz_Type, + welcher eine Referenz auf ein Geschäftsobjekt enthalten kann + * SearchClaimRequest_Type, ChangedClaimsListRequest_Type und LossEventListRequest_Type verwenden statt + omds:EL-Zeitraum_Type den neuen Typ Zeitraum_Type + +4. ServiceFault kann einen zusätzlichen Rückgabewert enthalten: Den String "elementReference". +5. Fehlerkorrektur in ElementIdType: Das Attribut idValidUntil darf null sein. + + +============= +Version 1.2.0 +============= + +Was ist neu oder anders in Version 1.2.0 im Vergleich zur Version 1.1.1? +===================================================================================== + +1. Version 1.2.0 ist abwärtskompatibel zur Version 1.1.1, WSDLs und XSDs sind unverändert. + +2. Dokument "ON_1.02.1_AuthentifizierungAllgemein 1.2.0.docx" wurde um OAuth ergänzt und + es wurde ein erläuterndes Dokument zu OAuth hinzugefügt: "Erläuterungen_OAuth_zu_ON_1.02.1.docx". + Die Einführung von OAuth hat aber keine Auswirkungen auf die SOAP-Definitions-Files. + +============= +Version 1.1.1 +============= + +Was ist neu oder anders in Version 1.1.1 im Vergleich zur Version 1.1.0? +======================================================================== + +1. Es werden einige Fehler korrigiert, es gibt keine grundsaetzlichen Aenderungen. + Daher bleiben die Namespaces unveraendert gegenueber Version 1.1.0. + +2. Die Filenames der WSDL und XSD-Files haben die Versionsnummer nicht mehr angehängt, + da dies als unhandlich in der Generierung beeinsprucht wurde. Die Versionsnummer 1.1.1 ist + aber als Attribut im Kopf der XML-Dateien enthalten. + +3. Das Element serviceFault im File omds3CommonServiceTypes.xsd hatte keinen Type zugewiesen. + Dies wurde korrigiert auf Type ServiceFault. + +4. Das Element GeschInteresseLfnr hatte keinen Typ und hat jetzt den Typ xsd:unsignedIint bekommen. + +5. In GetDocumentInfosResponse_Type hatten ActualOffset, ActualMaxResults und TotalResults keinen Typ. + Der Typ wurde für die drei Elemente auf xsd:unsignedInt festgelegt. + +6. In MeldungsZusammenfassung_Type hatte das Element LfdNr keinen Typ. Der Typ wurde festgelegt mit xsd:unsignedInt. + +7. In Schadenereignis_Type hatten die Elemente vormaligeIdGeschaeftsfall und nachfolgendeIdGeschäftsfall keinen Typ. + Der Typ wurde festgelegt mit 'xsd:string'. Der Umlaut im Element 'nachfolgendeIdGeschäftsfall' wurde aufgelöst + zu 'nachfolgendeIdGeschaeftsfall'. + +8. In SchadenLight_Type hatte das Element 'bearbStandCd' keinen Typ. Dieser wurde festgelegt mit 'BearbStandCd_Type'. + Ferner hatten die Elemente 'vormaligeSchadennr' und 'nachfolgendeSchadennr' keinen Typ. Dieser wurde festgelegt mit 'xsd:string'. + +9. In SchadenType hatte das Element 'bearbStandCd' keinen Typ. Dieser wurde festgelegt mit 'BearbStandCd_Type'. + Ferner hatten die Elemente 'vormaligeSchadennr' und 'nachfolgendeSchadennr' keinen Typ. Dieser wurde festgelegt mit 'xsd:string'. + +10. In Meldungszusammenfassung_Type im ErgebnisSchaeden das Element 'LfdNr' war kein Typ festelegt. Dieser wurde auf + 'xsd:unsignedInt' festgelegt. + +11. In omds3Services.wsdl und in omds3ServicesBroker.wsdl waren die Faultelemente bei einigen Services für wsdl und soap + unterschiedlich benannt. Die Benennung wurde angegelichen. + + +============= +Version 1.1.0 +============= + +Was ist neu oder anders in Version 1.1.0 im Vergleich zur Version 1.0.0? +======================================================================== + +1. Filenames wurden mit Versionsnummer '1-1-0' ergaenzt, Namespaces haben ebenfalls die Versionsnummer erhalten. + +2. Die Services für Schadenmeldung und Schadenstatus wurden ergänzt. + +3. Neues WSDL für Services auf der Maklerseite: 'omds3ServicesBroker-1-1-0.wsdl'. + +4. Ein neues XSD fuer Typen, die allen OMDS 3 Services gemeinsam sind: 'omds3CommonServiceTypes-1-1-0.xsd'. + Übergeordnete Datentypen und Elemente sind in diese Datei verschoben worden. + +5. Im Element UserDataResponse ist das Unterlement 'address' enfallen, da die Adressdaten auch im Unterelement 'person' übermittelt werden können. + +6. Die Message 'serviceFault' im WSDL ist umbenannt worden nach 'ServiceFaultMsg', um Verwechslung mit dem Typ 'ServiceFault' im XSD zu vermeiden. + Die Referenzen auf das Element 'serviceFault' in den XSD-Files sind ersetzt worden durch lokale Elemente 'ServiceFault' mit dem Typ 'ServiceFault' + +7. Im Typ 'HttpActionLinkType' fehlten die verschiedenen in der Dokumentation vorgesehenen Types im Enum. Diese wurden ergänzt. + +8. Im Typ 'ElementIdType' fehlte der Typ des Elements 'idIsSingleUse'. Dieser wurde als boolean deklariert. + +9. Exemplarische Demonstration einer Versicherungs-spezifischen Erweiterung des Services wurde aufgenommen als 'omds3exampleVuServiceTypes-1-1-0.xsd'. + +10. Die Deklaration einer UsernameToken-Policy wurde ins WSDL 'omds3Services-1-1-0.wsdl' aufgenommen. + +11. Typ PolicyDocumentType zu DocumentType umbenannt, da die Dokumententypen nicht nur auf Polizzen bezogen sind. + Die Dokumententypen für Schaden wurden in 'DocumentType' als Enum ergänzt. + +13. Ein Schreibfehler wurde in MaklerID_Type korrigiert: 'MaklertID_Type' wurde zu 'MaklerID_Type'. + +14. AgentFilter umbenannt zu AgentFilter_Type + Subelemente in AgentFilter_Type wurden umbenannt: 'agentID' zu 'MaklerID' und 'agentNumber' zu 'Vermnr'. + +15. In 'ArcImageInfosRequest' und in 'PolizzenObjektSpezifikation_Type' wurde das Element 'policyPartyRole' umbenannt zu 'policyPartnerRole', + da der Typ 'PolicyPartnerRole' heißt. + +16. Für das Feld 'errorType' im Typ 'ServiceFault' wurde ein Enum für 1 = Fehler, 2 = Warnung und 3 = Hinweis hinterlegt. + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/01_Calc_Kranken_Request.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/01_Calc_Kranken_Request.xml new file mode 100644 index 00000000..04eac7f6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/01_Calc_Kranken_Request.xml @@ -0,0 +1,180 @@ + + + + + + + 23 + 1000010011 + false + false + + + + + Gesund in Wien (Produktbezeichnung) + 2024-05-01 + 02 + 1 + --05-01 + 3424324324 + + true + + + + + Deckungen für Person 1 + true + 1 + + + Sonderklasse + true + false + + + + Wahlarzt + true + true + + + 2839438624329856325832 + + Mutter und Kind + false + true + + + + + + + + Deckungen für Person 2 + true + 1 + + + 52748327403274326432 + + Sonderklasse + true + false + + + 232783264328649832 + + Wahlarzt + true + true + + + 2839438624329856325832 + + Mutter und Kind + false + true + + + + + + + + 105 + 155 + + true + Sozialversicherungsanstalt + Die Sozialversicherungsanstalt, bei der die Person versichert ist. + + Sozialversicherung der Selbständigen + SVS + + + Wiener Gebietskrankenkasse + WGKK + + 1 + + + Angestellter + Angestellter + + + Angestellter + Arzt + Apotheker + Fischer + Fleischer + Zimmermann + + + + + + 73 + 190 + + true + Sozialversicherungsanstalt + Die Sozialversicherungsanstalt, bei der die Person versichert ist. + + Sozialversicherung der Selbständigen + SVS + + + Wiener Gebietskrankenkasse + WGKK + + 1 + + + Angestellter + Angestellter + + + Angestellter + Arzt + Apotheker + Fischer + Fleischer + Zimmermann + + + + Austria Tabak in Wien + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/KrankenExtension.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/KrankenExtension.xsd new file mode 100644 index 00000000..d16c42a3 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/BspPersonenversicherung/KrankenExtension.xsd @@ -0,0 +1,103 @@ + + + + + + + + Einfache Standardimplementierung für Ordnungsbegriffe als String + + + + + + + + + + Liste der Verkaufsprodukte + + + + + Global und Sicher 2023 + + + + + Global und Sicher 2024 + + + + + + + Einfache Standardimplementierung für Ordnungsbegriffe als String + + + + + + + + + + Liste der Baustein auf Ebene Produkt + + + + + Stationär + + + + + Ambulant + + + + + + + Einfache Standardimplementierung für Ordnungsbegriffe als String + + + + + + + + + + Liste der Baustein auf Ebene Elementarprodukt + + + + + Grundbaustein + + + + + Zusatzbaustein Mutter und Kind + + + + + Sonderklasse Wien + + + + + Zahngesundheit + + + + + \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok.xml new file mode 100644 index 00000000..a0316cfd --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok.xml @@ -0,0 +1,40 @@ + + + 344 + 434234234234 + + + 1 + + + + + 1 + + + 01 + + + true + + Dokument A + Dokument B + Dokument C + + 2000-01-01 + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok2.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok2.xml new file mode 100644 index 00000000..ca0cdb8f --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/BeispielZusendungWeitereDok2.xml @@ -0,0 +1,40 @@ + + + 344 + 434234234234 + + + 1 + + + + + 1 + + + 01 + + + true + + + Dokument B + Dokument C + + 2000-01-01 + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/xsd/omds3_ON2_Antrag_Common2.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/xsd/omds3_ON2_Antrag_Common2.xsd new file mode 100644 index 00000000..3446ea17 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/ErweiterungZusendungWeitererDok/xsd/omds3_ON2_Antrag_Common2.xsd @@ -0,0 +1,754 @@ + + + + + + + + + Abstrackter Basistyp für das Datenmodell aller BOA-Prozessschritte + + + + + Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist + + + + + + + Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer. + + + + + + + + + Abstrakter Basistyp Offert, der bei Request und Response gleich ist + + + + + + + + Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer. + + + + + Referenz auf die Person, die als Versicherungsnehmer fungiert. + + + + + + + + + Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist + + + + + + + Die Antragsart kann auch vom ServiceProvider automatisch bestimmt werden, dann bleibt sie im Request leer. + + + + + Liste aller benötigten Personen, welche dann über ihre Rolle referenziert werden. Die Personen können eine Adresse enthalten. + + + + + Referenz auf die Person, die als Versicherungsnehmer fungiert. + + + + + Referenz auf einen abweichenden Praemienzahler, wenn nicht der Versicherungsnehmer die Prämie zahlt + + + + + Referenz auf weitere Versicherungsnehmer + + + + + Weitere Personen in Vertragsrollen + + + + + Bestehen Ablehnungen zu den beantragten Risiken + + + + + Bestehende Vorversicherungen zu dem Antrag + + + + + Beschreibt die Art der Zahlung und enthält die zugehörigen Daten + + + + + SEPA-Mandat-Steuerung, wenn Zahlungsdaten ein SEPA-Mandat notwendig machen. + + + + + alternativer Polizzenversand + + + + + Allgemeine Datenschutzbestimmungen + + + + + + Ersatzpolizzennummern für eine manuelle Ablöse von Polizzen. Nicht für automatische Konvertierung oder Fahrzeugwechsel. + + + + + Sollen weitere Antragsdokumente zugestellt werden (z.B. IVK) + + + + + Moeglichkeit fuer die Erweitung des Standards um eigene Antragsdaten + + + + + Daten zu etwaigen Sicherstellungen + + + + + Zustimmung zu vorgegebenen Fragen, z.B. Datenverarbeitung von Gesundheitsdaten + + + + + Optional eine Polizzennr, z.B. als Response, wenn sofort polizziert wurde. + + + + + Optional eine VertragsID, z.B. als Response, wenn sofort polizziert wurde. + + + + + + + + + Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist + + + + + + + Informationen zu FATCA. + + + + + Informatiionen zum Gemeinsamer Meldestandard-Gesetz bzw. EU Richtlinie zum Austausch von Steuerinformationen. + + + + + Angabe PEP ist zwingend + + + + + Wird der Vertrag treuhänderisch gehalten. + + + + + + + + + + Abstraktes Zwischenelement für alle BOA-Request-Types + + + + + + + Deprecated - die Angabe eines Aenderungsgrunds. Künftig sollte der Aenderungsgrund im Element Ersatzpolizzen angegeben werden. + + + + + Polizzennummern, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen. + + + + + + + + + Abstraktes Zwischenelement für alle BOA-Response-Types + + + + + + + Deprecated - die Angabe eines Aenderungsgrunds. Künftig sollte der Aenderungsgrund im Element Ersatzpolizzen angegeben werden. + + + + + Polizzennummern, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen. + + + + + + + + + Abstrakter Request für die Berechnung + + + + + + + Sollen Upselling-Vorschläge mitberechnet werden? Wenn ja kann dies zu einer längeren Berechnungsdauer führen. + + + + + + + + + Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen + + + + + + + + Abstrakter Request für das Offert + + + + + + + + Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen + + + + + + + Deprecated, verwende statt dessen DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für den Antrag + + + + + + + Deprecated: Verwende künftig Dokumente. + + + + + (Unterschriebene) Dokumente zum Antrag, möglicher Weise auf Anforderung hin. + + + + + + + + + Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen + + + + + + + optional ein aktueller Status des Antragsprozess + + + + + Wenn der Antrag fehlerfrei erstellt werden konnte, die Referenz auf diesen Antrag. Diese Referenz ist bei der Einreichung des Antrags anzugegeben. + + + + + Deprecated: Verwende künftig DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für die Antragsüberleitung + + + + + + + Deprecated: Verwende künftig Dokumente. + + + + + (Unterschriebene) Dokumente zum Antrag, möglicher Weise auf Anforderung hin. + + + + + Die Referenz auf einen zuvor mit CreateApplication erzeugten Antrag, welcher jetzt eingereicht werden soll. Diese Referenz wird durch CreateApplication erzeugt. Entweder ist solch ein Bezug zu einem vorangegangenen SubmitApplication mitzugeben oder nochmals die Daten. + + + + + + + + + Abstrakter Response der Antragsüberleitung + + + + + + + aktueller Status des eingespielten Antrages + + + + + + Deprecated, verwende künftig DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für die Berechnung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response Berechnung + + + + + + + + Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Offerterstellung + + + + + + + + Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Antragserzeugung + + + + + + + + Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Antragsüberleitung + + + + + + + + Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind + + + + + Typ um Offert- und Antragsdokumente zu beziehen + + + + + + + Eine DokumentenId als String + + + + + + + + + Typ um Offert- und Antragsdokumente zurückzugeben + + + + + + + + + + + + Element um Offert- und Antragsdokumente zu beziehen + + + + + Element um Offert- und Antragsdokumente zurückzugeben + + + + + Request um die Konvertierungsmöglichkeiten für einen oder mehrere Verträge zu erhalten + + + + + + + + Angabe für welche Verträge die Konvertierung geplant ist. + + + + + + + + + + Response mit den Konvertierungsmöglichkeiten + + + + + + + + Eine Konvertierungsmöglichkeit oder mehrere Möglichkeiten. + + + + + + + + + + Request um einen Konvertierungsvorschlag zu generieren + + + + + + + + Angabe auf welchem Vertrag oder welchen Verträgen der neue Vertrag aufgebaut werden soll. + + + + + + + + + + Response um mit einem Konvertierungsvorschlag + + + + + + + + Vorschlag für den Antrag des konvertierten Vertrags. + + + + + Möglichkeit um Konvertierungsübersicht (Gegenüberstellung von Deckungen) mitzugeben. + + + + + Polizzennummern, die im Rahmen der Konvertierung abgelöst werden sollen. + + + + + + + + + + Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag + + + + + + + + Requestobjekt für die Berechnung + + + + Typ des Requestobjekts für eine Berechnung Kranken + + + + + + + + + + + + + Responseobjekt für die Berechnung + + + + Typ des Responseobjekts für eine Kranken-Berechnung + + + + + + + + + + + + + Requestobjekt für die Offerterstellung + + + + Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts + + + + + + + + + + + + + Responseobjekt für die Offerterstellung + + + + Type des Responseobjekts für eine Erstellung eines Kranken-Offerts + + + + + + + + + + + + + Requestobjekt für die Antragserzeugung + + + + Type des Requestobjekts für die Erstellung eines Krankenantrags + + + + + + + + + + + + + Responseobjekt für die Antragserzeugung + + + + Type des Responseobjekts für die Erstellung eines Krankenantrags + + + + + + + + + + + + + Requestobjekt für die Antragsüberleitung + + + + Type des Requests, um den Antrag einzureichen + + + + + + + + + + + + + Responseobjekt für die Antragsüberleitung + + + + Type des Response, um den Antrag einzureichen + + + + + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp1.xml new file mode 100644 index 00000000..c9eb40f9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp1.xml @@ -0,0 +1,31 @@ + + + + 234234234343523423 + OK + + 0 + 100 + 1 + + 442344231 + 234242345 + G4723448239472348 + Antrag + 2023-04-03T11:08:22 + Erzeugt + + 23423423424 + 1 + + 2374923042342 + 6 + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp2.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp2.xml new file mode 100644 index 00000000..d846ef6e --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp2.xml @@ -0,0 +1,29 @@ + + + + 2342342343435232342 + OK + + 0 + 100 + 1 + + 234242345 + G4723448239472348 + Antrag + 2023-04-03T11:10:33 + Erzeugt + Erzeugt + + 23423423424 + 1 + + 2374923042342 + 6 + 6 + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp3.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp3.xml new file mode 100644 index 00000000..ba4e21a4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp3.xml @@ -0,0 +1,28 @@ + + + + + + 2342342343435232333 + OK + + 0 + 100 + 1 + + 234242345 + G4723448239472348 + Antrag + 2023-04-03T11:15:12 + Erzeugt + Laufend + + 2374923042342 + 6 + 9 + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp4.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp4.xml new file mode 100644 index 00000000..c7eb4cf6 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp4.xml @@ -0,0 +1,27 @@ + + + + + 2342342343435232333 + OK + + 0 + 100 + 1 + + 234242345 + G4723448239472348 + Antrag + 2023-04-03T11:16:12 + Antrag in manueller Bearbeitung + Laufend + Unterbrochen + 2374923042342 + 9 + 14 + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp5.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp5.xml new file mode 100644 index 00000000..f5f73abe --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp5.xml @@ -0,0 +1,29 @@ + + + + + + + 2342342343435232333 + OK + + 0 + 100 + 1 + + 234242345 + G4723448239472348 + Antrag + 2023-04-03T11:16:12 + Gutachten fehlt + Unterbrochen + Wartet + 2374923042342 + 14 + 14 + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp6.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp6.xml new file mode 100644 index 00000000..82445010 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/GeschaeftsfallLog/GetStateChanges_Bsp6.xml @@ -0,0 +1,50 @@ + + + + + 234234234386675468 + OK + + 0 + 100 + 1 + + 234242345 + G4723448239472348 + Antrag + 2023-04-03T12:00:00 + Wartet + Abgeschlossen + + + VTG + + 9867856 + + NEW + 2023-04-03 + + 1 + + 75443234 + 3 + + + 2374923042342 + 14 + 1 + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/1_Calc_Request_WKZ.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/1_Calc_Request_WKZ.xml new file mode 100644 index 00000000..e19e0118 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/1_Calc_Request_WKZ.xml @@ -0,0 +1,77 @@ + + + 23 + 1000010011 + + false + + + + 100-200-1 + Privat Bündel + + 2022-05-01 + --05-01 + + + + 1 + + + AH + + VB + + + + 2 + AK + true + false + + + + + 2 + AK + true + false + + + 1 + AK + true + + + 1 + Aufsassenunfallversicherung + + + 2 + Aufsassenunfallversicherung + + + + + + 234 + + + 34 + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/2_CreateOffer_Kfz_Request.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/2_CreateOffer_Kfz_Request.xml new file mode 100644 index 00000000..f593000a --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/2_CreateOffer_Kfz_Request.xml @@ -0,0 +1,93 @@ + + + 23 + 1000010011 + + + + + + 1 + false + + + + + 1 + + + + + 1 + + 100-200-1 + Privat Bündel + + 2022-05-01 + --05-01 + + + + + AH + + VB + + + + 2 + AK + true + false + + + + + 2 + AK + true + false + + + 1 + AK + true + + + 1 + Aufsassenunfallversicherung + + + 2 + Aufsassenunfallversicherung + + + + + + + + + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/KfzExtension.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/KfzExtension.xsd new file mode 100644 index 00000000..c88a2f1e --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Kfz/KfzExtension.xsd @@ -0,0 +1,24 @@ + + + + + + + + + + + + + Vorläufige Deckung gewünscht? Ja / Nein + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1.xml new file mode 100644 index 00000000..9506fcc5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1.xml @@ -0,0 +1,51 @@ + + + + 678708979 + OK + + + + 100-100-1 + Privat Bündel + + 1 + Haushalt + + + + + + 2 + Eigenheim + + + + + + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1_restr.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1_restr.xml new file mode 100644 index 00000000..07f43ef4 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var1_restr.xml @@ -0,0 +1,55 @@ + + + + 678708979 + OK + + + + 100-100-1 + Privat Bündel + + 1 + Haushalt + + + + + + 2 + Eigenheim + + + + + + 3 + Assistance + + + + + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2.xml new file mode 100644 index 00000000..94fa4003 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2.xml @@ -0,0 +1,88 @@ + + + + 678708979 + OK + + + + 100-100-1 + Privat Bündel + + 1 + Haushalt + + + 1 + Feuer + + + + + + 2 + Leitungswasser + + + + + + 3 + Haftpflicht + + + + + + + + + + 2 + Eigenheim + + + 1 + Feuer + + + + + + 2 + Leitungswasser + + + + + + + + + + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2b.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2b.xml new file mode 100644 index 00000000..01501c3b --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/1_Conversion_Scope_Response_Var2b.xml @@ -0,0 +1,84 @@ + + + + 678708979 + OK + + + + 100-100-1 + Privat Bündel + + 1 + Haushalt + + + 1 + Feuer + + + + 2 + Leitungswasser + + + + 3 + Haftpflicht + + + + + + + + + + 2 + Eigenheim + + + 1 + Feuer + + + + + + 2 + Leitungswasser + + + + + + + + + + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Request_Var1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Request_Var1.xml new file mode 100644 index 00000000..bf4dabd9 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Request_Var1.xml @@ -0,0 +1,41 @@ + + + 23 + 678708979 + + + 100-100-1 + Privat Bündel + + 1 + Haushalt + + + + 2 + Eigenheim + + + + 3 + Assistance + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1.xml new file mode 100644 index 00000000..d5d9db82 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1.xml @@ -0,0 +1,152 @@ + + + + 678708979 + OK + + + TU + + 1 + + + + + 1 + + 01 + + + true + true + false + + + + Privat Bündel + + 100-100-1 + + 2022-05-01 + true + false + + 1 + Haushalt + + 1 + + --05-01 + true + 1 + + 1 + Feuer + + 1 + + true + false + + + 2 + Leitungswasser + + 2 + + true + false + + + 3 + Haftpflicht + + 3 + + true + true + + + + 4 + Drohnenversicherung + true + true + + + + 5 + Cyber + true + true + + + + + + 234 + 100 + Z + + + + + + + 42 + Deckungsvergleich + + + application/pdf + + 0 + + + 100-100-1 + Privat Bündel + + 1 + 1 + Haushalt + + + + 2 + 2 + Eigenheim + + + + + 3 + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1_vereinfacht.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1_vereinfacht.xml new file mode 100644 index 00000000..d5d9db82 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var1_vereinfacht.xml @@ -0,0 +1,152 @@ + + + + 678708979 + OK + + + TU + + 1 + + + + + 1 + + 01 + + + true + true + false + + + + Privat Bündel + + 100-100-1 + + 2022-05-01 + true + false + + 1 + Haushalt + + 1 + + --05-01 + true + 1 + + 1 + Feuer + + 1 + + true + false + + + 2 + Leitungswasser + + 2 + + true + false + + + 3 + Haftpflicht + + 3 + + true + true + + + + 4 + Drohnenversicherung + true + true + + + + 5 + Cyber + true + true + + + + + + 234 + 100 + Z + + + + + + + 42 + Deckungsvergleich + + + application/pdf + + 0 + + + 100-100-1 + Privat Bündel + + 1 + 1 + Haushalt + + + + 2 + 2 + Eigenheim + + + + + 3 + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var2.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var2.xml new file mode 100644 index 00000000..bf2bbe3e --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/2_Conversion_Proposal_Response_Var2.xml @@ -0,0 +1,163 @@ + + + + 678708979 + OK + + + TU + + 1 + + + + + 1 + + 01 + + + true + true + false + + + + Privat Bündel + + 100-100-1 + + 2022-05-01 + true + false + + 1 + Haushalt + + 1 + + --05-01 + true + 1 + + 1 + Feuer + + 1 + + true + false + + + 2 + Haftpflicht + + 3 + + true + true + + + + 3 + Drohnenversicherung + true + true + + + + 4 + Cyber + true + true + + + + + + 234 + 100 + Z + + + + + + + 42 + Deckungsvergleich + + + application/pdf + + 0 + + + 100-100-1 + Privat Bündel + + 1 + 1 + Haushalt + + + 1 + 1 + Feuer + + + + 2 + Leitungswasser + + + + 3 + 2 + Haftpflicht + + + + + + + + 2 + 2 + Eigenheim + + + + + 3 + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/3_BOA_Request.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/3_BOA_Request.xml new file mode 100644 index 00000000..0fbeeb19 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Konvertierungshilfe/3_BOA_Request.xml @@ -0,0 +1,192 @@ + + + 23 + 1000010011 + + + 100-100-1 + + Privat Bündel + + 1 + 1 + Haushalt + + + 1 + 1 + Feuer + + + + 2 + 2 + Sturm + + + + 3 + 3 + Leitungswasser + + + + 4 + 4 + Einbruchdiebstahl + + + + 5 + 5 + Haftpflicht + + + + 6 + 6 + Glasbruch + + + + + + + + 2 + 2 + Eigenheim + + + + + 3 + 3 + Assistance + + + + + + + 100-100-2 + Rechtsschutz + + 1 + Privat Rechtsschutz + + + + false + false + + + + 100-200-1 + Privat Bündel + + 100-100-1 + + 2022-05-01 + true + false + + + 1 + Haushalt + + 1 + + --05-01 + true + 1 + + 1 + Feuer + + 1 + + true + false + + + 2 + Sturm + + 2 + + true + false + + + 3 + Leitungswasser + + 3 + + true + false + + + 4 + Einbruchdiebstahl + + 4 + + true + false + + + 5 + Haftpflicht + + 5 + + true + true + + + 6 + Glasbruch + + 6 + + true + true + + + + 7 + Drohnenversicherung + + true + true + + + + 8 + Cyber + + true + true + + + + + + 234 + 100 + Z + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod1.xml new file mode 100644 index 00000000..a0766038 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod1.xml @@ -0,0 +1,11 @@ + + + 023 + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod2.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod2.xml new file mode 100644 index 00000000..8bedbeb1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod2.xml @@ -0,0 +1,14 @@ + + + 023 + + 342342432 + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod3.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod3.xml new file mode 100644 index 00000000..cf76a15e --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/RequestDocumentsOfPeriod3.xml @@ -0,0 +1,19 @@ + + + 023 + + 342342432 + 342342442 + 342342445 + 342342466 + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/ResponseDocumentsOfPeriod1.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/ResponseDocumentsOfPeriod1.xml new file mode 100644 index 00000000..2a4312c2 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/PostService/ResponseDocumentsOfPeriod1.xml @@ -0,0 +1,66 @@ + + + + 0 + 100 + 3 + + + 32234234 + + false + + Erstpolizze Nr. 344322534 + 3 + application/pdf + 23433 + 2023-10-01T11:20:32.175 + c2ZzZGZzNDM0 + + + + + 344322534 + 344322534 + NEU + 24342434 + + + 2423434532423434 + 24342434 + + + gadt-2423-4345-3242-3434 + Antrag + + + 5443542342342 + Versicherte Person + + + + + + 32234235 + 2023-10-01T11:25:12.340 + false + + Verständigung Gewinnbeteiligung + 8 + application/pdf + 125563 + 2023-10-01T11:25:12.340 + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Schaden/BeispielAddInfoClaim.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Schaden/BeispielAddInfoClaim.xml new file mode 100644 index 00000000..d69d80da --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/TestXmls/Schaden/BeispielAddInfoClaim.xml @@ -0,0 +1,35 @@ + + + 063 + TestClient + 34535234fdfgu34543 + + 1 + + 43543543 + Zwei zusätzliche Rechnungen von der Werkstatt + Die Reparatur ist jetzt abgeschlossen, anbei die Belege von der Werkstatt. + + UjBsR09EbGhjZ0dTQUxNQUFBUUNBRU1tQ1p0dU1GUXhEUzhi + application/pdf + 48 + 2023-01-01T00:00:00 + Quittung Volvo Stoßstange + + + UjBsR09EbGhjZ0dTQUxNQUFBUUNBRU1tQ1p0dU1GUXhEUzhi + application/pdf + 48 + 2023-01-01T00:00:00 + Rechnung Volvo Frontscheibe + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds216-00.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds216-00.xsd new file mode 100644 index 00000000..8adc6e77 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds216-00.xsd @@ -0,0 +1,9014 @@ + + + + + + Version 216-00 - OMDS Arbeitsgruppe + + + + + + + + + + + + + + + + + + + + InhCd=AI + + + + + + + InhCd=VI + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Postzertifizierter Adress Code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CO²-Emission g/km +NEFZ: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + + + + + CO²-Emission g/km +WLTP: Messzyklus für PKW und leichte LKW (Klassen M1, N1) +WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e) + + + + + Kraftstoffverbrauch +NEFZ: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + + + + + Kraftstoffverbrauch +WLTP: Messzyklus für PKW und leichte LKW (Klassen M1, N1) +WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e) + + + + + Einheit für Kraftstoffverbrauch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Höchstge­schwindigkeit in Stunden­kilometern (km/h) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gibt das Datum an, zu dem der Kunde die Möglichkeit einer ordentlichen Kündigung hat (wenn z.B. abweichend von Vertragsende) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + decimal xxxxxxxxx.xxxxxxxxxx (19,10) + + + + + + + + + + decimal xxx.xxxxxx (9,6) + + + + + + + + + + decimal xxxxxxxxxxxx.xx (14,2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nummer der Mahnung + Laufende Nummer pro erfolgter Mahnung bzw. Mahnende innerhalb eines Mahnverfahrens + + + + + + + + Mahnbetrag + Enthält "alles" (Prämien, Spesen, allfällige Zinsen) + Ist 0.00 für MahnStufeCd "L" + + + + + MahnSpesen + Enthält Spesen, allfällige Zinsen + Sind in MahnBetrag ebenfalls bereits enthalten + + + + + Mahnstufe in codierter Form + + + + + Mahnstufe des Versicherungsunternehmens in Textform + + + + + + + + + + + Für Mahnung zuständig bei VU, Sachbearbeiter, Abteilung, Telefon, Email etc. + + + + + + + + + + + Für Mahnung beauftragte Stelle, Inkassobüro, Anwalt, Telefon, Email etc. + + + + + + + + + + + Datum, ab wann die Mahnstufe gilt + + + + + Datum, bis wann die Mahnstufe gilt. Ist ungleich MahnStufeGueltigAbNext. + + + + + Nächste Mahnstufe in codierter Form + + + + + Nächste Mahnstufe des Versicherungsunternehmens in Textform + + + + + + + + + + + Datum, ab wann die nächste Mahnstufe gilt + + + + + Datum, wann letzte Zahlung zu Prämienkonto erfolgte + + + + + Datum, welche älteste Fälligkeit gemahnt wird + + + + + Anzahl der gemahnten Fälligkeiten + + + + + Grund, warum ein Einzugsversuch nicht erfolgreich war, in codierter Form + + + + + Datum, bis wann die Deckung gegeben ist + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gültig ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + decimal xxxxxxxxx.xx (11,2) + + + + + + + + + + decimal xxxxxxxxxxxx.xx (14,2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Änderungsgrund + + + + + sonstiges + + + + + Änderung ohne Prämienwirksamk. + + + + + Änderung mit Prämienwirksamk. + + + + + Bonus/Malus-Anpassung + + + + + Fahrzeugwechsel + + + + + gesetzl.Erhöhung MindestVers.Su. + + + + + Indexanpassung + + + + + Konvertierung + + + + + Neuvertrag + + + + + Partnerdaten + + + + + Reaktivierung nach Ruhen Teil + + + + + Reaktivierung nach Ruhen Voll + + + + + Ruhen Teil + + + + + Ruhen Voll + + + + + Sparteneinschluß + + + + + Storno Teil + + + + + Storno Voll + + + + + Tarifanpassung Allgemein + + + + + Wechselkennzeichen Ausschluss + + + + + Wechselkennzeichen Einschluss + + + + + + + Antriebsart + + + + + ohne Antrieb (bei KFZ-Zul.verwendet vor 1.7.2007) + + + + + Benzin (bei KFZ-Zul.verwendet vor 1.7.2007) + + + + + Gas (bei KFZ-Zul.verwendet vor 1.7.2007) + + + + + Diesel (bei KFZ-Zul.verwendet vor 1.7.2007) + + + + + Benzin + + + + + Elektro (E) + + + + + Diesel + + + + + Sonstiges + + + + + Vielstoff (unterschiedliche Kraftstoffe) + + + + + Flüssiggas (LPG) + + + + + Benzin/Flüssiggas (LPG) + + + + + Benzin/Erdgas (CNG) + + + + + Hybr.Benzin/E + + + + + Erdgas (CNG) + + + + + Hybr.Diesel/E + + + + + Wasserstoff + + + + + Hybr.Wasserst./E + + + + + Wasserstoff/Benzin + + + + + Wasserst./Benzin/E + + + + + Brennstoffzelle/Wasserstoff + + + + + Brennstoffzelle/Benzin + + + + + Brennstoffzelle/Methanol + + + + + BZ/Ethanol + + + + + Hybr.Vielstoff/Elektro + + + + + Biogas + + + + + Benzin/Biogas + + + + + Hybr.Erdgas (CNG)/E + + + + + Unbekannt (bei KFZ-Zulassungen vor 1.7.2007 verwendet) + + + + + Hybr. Biogas/E + + + + + Benzin/Ethanol (E85) + + + + + + + Bezugsberechtigungsart + + + + + Ablebensfall + + + + + Erlebensfall + + + + + sonstiger Leistungsfall + + + + + + + Bearbeitungsstand + + + + + sonstiges + + + + + abgeschlossen ohne Zahlung + + + + + Doppelanlage, bzw. irrtümlich angelegt + + + + + erledigt + + + + + im Klagszustand + + + + + offen + + + + + + + Spezifizierung des Betrages + + + + + Sonstige + + + + + Bausparen prämienbegünstiger Beitrag + + + + + Bausparen begünstiger Höchsbeitrag + + + + + Bausparen noch prämienwirksam + + + + + Bausparen Prämie gesamt + + + + + Bausparen Ansparen Saldo + + + + + Bausparen mögliche Vorauszahlung + + + + + Bausparen prämienwirksame Zahlungen + + + + + Bausparen Ansparen Zinssatz + + + + + Bausparen Darlehen Restauszahlungsbetrag + + + + + Bausparen Darlehen Auszahlungen gesamt + + + + + Bausparen Darlehen Mehrleistung + + + + + Bausparen Darlehen bedingungsgemäße Rate + + + + + Bausparen Darlehen Saldo + + + + + Bausparen Darlehen Zinssatz + + + + + Bausparen Einzahlungen laufendes Jahr + + + + + Bausparen Prämie + + + + + Bausparen Punkte zum Stichtag + + + + + Bausparen Prämienvortrag + + + + + Bausparen Sparbetrag + + + + + Bausparen Zinsen nach Bindefristende + + + + + Deckungsstock + + + + + Leben Ablebenssumme mit Gewinnanteilen + + + + + Leben Ablebenssumme ohne Gewinnanteile + + + + + Leben Erlebenssumme mit Gewinnanteilen + + + + + Leben Erlebenssumme ohne Gewinnanteile + + + + + Leben Prämienfreier Wert mit Gewinnanteilen + + + + + Leben Prämienfreier Wert ohne Gewinnanteile + + + + + Leben Rückkaufswert mit Gewinnanteilen + + + + + Leben Rückkaufswert ohne Gewinnanteile + + + + + Leben Teilauszahlung + + + + + Leben Fondgebunden Fondskurs + + + + + Leben Fondgebunden Guthaben + + + + + Leben Fondgebunden Guthabenaufteilung + + + + + Leben Fondgebunden Höchststand + + + + + Leben Fondgebunden Stück + + + + + Leben Fondgebunden Zuführungsaufteilung + + + + + Leben Fondgebunden Portfolio-Gesamtvertragswert + + + + + Leben Fondgebunden Garantiewert + + + + + Leben Fondgebunden Summe einbezahlte Prämie + + + + + Kfz Listenpreis + + + + + Kfz Sonderausstattung + + + + + Tarifprämie + + + + + Schätzwert + + + + + Zuzahlung + + + + + + + Beteiligungsrolle + + + + + sonstige + + + + + Anspruchsteller + + + + + Anderes VU + + + + + Anwalt + + + + + Bezugsberechtigter + + + + + Behörden + + + + + Bestattung + + + + + Gegner + + + + + Geschädigter + + + + + Lenker + + + + + Regressgegner + + + + + Sachverständiger + + + + + Selbstbehaltszahler + + + + + Verursacher + + + + + Werkstatt + + + + + Zahlungsempfänger + + + + + Zeuge + + + + + + + Entscheidungsfrage + + + + + sonstige + + + + + Vorsteuerabzugsberechtigt Ja/Nein + + + + + Ersatzwagenverzicht Ja/Nein (Variante A/B) + + + + + Finanzamtsbestätigung erwünscht Ja/Nein + + + + + Grüne Karte erwünscht Ja/Nein + + + + + Elektronische Kommunikation erwünscht Ja/Nein + + + + + Kaskobesichtigung durchgeführt Ja/Nein + + + + + Erfolgt Untersuchung Ja/Nein + + + + + + + Zweiweg-Entscheidung (J,N) + + + + + + + + + + + Dreiweg-Entscheidung (J,N,0) + + + + + + + Ja + + + + + Nein + + + + + Unbekannt + + + + + + + Einstufungsart + + + + + Gefahrenklasse + + + + + Tarif-, Bonus/Malus-Stufe offiziell + + + + + Tarif-, Bonus/Malus-Stufe VU-intern + + + + + + + Familienstand + + + + + unbekannt + + + + + ledig + + + + + verheiratet + + + + + geschieden + + + + + verwitwet + + + + + Lebensgemeinschaft + + + + + keiner, sonstige + + + + + + + Flächenattribut + + + + + Dachboden + + + + + Erdgeschoß + + + + + Stockwerk + + + + + Mansarde + + + + + Keller mit Wohnnutzung + + + + + Keller ohne Wohnnutzung + + + + + Wohnfläche + + + + + Grundfläche + + + + + + + Fahrzeugart + + + + + Sonstige + + + + + Anhänger + + + + + Kraftrad + + + + + Lastkraftwagen + + + + + Motorfahrrad + + + + + Omnibus + + + + + Personenkraftwagen + + + + + Probekennzeichen + + + + + Sonderfahrzeuge + + + + + Zugmaschine + + + + + + + Geschlecht + + + + + unbekannt + + + + + männlich + + + + + weiblich + + + + + unbestimmt (siehe https://www.wien.gv.at/menschen/queer/intersexualitaet/anerkennung-oesterreich.html) + + + + + + + Erlaubte Werte zu GrundRuecklaufCd + Basis FINancialPAYment Stand Mai 2003 + + + + + Nichteinlösung + + + + + kein Konto + + + + + Konto geschlossen + + + + + kein Abbuchungsauftrag + + + + + Abbuchungsauftrag storniert + + + + + Kontonummer falsch + + + + + Bankleitzahl falsch + + + + + Kundeneinspruch + + + + + Todesfall + + + + + Abbuchungsauftrag wird nicht mehr durchgeführt + + + + + Storno + + + + + Lastschrift auf dieses Konto nicht möglich + + + + + Gutschrift auf dieses Konto gestzl. nicht möglich + + + + + Formalfehler + + + + + keine Rückläuferaktivität + + + + + + + Grenzwertart + + + + + DauerfolgenProz(UV) + + + + + Karenzmonate + + + + + Karenztage + + + + + + + Identifizierungsart + + + + + Firmenbuchnummer + + + + + Sozialversicherungsnr + + + + + Versicherungsbestätigung + + + + + + + Indexart + + + + + unbekannt, kein Index + + + + + Verbraucherpreisindex + + + + + Baukostenindex + + + + + Maschinenpreisindex + + + + + Rechtsschutzindex + + + + + Index, nicht zuordenbar (sonst.) + + + + + + + KommunikationsArt + + + + + Nummer (nicht zuordbar) + + + + + Geschäft Email + + + + + Geschäft Fax + + + + + Geschäft Telefon + + + + + Geschäft Mobil Telefon + + + + + Mobil EMail (nur bis inkl. Vers. 215-00 zu verw.) + + + + + Mobil Fax (nur bis inkl. Vers. 215-00 zu verw.) + + + + + Mobil Telefon (nur bis inkl. Vers. 215-00 zu verw.) + + + + + Privat Email + + + + + Privat Fax + + + + + Privat Telefon + + + + + Privat Mobil Telefon + + + + + URL (WebAdresse) Person + + + + + VU-WebAdresse Schadenmeldung + + + + + VU-EMailAdresse Schadenmeldung + + + + + VU-WebAdresse Bestandsanforderung + + + + + VU-EMailAdresse Bestandsanforderung + + + + + + + Ländercode lt. ISO-3166-1 (ALPHA 3) + https://de.wikipedia.org/wiki/ISO-3166-1-Kodierliste + + + + + unbekannt + + + + + sonstiges + + + + + Afghanistan + + + + + Ägypten + + + + + Åland + + + + + Albanien + + + + + Algerien + + + + + Amerikanische Jungferninseln + + + + + Amerikanisch-Samoa + + + + + Andorra + + + + + Angola + + + + + Anguilla + + + + + Antarktis + + + + + Antigua und Barbuda + + + + + Äquatorialguinea + + + + + Argentinien + + + + + Armenien + + + + + Aruba + + + + + Ascension + + + + + Aserbaidschan + + + + + Äthiopien + + + + + Australien + + + + + Bahamas + + + + + Bahrain + + + + + Bangladesch + + + + + Barbados + + + + + Belarus (Weißrussland) + + + + + Belgien + + + + + Belize + + + + + Benin + + + + + Bermuda + + + + + Bhutan + + + + + Bolivien + + + + + Bonaire, Saba, Sint Eustatius + + + + + Bosnien und Herzegowina + + + + + Botswana + + + + + Bouvetinsel + + + + + Brasilien + + + + + Britische Jungferninseln + + + + + Britisches Territorium im Indischen Ozean + + + + + Brunei + + + + + Bulgarien + + + + + Burkina Faso + + + + + Burma (jetzt Myanmar) + + + + + Burundi + + + + + Chile + + + + + China, Volksrepublik + + + + + Clipperton (reserviert für ITU) + + + + + Cookinseln + + + + + Costa Rica + + + + + Côte d´Ivoire (Elfenbeinküste) + + + + + Curaçao + + + + + Dänemark + + + + + Deutsche Demokratische Republik (historisch) + + + + + Deutschland + + + + + Diego Garcia (reserviert für ITU) + + + + + Dominica + + + + + Dominikanische Republik + + + + + Dschibuti + + + + + Ecuador + + + + + El Salvador + + + + + Eritrea + + + + + Estland + + + + + Europäische Gemeinschaft + + + + + Falklandinseln + + + + + Färöer + + + + + Fidschi + + + + + Finnland + + + + + Frankreich + + + + + Frankreich, France métropolitaine + + + + + Französische Süd- und Antarktisgebiete + + + + + Französisch-Guayana + + + + + Französisch-Polynesien + + + + + Gabun + + + + + Gambia + + + + + Georgien + + + + + Ghana + + + + + Gibraltar + + + + + Grenada + + + + + Griechenland + + + + + Grönland + + + + + Guadeloupe + + + + + Guam + + + + + Guatemala + + + + + Guernsey (Kanalinsel) + + + + + Guinea + + + + + Guinea-Bissau + + + + + Guyana + + + + + Haiti + + + + + Heard und McDonaldinseln + + + + + Honduras + + + + + Hongkong + + + + + Indien + + + + + Indonesien + + + + + Isle of Man + + + + + Irak + + + + + Iran + + + + + Irland + + + + + Island + + + + + Israel + + + + + Italien + + + + + Jamaika + + + + + Japan + + + + + Jemen + + + + + Jersey (Kanalinsel) + + + + + Jordanien + + + + + Jugoslawien (historisch) + + + + + Cayman Islands (Kaimaninseln) + + + + + Kambodscha + + + + + Kamerun + + + + + Kanada + + + + + Kap Verde (Cabo Verde) + + + + + Kasachstan + + + + + Katar + + + + + Kenia + + + + + Kirgisistan + + + + + Kiribati + + + + + Kokosinseln + + + + + Kolumbien + + + + + Komoren + + + + + "Demokratische Republik Kongo (ehem. Zaire)" + + + + + "Republik Kongo (ehem. Kongo-Brazzaville)" + + + + + Nordkorea + + + + + Südkorea + + + + + Kroatien + + + + + Kuba + + + + + Kosovo + + + + + Kuwait + + + + + Laos + + + + + Lesotho + + + + + Lettland + + + + + Libanon + + + + + Liberia + + + + + Libyen + + + + + Liechtenstein + + + + + Litauen + + + + + Luxemburg + + + + + Macau + + + + + Madagaskar + + + + + Malawi + + + + + Malaysia + + + + + Malediven + + + + + Mali + + + + + Malta + + + + + Marokko + + + + + Marshallinseln + + + + + Martinique + + + + + Mauretanien + + + + + Mauritius + + + + + Mayotte + + + + + Nordmazedonien + + + + + Mexiko + + + + + Föderierte Staaten von Mikronesien + + + + + Moldau + + + + + Monaco + + + + + Mongolei + + + + + Montenegro + + + + + Montserrat + + + + + Mosambik + + + + + Myanmar + + + + + Namibia + + + + + Nauru + + + + + Nepal + + + + + Neukaledonien + + + + + Neuseeland + + + + + Neutrale Zone (Saudi-Arabien und Irak bis 1993) + + + + + Nicaragua + + + + + Niederlande + + + + + Niederländische Antillen (historisch) + + + + + Niger + + + + + Nigeria + + + + + Niue + + + + + Nördliche Marianen + + + + + Norfolkinsel + + + + + Norwegen + + + + + Oman + + + + + Österreich + + + + + Osttimor (Timor-Leste) + + + + + Pakistan + + + + + Palau + + + + + Panama + + + + + Papua-Neuguinea + + + + + Paraguay + + + + + Peru + + + + + Philippinen + + + + + Pitcairninseln + + + + + Polen + + + + + Portugal + + + + + Puerto Rico + + + + + Taiwan + + + + + Réunion + + + + + Ruanda + + + + + Rumänien + + + + + Russische Föderation + + + + + Saint-Barthélemy + + + + + Saint-Martin (franz. Teil) + + + + + Saint-Pierre und Miquelon + + + + + Salomonen + + + + + Sambia + + + + + Samoa + + + + + San Marino + + + + + São Tomé und Príncipe + + + + + Saudi-Arabien + + + + + Schweden + + + + + Schweiz (Confoederatio Helvetica) + + + + + Senegal + + + + + Serbien + + + + + Serbien und Montenegro (historisch) + + + + + Seychellen + + + + + Sierra Leone + + + + + Simbabwe + + + + + Singapur + + + + + Sint Maarten + + + + + Slowakei + + + + + Slowenien + + + + + Sowjetunion (UdSSR, historisch) + + + + + Somalia + + + + + Spanien + + + + + Sri Lanka + + + + + St. Helena, Ascension und Tristan da Cunha + + + + + St. Kitts und Nevis + + + + + St. Lucia + + + + + St. Vincent und die Grenadinen + + + + + Palästina + + + + + Südafrika + + + + + Sudan + + + + + Südgeorgien und die Südlichen Sandwichinseln + + + + + Südsudan + + + + + Suriname + + + + + Spitzbergen und Jan Mayen + + + + + Eswatini + + + + + Syrien + + + + + Tadschikistan + + + + + Tansania + + + + + Thailand + + + + + Togo + + + + + Tokelau + + + + + Tonga + + + + + Trinidad und Tobago + + + + + Tristan da Cunha + + + + + Tschad + + + + + Tschechien + + + + + Tschechoslowakei (historisch) + + + + + Tunesien + + + + + Türkei + + + + + Turkmenistan + + + + + Turks- und Caicosinseln + + + + + Tuvalu + + + + + Uganda + + + + + Ukraine + + + + + Ungarn + + + + + United States Minor Outlying Islands + + + + + Uruguay + + + + + Usbekistan + + + + + Vanuatu + + + + + Vatikanstadt + + + + + Venezuela + + + + + Vereinigte Arabische Emirate + + + + + Vereinigte Staaten von Amerika + + + + + Vereinigtes Königreich Großbritannien und Nordirland + + + + + Vietnam + + + + + Wallis und Futuna + + + + + Weihnachtsinsel + + + + + Westsahara + + + + + Zaire (jetzt Demokratische Republik Kongo) + + + + + Zentralafrikanische Republik + + + + + Zypern + + + + + + + Legitimierungsart + + + + + sonstige + + + + + Firmenbuchauszug + + + + + Führerschein + + + + + Personalausweis + + + + + Reisepass + + + + + + + Löschungsarten + + + + + Markieren als nichtmehrversorgt + + + + + Löschen wg.z.B.Falschlieferung + + + + + Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht + + + + + + + Migrationsart + + + + + Vermittlernummer + + + + + VertragsID + + + + + Personennummer + + + + + + + Mahnstufe + + + + + erledigt + + + + + unbekannt + + + + + Zahlungserinnerung + + + + + Qualifizierte Mahnung (§38 bzw. §39) + + + + + Deckungsfreiheit + + + + + Klagsandrohung + + + + + Klagetermin + + + + + Betreuerintervention vor Mahnklage + + + + + Auftrag zur Klage + + + + + Androhung Kennzeichenentzug (§61/3) + + + + + Prämienklage eingebracht + + + + + Brief §39 + + + + + Durchführung Kennzeichenentzug (§61/4) + + + + + Androhung Storno + + + + + Durchführung Storno + + + + + Sonstiges + + + + + + + Paketinhalt + + + + + Allgem. Initialbestand (generelle Schlüssel) + + + + + VU Fondsbestand + + + + + VU Initialbestand (VU Schlüssel) + + + + + VU Mahn/Klagebestand + + + + + VU Mischbestand + + + + + VU Provisionen + + + + + VU Schadenbestand + + + + + VU Vertragsbestand + + + + + + + Paketumfang + + + + + Differenz + + + + + gesamt + + + + + + + Personenart + + + + + natürliche Person + + + + + sonstige Person + + + + + + + Prämienfreiart + + + + + tariflich + + + + + beantragt + + + + + bedingungsgemäß + + + + + sonstige + + + + + + + Polizzenart + + + + + Ersatzpolizze bei Ersatz/Konv. + + + + + Nachversicherung + + + + + Vorpolizze bei Ersatz/Konv. + + + + + Vorpolizze bei Migration + + + + + + + Prämienfrist + + + + + Einmal + + + + + Jahr + + + + + + + Prämienkorrekturart + + + + + sonstige + + + + + Kundenrabatt + + + + + Risikozuschlag + + + + + tariflicher Nachlass + + + + + Unterjährigkeitszuschlag + + + + + + + Provisionsart + + + + + sonstige + + + + + Abschlußprovision + + + + + Bonuszahlung + + + + + Betreuungsprovision + + + + + Einmalprovision + + + + + Folgeprovision + + + + + + + Risikoart + + + + + KFZ-Haftpflicht + + + + + Voll- und Gross-Schadenkasko + + + + + Teilkasko + + + + + KFZ-Assistance + + + + + Reise-Assistance + + + + + Wohn-Assistance + + + + + Unfall-Assistance + + + + + Insassen-Unfall + + + + + Insassen-Unfall Todesfall + + + + + Insassen-Unfall Invalidität + + + + + Insassen-Unfall Taggeld + + + + + Insassen-Unfall Heilkosten + + + + + Abfertigungs-Versicherung + + + + + Bausparen Ansparen + + + + + Bausparen Darlehen + + + + + Betr.Unterbrechung-Feuer-Zivil + + + + + Betr.Unterbrechung Feuer-Industrie + + + + + Betr.Unterbrechung-EC + + + + + Betr.Unterbrechung-Maschinenbruch + + + + + Betr.Unterbrechung-Elementarschaden + + + + + Betr.Unterbrechung f.freiber. Tätige + + + + + Veranstaltungen + + + + + Blitzschlag + + + + + indirekter Blitzschlag + + + + + Einbruch-Diebstahl + + + + + Kassenboten + + + + + Extended Coverage + + + + + Feuer-Zivil + + + + + Feuer-Landwirtschaft + + + + + Feuer-Industrie + + + + + Feuer-EC + + + + + Waldbrand + + + + + Glasbruch privat + + + + + Glasbruch Geschäft + + + + + Allg.Haftpflicht + + + + + Sonder-Haftpflicht + + + + + Flug-Haftpflicht + + + + + Vermögensschaden + + + + + Atom-Haftpflicht + + + + + Verkehrs-Haftpflicht + + + + + Bauherrn-Haftpflicht + + + + + Boots-Haftpflicht + + + + + Sonstige Haftpflicht + + + + + Haushalt + + + + + Spital + + + + + Ambulanz + + + + + Heilmittel + + + + + Taggeld + + + + + Reise-KV + + + + + Pflegegeld + + + + + KV sonstige + + + + + Leben Kapital + + + + + Leben Risiko + + + + + Leben Rente + + + + + Leben Dread Disease + + + + + Leben veranlagungsorientiert + + + + + Leben Kreditrestschuld + + + + + Leben prämiengefördert + + + + + Leben fondgebunden + + + + + Berufsunfähigkeit + + + + + Erwerbsunfähigkeit + + + + + Pflegegeld + + + + + Leben sonstige + + + + + Leasing + + + + + Leitungswasser + + + + + Maschinenbruch + + + + + Maschinen-Montage + + + + + Maschinen-Garantie + + + + + Elektrogeräte + + + + + Computer und Unterhaltungselektronik + + + + + Tiefkühltruhen + + + + + Haustechnik + + + + + Privat Rechtsschutz + + + + + Kfz-Rechtsschutz + + + + + Firmen-Rechtsschutz + + + + + Schadenersatz- und Strafrechtsschutz + + + + + Arbeitsgerichtsrechtsschutz + + + + + Sozialversicherungsrechtsschutz + + + + + Beratungsrechtsschutz + + + + + Allgemeiner Vertragsrechtsschutz + + + + + Grundstückseigentum- und Mietenrechtsschutz + + + + + Erb- und Familienrechtsschutz + + + + + Disziplinarverfahren + + + + + Disziplinarverfahren für angestellte Ärzte + + + + + Vorsatzdelikte + + + + + Fahrzeugrechtsschutz + + + + + Lenkerrechtsschutz + + + + + Fahrzeugvertragsrechtsschutz + + + + + Sonstiger Rechtsschutz + + + + + Reise-Storno + + + + + Reise-Assistance + + + + + Reise-Kranken + + + + + Reise-Unfall + + + + + Kühlgut + + + + + Lizenzverlust + + + + + Atom-Sach + + + + + Bauwesen + + + + + Flugkasko + + + + + Bootskasko + + + + + Grabstätten + + + + + sonstige SV + + + + + Sturm + + + + + Land-Binnenwaren + + + + + See + + + + + Krieg + + + + + Lager + + + + + Valoren-Gewerblich + + + + + Valoren-Privat + + + + + Sportboot-Kasko + + + + + Musik-Instrumente + + + + + Kunst + + + + + Seekasko + + + + + Flusskasko + + + + + Landkasko + + + + + Reisegepäck + + + + + Fotoapparate + + + + + Film/Sach + + + + + Film/Ausfall + + + + + Sonstige Transport + + + + + Tier + + + + + Allg.Unfall + + + + + Kollektiv Unfall + + + + + Schülerunfall + + + + + Volksunfall + + + + + Flug-Unfall + + + + + Boots-Unfall + + + + + Besucher-Unfall + + + + + Unfall mit Kapitalrückgewähr + + + + + Taggeld + + + + + Invalidität + + + + + Unfallrente + + + + + Unfalltod + + + + + Spitalgeld + + + + + Unfallkosten + + + + + Kostenersatz + + + + + + + Rentenzahlungsrhythmus + + + + + jährlich + + + + + halbjährlich + + + + + vierteljährlich + + + + + monatlich + + + + + sonstiges + + + + + + + Rahmenvertragsart + + + + + Sammelversicherung + + + + + Gruppenversicherung + + + + + Betriebsversicherung + + + + + Beobachtungsversicherung + + + + + Angestellte + + + + + Makler + + + + + Großkunde + + + + + KMU + + + + + Leasing + + + + + Vorsorge + + + + + sonstiges + + + + + + + Selbstbehaltart + + + + + Mindestselbstbehalt je Schadenfall + + + + + Maximalselbstbehalt kumuliert + + + + + Maximalselbstbehalt je Schadenfall + + + + + Standardselbstbehalt je Schadenfall + + + + + Selbstbehalt sonst + + + + + Selbstbehalt reduziert + + + + + + + Schadenursache + + + + + Unbekannte Ursache Feuer + + + + + Blitzschlag + + + + + Selbstentzündung + + + + + Wärmegeräte + + + + + Mech. Energie + + + + + Elektr. Energie + + + + + Offenes Licht und Feuer + + + + + Behälterexplosion + + + + + Kinderbrandstiftung, Brandleg. + + + + + Sonst. Zündquellen + + + + + Fahrlässigkeit + + + + + Materialfehler + + + + + Mech. Gewalt + + + + + Implosion Elektrogeräte + + + + + Elektrizität Elektrogeräte + + + + + Indir. Blitzschäden Elektrog. + + + + + Sonst. Elektrogeräte + + + + + Einbruchdiebstahl + + + + + Einfacher Diebstahl + + + + + Beraubung innerh. Vers. Räuml. + + + + + Beraubung außerh. Vers. Räuml. + + + + + Sonstige Einbruchdiebstahl + + + + + Cyber Erpressung + + + + + Cyber Mobbing + + + + + Datenschutzverletzung + + + + + Datenschutzverletzung / Entf. von Schadsoftware + + + + + Diebstahl von Finanzmittel + + + + + Hardware Ersatz + + + + + Identitätsdiebstahl + + + + + Online Einkauf/Verkauf + + + + + Smart Home + + + + + Frostschäden Leitungswasser + + + + + Druckrohrgebr. Leitungswasser + + + + + Aufgebr. Leitungswasser + + + + + Fahrlässigkeit Leitungswasser + + + + + Gebr. an Druckschl./Ventile LW + + + + + Sonstige Leitungswasser + + + + + Glasschäden + + + + + Sturmschäden Kleine Elementar (Sonderrisiko) + + + + + Hagelschäden Kleine Elementar (Sonderrisiko) + + + + + Schneedruck Kleine Elementar (Sonderrisiko) + + + + + Felsst/Steinschl/Erdr kl. El. (Sonderrisiko) + + + + + Sonst. Kleine Elementar (Sonderrisiko) + + + + + Als Verkehrsteilnehmer Haftpf. + + + + + Bei d. Ausüb. v. Sport Haftpf. + + + + + Verw. v. Hieb/Stich/Schußw. HP + + + + + Als Wohnungsinhaber Haftpflicht + + + + + Sonstige Haftpflicht + + + + + sonstiges + + + + + + + Schlüsselarten (Code-Typen) + + + + + + + Änderungsgrund + + + + + Antriebsart + + + + + Aufbauart + + + + + Ausstattung + + + + + Bauart + + + + + Bezugsberechtigungsart + + + + + Bearbeitungsstand + + + + + Betragsart + + + + + Beteiligungsrolle + + + + + Dachung + + + + + Dachungsart + + + + + Entscheidungsfrage + + + + + Zweiweg-Entscheidung (J,N)> + + + + + Dreiweg-Entscheidung (J,N,0)> + + + + + Einstufungsart + + + + + Familienstand + + + + + Flächenattribut + + + + + Fahrzeugart + + + + + Art des Gebäudes + + + + + Gebäudehöhe + + + + + Geschlecht + + + + + GrundRuecklauf + + + + + Grenzwertart + + + + + Identifizierungsart + + + + + Indexart + + + + + KommunikationsArt + + + + + Ländercode + + + + + Legitimierungsart + + + + + Löschungsarten + + + + + Migrationsart + + + + + Nutzung + + + + + Objektdatenart + + + + + Paketinhalt + + + + + Paketumfang + + + + + Personenart + + + + + Prämienfreiart + + + + + Polizzenart + + + + + Prämienfrist + + + + + Prämienkorrekturart + + + + + Provisionsart + + + + + Risikoart + + + + + Rentenzahlungsrhythmus + + + + + Selbstbehaltart + + + + + Schadenursache + + + + + Art der sonstigen Person + + + + + Sparte + + + + + Steuerart + + + + + Textart + + + + + Versicherungssummenart + + + + + Verbandssparte + + + + + Versicherte Landwirtschaft + + + + + Status + + + + + Versicherte Sache + + + + + Verschulden + + + + + Verwendungszweck + + + + + Vertragsprodukt + + + + + Vertragsrolle + + + + + Vertragssparte + + + + + Vertragsstatus + + + + + Währung + + + + + Art des Zeitraumes + + + + + Zahlungsgrund + + + + + Zahlungsrhythmus + + + + + Zahlungsweg + + + + + MahnStufe + + + + + GrundRuecklauf + + + + + Sprachenschlüssel + + + + + Einheit für Verbrauch + + + + + Gesellschaftsform + + + + + Rahmenvertragsart + + + + + + + Art der sonstigen Person + + + + + unbekannt + + + + + Bank + + + + + Versicherung + + + + + Firma + + + + + Gruppe + + + + + Verein + + + + + Körperschaft + + + + + sonstige + + + + + + + Sparte + + + + + sonstige + + + + + KFZ-Haftpflicht + + + + + KFZ-Kasko (nur bis inkl. Vers. 212-02 zu verw.) + + + + + KFZ-Teilkasko + + + + + KFZ-Vollkasko + + + + + AllRisk + + + + + Assistance + + + + + KFZ-Insassenunfall + + + + + Abfertigungsversicherung + + + + + Bausparen Ansparen + + + + + Bausparen Darlehen + + + + + BUFT + + + + + Berufsunfähigkeit + + + + + Betriebs-Unterbrechung + + + + + Cyberversicherung + + + + + Einbruchdiebstahl + + + + + Elektronik pauschal + + + + + Feuer + + + + + Glasbruch + + + + + Wohnungs-Versicherung + + + + + Haftpflicht + + + + + Einzel-KV + + + + + Gruppen-KV + + + + + Kühlgut + + + + + Leasing + + + + + Lebensversicherung + + + + + Leitungswasser + + + + + Maschinen und Geräte + + + + + Reiseversicherung + + + + + Rechtsschutz + + + + + Sonstige SV + + + + + Sturm + + + + + Tierversicherung + + + + + Transportversicherung + + + + + Unfallversicherung + + + + + + + Steuerart + + + + + Vers-Steuer + + + + + Motorbez. Vers-Steuer + + + + + Feuerschutzsteuer + + + + + + + Textart + + + + + Anrede + + + + + Beruf + + + + + Freitext + + + + + Titel + + + + + Titel nachgestellt + + + + + Vertragsspez. Klausel + + + + + Beschreibung Schadenort + + + + + Schaden-Expertise (Besichtigungsdaten) + + + + + Oeamtc-Clubkarten-Nr + + + + + Ordnungsbegriff für Zuordnung Fremdsystem + + + + + Risikomerkmal + + + + + + + Versicherungssummenart + + + + + Ablebensumme + + + + + Bausparen Darlehenssumme + + + + + Bausparen Vertragssumme + + + + + Erlebensumme + + + + + EinzelVS + + + + + Höchsthaftungssumme + + + + + Höchstleistungssumme + + + + + ohne Versicherungssumme + + + + + prämienfrei + + + + + prämienpflichtig + + + + + PauschalVS + + + + + + + Verbandssparte + + + + + F. Zivil u. LW + + + + + F. Fabrik + + + + + EC zu Feuer + + + + + F. BU Zivil + + + + + F. BU Fabrik + + + + + EC zu Feuer BU + + + + + Terrorversicherung + + + + + Haushalt + + + + + EG. - Zusatz + + + + + ED (m. K.-Boten) + + + + + Maschinenbruch + + + + + Maschinen BU + + + + + Masch - Montage + + + + + Masch - Garantie + + + + + Elektrogeräte. (ohne Computer) + + + + + Leitungswasser + + + + + Glas + + + + + Kl. Elem. u. Sturm + + + + + Kühlgut + + + + + Bauwesen + + + + + Tier + + + + + Radioisotopen + + + + + Baurücklaß + + + + + Computerversich. + + + + + Einzelunfall + + + + + Kollektivunfall + + + + + Volksunfall + + + + + Privat. Haftpflicht + + + + + Betr. Haftpflicht + + + + + Vermög.-haftpflicht + + + + + Atomhaftpflicht + + + + + Sportversicherung + + + + + Luftfahrt - Haftpfl. + + + + + Luftfahrt - Kasko + + + + + Luftfahrt - Unfall + + + + + Lizenzverlust + + + + + BU f. FB / Selbst. + + + + + KFZ - Haftpfl. + + + + + KFZ - Kasko + + + + + KFZ - Ins. Unf. + + + + + Rechtsschutz + + + + + Transp.-Kasko + + + + + Transp.-Landwaren + + + + + Transp.-Seewaren + + + + + Transp.-Valoren + + + + + Transp.-Verkehrshaftung + + + + + Transp.-Div. (Film, Ausstlg.) + + + + + Reisegepäck + + + + + Reise-Storno + + + + + Reise-Assistance + + + + + Vertrauensschaden + + + + + Reise-Kranken + + + + + Reise-Unfall + + + + + Kreditversicherung + + + + + Sonstige Versich. + + + + + Lebensversicherung + + + + + Leben Kapitalversicherung + + + + + Leben Rentenversicherung + + + + + Ablebensversicherung inkl. Kreditrestschuld + + + + + Erlebensversicherung + + + + + Fondsgebundene Lebensversicherung + + + + + Leben eigenständige Dread Disease Versicherung + + + + + Leben eigenständige Berufsunfähigkeitsversicherung + + + + + Leben Pflegerentenversicherung + + + + + Prämienbegünstigte Zukunftsvorsorge + + + + + Betriebliche Altersvorsorge + + + + + Krankenversicherung + + + + + Kranken Einzelversicherung + + + + + Kranken Gruppenversicherung + + + + + Bausparen + + + + + Bausparen Ansparen + + + + + Bausparen Darlehen + + + + + Leasing + + + + + + + Versicherte Sache + + + + + Gebäude + + + + + Einrichtung + Erläuterung: Wohnungsinhalt + + + + + Vorräte + + + + + Maschinen und Anlagen + Erläuterung: betriebliche Maschinen und Anlagen zur Ausübung der Tätigkeit + + + + + Wertgegenstände + + + + + Grundstück + + + + + Betriebsstätte + Erläuterung: Betriebseinrichtung + + + + + Kühlanlagen + + + + + Solar/Photovoltaik + + + + + Luftfahrzeug + + + + + Wasserfahrzeug + + + + + Fahrrad + + + + + Windkraftanlage + + + + + Elektro und Elektronik + Erläuterung: Elektro- und Elektronikgeräte im Haushalt (z.B. Fernseher, Satellitenschüssel, Computer, Spielekonsole usw.) + + + + + Technik + Erläuterung: betrieblich genutzte technische Installationen + + + + + Landwirtschaft + + + + + Bote (Postbote) + + + + + Rechtsschutz + + + + + Kassa + + + + + Tier + + + + + D&O-Versicherung + + + + + Musikinstrumente + + + + + Haustechnik + Erläuterung: technische Anlagen und Installationen, umfasst u.a. die Bereiche Heizung, Sanitär, Elektro und Lüftung + + + + + Probekennzeichen + + + + + sonstige Sache + + + + + + + Versicherte Landwirtschaft + + + + + Inventar (z.B. Vieh, dass nie im Stall ist) + + + + + Erntefrüchte + + + + + Kulturen + + + + + Anbaufläche (wie z.B. Feld, Wald, etc.) + + + + + Selbstfahrende Maschinen (z.B. Traktor) + + + + + sonstige Landwirtschaft + + + + + + + Status + + + + + unbekannt + + + + + aktiv + + + + + suspendiert/stillgelegt + + + + + leistend + + + + + storniert + + + + + + + Verschulden + + + + + sonstiges + + + + + Eigenverschulden + + + + + Kein Verschulden + + + + + Teilverschulden + + + + + Verschulden ungeklärt + + + + + + + OMDS Version + + + + + + + + Verwendungszweck + + + + + zu keiner besonderen Verwendung bestimmt + + + + + z.Verw.im Rahmen ein.land-u.forstwirtsch.Bet.best. + + + + + zur Verwendung für den Werkverkehr bestimmt + + + + + zur Verwendung für die gewerbsm. Beförderung best. + + + + + alt - z.Verw.f.d.entgelt.Pers.Beförderung bestimmt + + + + + z.Verw.f.d.gewerbsm.Vermietung o.Beist.ein.Lenkers + + + + + zur Verwendung bei Spediteuren bestimmt + + + + + zur Beförderung von gefährlichen Gütern bestimmt + + + + + zur Verw.im Rahmen des Taxigewerbes bestimmt + + + + + z. Verw.von Möbeltransporten bestimmt (§106Abs.13) + + + + + zur Verw.als Schulfahrzeug gem.§112Abs.3 bestimmt + + + + + zur Verw.im Rahmen des Schaustellergewerbes best. + + + + + zur Verw.für entgeltl.Personenbeförderung bestimmt + + + + + z.Verw.i.Bereich d.Strassend.gem.§27Abs.1STVO 1960 + + + + + ausschl.o.vorw.f.Arb.d.Strassend.a.bel.Strassen + + + + + z.Verw.i.Ber. Kanalwartung gem.§27Abs.5STVO best. + + + + + z.kommun.Verw.i.Gebietskörp./Gemeindeverb.bestimmt + + + + + zur Verwendung für den Pannenhilfsdienst bestimmt + + + + + z.Begl.v.Sond.transp.d.beeid.Straßenaufs.org.best. + + + + + zur Verwendung für Diplomaten bestimmt + + + + + zur Verwendung für Konsuln bestimmt + + + + + ausschl.o.vorw.z.Verw.f.d.öffentl.Hilfsdienst best + + + + + z.Verw.i.Bereich der Post-u.Telegraphenverw. best. + + + + + z.Verw.f.d.Rettungsd.ein.Gebietskörpersch.o.RK + + + + + ausschl.oder vorwiegend für die Feuerwehr bestimmt + + + + + ausschl.oder vorwiegend f.d.priv.Rettungsd.best. + + + + + z.Verwendung i.Bereich d.Österr.Bundesbahnen best. + + + + + zur Verwendung im Bereich der Zollwache bestimmt + + + + + zur Verwendung im Bereich der Steuerfahndung best. + + + + + zur Verw.im Bereich d.öffentl.Sicherheitsd. best. + + + + + zur Verwendung für den Bergrettungsdienst + + + + + z.Verw.i.Ber.d. Bundesheeres o.d. Heeresverw.best. + + + + + z.Verw.f.Fahrten d.Bundespräsidenten b.feierl.Anl. + + + + + zur Verwendung für Staatsfunktionäre bestimmt + + + + + + + Vertragsprodukt + + + + + sonstige + + + + + Bausparen + + + + + Betriebsversicherung + + + + + Flotte (KFZ) + + + + + KV Einzel + + + + + KFZ + + + + + KV Gruppe + + + + + Leben Einzel + + + + + Leben Gruppe + + + + + Leasing + + + + + Landwirtschaftsversicherung + + + + + Privatversicherung + + + + + Unfallversicherung + + + + + Unfall-Gruppe + + + + + + + Vertragssparte oder Bündelung + + + + + Eigenheim Bündel + + + + + Haushalt Bündel + + + + + Landwirtschaft Bündel + + + + + Betrieb/Gewerbe Bündel + + + + + Wohnhaus/Objekt Bündel + + + + + KFZ Bündel + + + + + Personen Bündel + + + + + Privat Bündel + + + + + Sonstige Bündel + + + + + KFZ-Haftpflicht + + + + + KFZ-Kasko + + + + + Assistance + + + + + KFZ-Insassenunfall + + + + + BUFT + + + + + Bausparen + + + + + Betriebs-Unterbrechung + + + + + Berufsunfähigkeit + + + + + Einbruchdiebstahl + + + + + Feuer + + + + + Glasbruch + + + + + Wohnungs-Versicherung + + + + + Haftpflicht + + + + + Krankenversicherung + + + + + Lebensversicherung + + + + + Leasing + + + + + Leitungswasser + + + + + Maschinen und Geräte + + + + + Rechtsschutz + + + + + Sturm + + + + + Tierversicherung + + + + + Transportversicherung + + + + + Unfallversicherung + + + + + sonstige Einzelversicherung + + + + + + + Vertragsrolle + + + + + Ansprechperson + + + + + abweichender Zulassungsbesitzer + + + + + Bausparer gesetzlicher Vertreter + + + + + Bausparer mit Prämie + + + + + Bausparer ohne Prämie + + + + + Inkassoadresse + + + + + Firmeninhaber + + + + + Gesetzlicher Vertreter + + + + + Lenker + + + + + Korrespondenz/Zustelladresse + + + + + Versicherungsnehmer + + + + + Zustellbevollmächtigter + + + + + + + Vertragsstatus + + + + + unbekannt + + + + + aktiv + + + + + suspendiert, KZ-Hinterlegung + + + + + beantragt + + + + + kurzfristig + + + + + abgelehnt + + + + + zurückgetreten + + + + + storniert + + + + + + + Währung + + + + + Dollar Australien + + + + + Lewa Bulgarien + + + + + Dollar Kanadien + + + + + Franken Schweiz + + + + + Pfund Zypern + + + + + Krone Tschechien + + + + + Krone Dänemark + + + + + EURO + + + + + Pfund Großbritannien + + + + + Pfund Gibraltar + + + + + Dollar Hongkong + + + + + Kuna Kroatia + + + + + Forint Ungarn + + + + + Shekel Israel + + + + + Rupie Indien + + + + + Krone Island + + + + + Dinar Jordanien + + + + + Yen Japan + + + + + Pfund Malta + + + + + Peso Mexiko + + + + + Krone Norwegen + + + + + Dollar Neuseeland + + + + + Zloty Polen + + + + + Lau Rumänien + + + + + Krone Schweden + + + + + Dollar Singapur + + + + + Tolar Slowenien + + + + + Krone Slowakei + + + + + Rubel Rußland + + + + + Sonderziehungsrecht + + + + + Dinar Tunesien + + + + + Lira Türkei + + + + + Dollar Taiwan + + + + + US Dollar $ + + + + + Dinar Jugoslawien-Rest + + + + + Rand Südafrika + + + + + + + Art des Zeitraumes + + + + + Bedingungsdatum + + + + + Zuteilungsdatum + + + + + Prämienfreistellung + + + + + Beitragfreistellung + + + + + Ruhendstellung + + + + + Sparteneinschluss + + + + + Beobachtungszeitraum + + + + + Einzugsermächtigung + + + + + Bindefrist + + + + + Stornozeitraum + + + + + sonstige + + + + + + + Zahlungsgrund + + + + + sonstige + + + + + bedingungsgemäß + + + + + Kulanz + + + + + Rückzahlung (Minus-Betrag) + + + + + Regress + + + + + Summe bisherige Zahlungen + + + + + Rückzahlung aufgrund SB (Minus-Betrag) + + + + + + + Zahlungsrhythmus + + + + + betragsfrei + + + + + jährlich + + + + + halbjährlich + + + + + vierteljährlich + + + + + Einmalbetrag + + + + + monatlich + + + + + Sonstiges, unbekannt + + + + + + + Zahlungsweg + + + + + unbekannt + + + + + Zahlschein + + + + + Lastschrift + + + + + Kundenkonto + + + + + Kreditkarte + + + + + Vermittlerinkasso + + + + + bar (Post, Kassa) + + + + + Kontoüberweisung + + + + + Scheck + + + + + Umbuchung (Präm.-/Polizzenkto) + + + + + Onlinezahlung + + + + + Sonstiges + + + + + + + Bauart + + + + + sonstige + + + + + Fertigteil + + + + + gemischt + + + + + Holz + + + + + massiv + + + + + Metall/Blech + + + + + mobil + + + + + Riegelbau + + + + + + + Gebäudehöhe + + + + + sonstige + + + + + ebenerdig + + + + + ein Stockwerk + + + + + zwei Stockwerke + + + + + mehr als zwei Stockwerke + + + + + + + Aufbauart + + + + + Limousine + + + + + Schräghecklimousine + + + + + Kombilimousine + + + + + Coupé + + + + + Kabrio-Limousine + + + + + Mehrzweckfahrzeug + + + + + PKW-Pick-up + + + + + Van + + + + + Sattelzugmaschine + + + + + Straßenzugmaschine + + + + + Pick-up + + + + + Fahrgestell mit Führerhaus + + + + + Eindeckfahrzeug + + + + + Doppeldeckfahrzeug + + + + + Eindeck-Gelenkfahrzeug + + + + + Doppeldeck-Gelenkfahrzeug + + + + + Eindeck-Niederflurfahrzeug + + + + + Doppeldeck-Niederflurfahrzeug + + + + + Eindeck-Niederflur-Gelenkbus + + + + + Doppeldeck-Niederflur- Gelenkbus + + + + + Offenes Eindeckfahrzeug + + + + + Offenes Doppeldeckfahrzeug + + + + + Busfahrgestell + + + + + Plattform + + + + + offener Kasten + + + + + Geschlossener Kasten + + + + + Klimatisierter Aufbau mit Klimagerät + + + + + Klimatisierter Aufbau ohne Klimagerät + + + + + Seitenplanen (Curtainsider) + + + + + Wechselbrücke (austauschbarer Aufbau) + + + + + Containerträger + + + + + Fahrzeuge mit Hakenlift + + + + + Kipper + + + + + Tank + + + + + Tank zur bef. gefährlicher Güter + + + + + Tiertransporter + + + + + Fahrzeugtransporter + + + + + Betonmischer + + + + + Betonpumpwagen + + + + + Langholz + + + + + Abfallsammelfahrzeug + + + + + Straßenkehrmaschine, Straßen- und Kanalreinigung + + + + + Kompressor + + + + + Bootsträger + + + + + Träger für Segelflugzeuge + + + + + Fahrzeuge für Verkaufs- und Werbezwecke + + + + + Abschleppwagen + + + + + Leiterfahrzeug + + + + + Kranwagen + + + + + Hubarbeitsbühne + + + + + Bohrfahrzeug + + + + + Niederfluranhänger + + + + + Glastransporter + + + + + Feuerwehrfahrzeug + + + + + Offener Kasten mit Plane + + + + + Spezialaufbauten + + + + + Nachläufer + + + + + Ja + + + + + Nein + + + + + Wohnmobil + + + + + Beschussgeschützte Fahrzeuge + + + + + Krankenwagen + + + + + Leichenwagen + + + + + Wohnanhänger + + + + + Mobilkran + + + + + Rollstuhlgerechte Fahrzeuge + + + + + Dolly + + + + + Anhänger für Schwertransporte + + + + + KFZ für Schwertransport + + + + + Geräteträger + + + + + Sattelanhänger + + + + + Deichselanhänger + + + + + Zentralachsanhänger + + + + + Starrdeichselanhänger + + + + + Sattelanhänger mit Sattelkupplung + + + + + Deichselanhänger mit Sattelkupplung + + + + + + + Ausstattung + + + + + sonstige + + + + + zweckmäßig + + + + + Standard + + + + + gehoben + + + + + + + Dachung + + + + + sonstiges + + + + + hart + + + + + nicht hart + + + + + + + Dachungsart + + + + + Betondachstein + + + + + Tondachstein + + + + + Eternitplatten + + + + + Blech + + + + + harte Dachung - Andere + + + + + Bitumenabdichtung mit Schüttung + + + + + Bitumenabdichtung ohne Schüttung + + + + + Bitumenschindel + + + + + Foliendach mit Schüttung + + + + + Foliendach ohne Schüttung + + + + + nicht harte Dachung - Andere + + + + + + + Nutzung + + + + + sonstige + + + + + ständig bewohnt + + + + + nicht ständig bewohnt + + + + + unbewohnt + + + + + geschäftliche Nutzung + + + + + + + Art des Gebäudes + + + + + sonstige + + + + + Ein-/Zweifamilienhaus + + + + + Gebäude mit gewerblicher Nutzung + + + + + Gebäude mit kombinierter Nutzung + + + + + Gebäude mit landwirtschaftlicher Nutzung + + + + + Mehrfamilienhaus + + + + + Gebäude mit nicht gewerblicher Nutzung + + + + + Nebengebäude + + + + + Wochenendhaus + + + + + Zu- oder Anbau + + + + + + + Objektdatenart + + + + + sonstiges + + + + + Alarmanlage + + + + + Anzahl Tiere + + + + + Anzahl weitere Personen + + + + + Erreichbarkeit für Löschfahrzeuge + + + + + Geschosse über Erdniveau + + + + + Lage (HORA-Zone) + + + + + Preis pro Quadratmeter + + + + + Quadratmeter + + + + + Safe + + + + + Solaranlage/Fotovoltaik + + + + + Tarifzone + + + + + Tiefkühlbehälter + + + + + Wintergarten + + + + + im verbauten Ort + + + + + außerhalb des Ortsgebiets + + + + + Keller + + + + + Schwimmbecken + + + + + Wohnfläche gesamt + + + + + Inventar + + + + + Erntefrüchte + + + + + Kulturen + + + + + Arbeitsmaschinen + + + + + Erdbebenzone + + + + + Hagelzone + + + + + Schneelast + + + + + Sturmzone + + + + + + + Sprachenschlüssel + + + + + + + Tschechisch + + + + + Deutsch + + + + + Englisch + + + + + Ungarisch + + + + + Italienisch + + + + + Slowakisch + + + + + Slowenisch + + + + + + + KFZ Kennzeichen + + + + + + + + + Fahrgestellnummer + + + + + + + + + Einheit für Verbrauch + + + + + + + nicht zutreffend / sonstiges + + + + + l/100 km + + + + + m³/100 km + + + + + kg/100 km + + + + + + + Gesellschaftsform + + + + + Gesellschaft mit beschränkter Haftung + + + + + Aktiengesellschaft + + + + + Offene Gesellschaft + + + + + Kommanditgesellschaft + + + + + Gesellschaft bürgerlichen Rechts + + + + + Stille Gesellschaft + + + + + Erwerbs- und Wirtschaftsgenossenschaft + + + + + Ausländ./EU Rechtsform + + + + + Einzelunternehmen + + + + + GmbH und Co KG + + + + + Privatstiftung + + + + + Sparkasse + + + + + Verein + + + + + Wohnungseigentümergemeinschaft + + + + + Europäische Wirtschaftliche Interessenvereinigung + + + + + Arbeitsgemeinschaft + + + + + + + + InhCd=VM|VV|VS|VP|VK + + + + + + + + + + + + \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd new file mode 100644 index 00000000..d2a158be --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd @@ -0,0 +1,4375 @@ + + + + + + + + Fault-Element, wie es von einer Soap-Operation im Falle eines Faults geworfen wird + + + + + Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. + + + + + Fehlertyp ( 1 = Fehler, 2 = Warnung, 3 = Hinweis) + + + + + + Fehler + + + + + Warnung + + + + + Hinweis + + + + + + + + Fehlercode entsprechend allgemeiner Fehlerliste + + + + + + Eine ausgeschriebene Fehlermeldung, für den User + + + + + Optional die Referenz auf ein Element + + + + + + + Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern + + + + + Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden + + + + + + + Entspricht der MaklerID in der OMDS-Datensatzdefinition. Die MaklerID ist eine übergeordnete ID des Vermittlers unter welcher mehrere Vermittlernummern zusammengefasst sein können. Diese ID ist in der Regel spezifisch für das jeweilige VU, bei welchem die Daten abgeholt werden. Ein zulässiger Spezialfall ist, dass die MaklerID mit der Vermittlernummer (Vermnr) zusammenfällt. + + + + + Die Vermittlernummer vom Typ Vermnr aus der OMDS-Datensatz Definition. Die Vermittlernummer wird als Filterparameter verwendet, um eine Anfrage auf eine bestimmte Vermittlernummer zu beschränken, wenn der Benutzer auf mehrere Vermittlernummern berechtigt ist. + + + + + + + + + Dieser Typ definiert eine MaklerID als String mit mindestens einem und max. 26 Zeichen. Diese Typ-Definition entspricht der Definition des Attributs MaklerID im OMDS-Datensatz, in dem es aber keinen unabhaengigen, referenzierbaren Typ gibt. + + + + + + + + + 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 + + + + + Die eindeutige Id des Elements als String + + + + + Die Gültigkeit der Id des Elements. Wenn die Gültigkeit "null", + ist die Id unbegrenzt gueltig. Von der geplanten Gültigkeit unabhängig kann das + Element dennoch aus anderen Gründen gelöscht werden. + + + + + wahr wenn die Id nur einmal verwendet werden kann, sonst falsch + + + + + + + Definiert die unterschiedlichen Dokumententypen + + + + + Sonstiges + + + + + Antrag + + + + + Deckungsbestätigung + + + + + Erstpolizze + + + + + Folgepolizze (Nachtrag) + Aber Indexpolizze siehe Nr. 66 + + + + + Zusatzvereinbarungen + + + + + Vinkulierungen + + + + + Bewertungsgutachten + + + + + Verständigung Gewinnbeteiligungen + + + + + Umsatz/Lohnsummenmeldung + + + + + Umsatz/Lohnsummenabrechnung + + + + + BU-Summenmeldung + + + + + BU-Summenabrechnung + + + + + Finanzamtsbestätigung + + + + + Kündigung + + + + + Stornopolizze + + + + + Schadenmeldung + + + + + Schadennachtrag + + + + + Gutachten + + + + + Behördliche Anzeigebestätigung + + + + + Kostenvoranschlag + + + + + Rechnung + + + + + Schadenablehnung + + + + + Foto, Schadenfoto + + + + + Abfindungserklärung + + + + + Restwertangebot + + + + + Schreiben Rechtsanwalt + + + + + Prämienvergleich + + + + + Angebot, Vorschlag + + + + + Einzelberatungsprotokoll + + + + + Gesundheitsfragen + + + + + SEPA-Mandat + + + + + Unterschriebener Antrag + + + + + Bestätigung elektronische Kommunikation + + + + + Basisblatt + + + + + Maklervollmacht + + + + + Beratungsprotokoll, Beratungsdokumentation + + + + + Bestätigung Leasing-Devinkulierung + + + + + B/M Stufenbestätigung + + + + + Kundenprofil + + + + + Beilage + + + + + Anmeldung Kundenportal + + + + + Deckungsvergleich + + + + + Rahmenvereinbarung + + + + + Infoblatt Berater, Infoblatt zum Vermittler + + + + + Bedingungen (Vertragsgrundlagen, Klauseln) + + + + + Produktinformationsblatt + + + + + Detailprämienblatt + + + + + BM Verzichtserklärung Abtretungserklärung (Bonusstufen-Abtretung) + + + + + Obligenheiten + + + + + Informationsblatt zur Datenverarbeitung + + + + + Informationen gemäß Fern-Finanzdienstleistungsgesetz + + + + + Ausweis + + + + + Firmenbuchauszug + + + + + Gebäudeplan + + + + + Gewerbeschein + + + + + Abmeldebestätigung + + + + + Internationale Versicherungskarte (ehem. Grüne Karte) + + + + + Grundbuchsbeschluss + + + + + Einantwortungsbeschluss + + + + + Meldebestätigung + + + + + Wünsche und Bedürfnis-Test + + + + + Unfallbericht + + + + + VB - Versicherungsbestätigung Zulassung + + + + + Zulassungsschein + + + + + Indexpolizze + + + + + Reaktivierung nach Storno + + + + + + + + Definition der Partnerrollen über jeweils 2 Buchstaben. Typ wurde angelehnt an VtgRolleCd_Type, allerdings wurde neuer Typ benötigt, da Versicherte Person als Partnerrolle relevant ist. + + + + + + Versicherungsnehmer + + + + + Versicherte Person + + + + + + + Ein Ordnungsbegriff aus einem Fremdsystem, welcher dabei hilft die Kommunikation zwischen zwei Systemen zu vereinfachen + + + + + + + + + + + Abstraktes RequestObjekt + + + + + + Optional eine rein technische ClientId z.B. für eine Zugriffsstatistik nach Client. Die Id darf nicht mit fachlichen Informationen verknüpft werden. + + + + + beliebige Anzahl an technischen Parametern als Key-Value Paare + + + + + beliebige Anzahl an technischen Objekten + + + + + Eine rein technische Id des Requests für Zwecke des Debuggings, die Id darf nicht mit fachlichen Informationen verknüpft werden. + + + + + + + Abstraktes ResponseObjekt + + + + + + beliebige Anzahl an technischen Objekten + + + + + Zeitpunkt des Starts der Verarbeitung am Server + + + + + Zeitpunkt des Endes der Verarbeitung am Server + + + + + + + VU-spezifische Erweiterungsmöglichkeit für technische Daten + + + + + Statusinformationen im Response eines Serviceaufrufs + + + + + rein technische ID zum Debuggen + + + + + Enthält OK oder NOK oder im Falle einer nicht-abschließenden Verarbeitung OKNA + + + + + Eine oder mehrere Meldungen zur Anfrage + + + + + optional Querverweise oder Deeplinks + + + + + + + Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind + + + + + + + Optional eine Geschaeftsfallnummer, die mehrere Request-Responses einem Geschaeftsfall zuordnet + + + + + + + + + + Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind + + + + + + + Optional die Nummer eines Geschäftsfalls dem der Response zugeordnet ist. + + + + + + + + + Abstakter Typ fuer Suchanfragen + + + + + + + + + Mögliche Einschränkung auf einen Zeitraum + + + + + Maximale Anzahl von Ergebnissen, die zurückgegeben werden sollen + + + + + Offset in der Ergebnisliste + + + + + + + + + + + + + + + + + Abstrakter Typ für Ergebnisse von Suchen + + + + + + + Der tatsächliche Offset in der Ergebnisliste + + + + + Tatsächliche Maximalanzahl der Ergebnisse, die der Provider auf eine Anfrage zurück gibt. Beispiel: Consumer fordert 1000 Ergebnisse an, Provider liefert aber maximal 100 zurück. In diesem Fall würde hier 100 zurückgegeben. + + + + + Gesamtzahl der Ergebnisse unter dem verwendeten Filter + + + + + + + + + + Ein Link auf ein Element + + + + + Der Link als Solches + + + + + Ein vorgeschlagener Darstellungstext für den Link + + + + + + + Der Typ eines Response-Status + + + + + Request konnte verarbeitet werden + + + + + Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet. + + + + + Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden + + + + + + + Type für Objektreferenzen + + + + + Eine technische Objekt Id aus dem System des Serviceproviders (also z.B. der VU) + + + + + + + + + + Ein Zeitstempel welcher die Version eindeutig identifiziert + + + + + Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm + + + + + + + Standardimplementierung des ObjektId_Type als Element + + + + + Der Typ für eine Person mit ObjektId + + + + + Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben) + + + + + + + + + Die Hauptadresse des Partners mit ObjektId + + + + + + + + + + + + + + + Daten zur Legitimation des Antragstellers bzw. Kunden + + + + + + + + + + Typ zur Übergabe personenbezogener Daten, entspricht weitgehend OMDS Datensatz PERSON_Type, die Personennr ist aber optional. Die Person kann eine Adresse enthalten. Die Adresse hat aber keine Id. + + + + + Vertragsrolle + + + + + Hauptadresse + + + + + + + Grundsätzliche Art der Änderung + + + + + + + + + + + Typ für eine Adresse mit ObjektId + + + + + + + + + Eine Adresse mit ObjektId + + + + + Deprecated, verwende ProzessDokument_Type. + + + + + MIME-Type des Files im Anhang. + + + + + Der fachliche Typ der angehaengenten Datei + + + + + Dateiname ohne Pfad inkl. Extension + + + + + + + + + + Beinhaltet die Daten der Datei als Base64Binary oder Verweis auf MTOM-Binary + + + + + Sonstige Beschreibung des Dateianhanges + + + + + + + + + + + + Deprecated, verwende DocumentType. Der fachliche Typ der Datei: 1..Sepa-Mandat, 2..unterschrieber Antrag, 3..Bestätigung zur elektronischen Kommunikation, 4..Basisblatt, 5..Gesundheitsfragen, 6..Maklervollmacht, 7..Beratungsprotokoll u.s.w. + + + + + SEPA-Mandat + + + + + Unterschriebener Antrag Provision + + + + + Bestätigung elektronische Kommunikation + + + + + Basisblatt + + + + + Gesundheitsfragen + + + + + Maklervollmacht + + + + + Beratungsprotokoll + + + + + Bestätigung Leasing-Devinkulierung + + + + + B/M Stufenbestätigung + + + + + Kundenprofil + + + + + Beilage + + + + + Anmeldung Kundenportal + + + + + + + Abstrakter Typ zur Übermittlung von Dokumentendaten + + + + + Typ zur Übermittlung von Dokumenten als Binary plus Metadaten + + + + + + + Beinhaltet die Daten der Datei als Base64Binary oder Verweis auf MTOM-Binary + + + + + MIME-Type des Files im Anhang. + + + + + + Optional die Größe des Dokumentes in Bytes + + + + + Das technische Datum des Dokuments + + + + + Dateiname ohne Pfad + + + + + + + + + Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift) + + + + + Optional die Referenz auf eine bestimmte Autorisierungsanforderung (für den Fall, dass eine solche vom Serviceprovider übermittelt wurde) + + + + + Laufende Nummer der Person. + + + + + Rolle als Text + + + + + Die verwendete Autorisierungsart + + + + + + + Typ zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift) + + + + + Optional die Möglichkeit einer Autorisierungsanforderung eine Id zu geben, damit der Aufrufer sich darauf beziehen kann + + + + + Laufende Nummer der Person. + + + + + Rolle als Text + + + + + Die zu verwendende Autorisierungsart bzw. die Arten, die zur Wahl stehen. + + + + + + + Der Typ für Autorisierungsarten + + + + + + + + Anforderung eines Dokuments durch den Client + + + + Das angeforderte Dokument als String. Die ganzen Zahlen sind dabei reserviert für die OMDS-Typen, welche in der Enumeration DokumentType definiert sind. + + + + + + Basistyp für Bereitstellung und Anforderung von Dokumenten + + + + + Der fachliche Typ des Dokuments. Alle Integer-Werte sind dem OMDS Standard vorbehalten und folgen dem cst:DocumentType. Andere Codes für Dokumententypen können vom Serviceprovider frei gewählt werden. + + + + + Bezeichnung oder Beschreibung des Dokuments + + + + + + + + + + + + Anforderung der VU eines durch den Kunden beizubringenden Dokuments + + + + + + + Die ReferenzId der Anforderung + + + + + Die Möglichkeit erforderliche Autorisierungen des Dokuments anzufordern. + + + + + Wahr, wenn ein Upload des digitalen bzw. digitalisierten Dokuments erforderlich ist. + + + + + Zulässige MIME-Types, wenn das Dokument hochgeladen werden muss. + + + + + + Eine oder mehrere Meldungen zu dieser Anforderung. + + + + + + + + + Bereitstellung eines Dokuments durch die VU zum Unterschreiben bzw. Ausfüllen durch den Kunden + + + + + + + Die Referenz-Id der Anforderung + + + + + Spezifikation der benötigten Autorisierungen + + + + + Wahr, wenn das Dokument in digitaler oder digitalisierte Form bereitzustellen ist. + + + + + Zulässige MIME-Types, wenn das Dokument hochgeladen werden muss. + + + + + + Die Dokumentendaten + + + + + Eine oder mehrere Meldungen zu dieser Anforderung. + + + + + + + + + Bereitstellung eines Dokuments durch die VU für den Kunden, nicht zu unterschreiben + + + + + + + Die Dokumentendaten + + + + + Art der Ausfolgung an den Kunden: 0 = optional oder 1 = obligatorisch + + + + + + + + + + + + + + + Typ für den Upload / die Bereitstellung eines Dokuments als Teil eines Geschäftsfalls durch den Serviceaufrufer. + + + + + Optional die Referenz auf eine Dokumentenanforderung (für den Fall, dass eine solche vom Serviceprovider übermittelt wurde und der Serivceconsumer mit diesem Dokument einen Bezug zur Anforderung herstellen möchte) + + + + + Der fachliche Typ des Dokuments. Alle Integer-Werte sind dem OMDS Standard vorbehalten und folgen dem DocumentType. Andere Codes für Dokumententypen können vom Serviceprovider frei gewählt werden. + + + + + Bezeichnung bzw. textliche Beschreibung des Dokuments + + + + + + + + + + Optional Metadaten zu den Autorisierungen, welche vorhanden sind. + + + + + + + + + + "wahr", wenn das Originaldokument beim Aufrufer hinterlegt und aufbewahrt wird. + + + + + Die Dokumentendaten + + + + + + + Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden, insbesondere + wenn mehrere Vermittler an dem Vertrag beteiligt werden sollen. In der Regel wird die Aufteilung für Abschluss-, Folge- und Betreuungsprovision über alle Vermittler je Kategorie 100 Prozent ergeben. + Es gibt aber auch Fälle, in denen die prozentuale Aufteilung nicht mit dem Antrag übermittelt wird, sondern an anderer Stelle festgelegt wird. Es sollen dann nur die beteiligten Vermittler übermittelt werden. + Daher können die prozentualen Angaben ab Version 1.9 auch entfallen. + + + + + + eindeutige Vermittlernummer + + + + + Gibt die Möglichkeit den Vermittler gegen die Vermittlernummer auf VU-seite zu plausibilisieren + + + + + Provision Abschluss + + + + + Provision Folge + + + + + Provision Betreuung (oder Produktion) + + + + + + Produktmodell + + + + Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen + + + + + Die eindeutige Id dieses konkreten Bausteins. + + + + + Schlüssel der Tarifkomponente, die dieser Baustein repräsentiert. + + + + + Eine menschenverständliche Bezeichnung. Ist kein Eingabewert,wird von der VU gesetzt + + + + + Verweise auf Bedingungswerke und Klauseln + + + + + Meldungen zu Elementen in diesem Produktbaustein + + + + + Im Falle einer Konvertierung eine Herkunftsangabe + + + + + + Bei Konvertierungen die Id des Bausteins im zu ersetzenden Vertrag + + + + + Nähere Spezifikation der Aktion, falls notwendig. + + + + + + + + Möglichkeit zulässige oder unzulässige Kombinationen von Unterbausteinen als Restriktion anzugeben. Aber die Anzahl der Möglichkeiten steigt mit 2 hoch n, wobei n die Anzahl der Unterlemente ist. + + + + + Eines oder mehrere Attribute. + + + + + + + Abstrakter Typ für eine TarifId. Dieser Typ muss von der VU überschrieben werden, + die z.B. ein Enum für die zulässigen Tarifschlüssel anbietet. + + + + + Abstrakter Typ für alle Produktbausteine im Antragsprozess + + + + + + + + Prämien die für diesen Produktbaustein verlangt werden + + + + + Deprecated: Das gleichnamige Element in Praemie_Type ist besser geeignet, da es auch verwendet werden kann, wenn mehrere Prämien im Response übertragen werden. + + + + + + + + + Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation + + + + + + + Ob dieser Produktbaustein eingeschlossen ist oder nicht + + + + + Ob der im Response vorgebene Einschluss änderbar ist. Optional + + + + + Optional Metadaten zu Attributen + + + + + Eine weitereführende Beschreibung des Bausteins für eine Anzeige. + + + + + + + + + Typ für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion. + + + + + Kombinationen von Produktbausteinen + + + + + + + + + Typ für eine Kombination von Produktbaustein-Ids + + + + + Die Produktbausteine dieser Kombination + + + + + + + Basistyp für ein Produktbündel + + + + + + + + + + + + Ermöglicht eine Vorgabe für die Produktkonfiguration durch den Serviceprovider: von "basic = Basiskonfiguration" über "medium" bis "top" = vollumfänglich". + + + + + Vermittlernummer die Auswirkung auf die Konditionen hat, sinnvoll wenn ein ServiceConsumer recht auf mehrere Vermittlernummern hat. + + + + + + Möglichkeit eine Sicherstellung aus dem Antragsobjekt zu referenzieren. + + + + + + + + + + Basistyp für ein Produkt + + + + + + + + + Deprecated, verwende Zahlweg auf Verkaufsproduktebene + + + + + Deprecated, verwende Zahlrhythmus auf Verkaufsproduktebene + + + + + Deprecated, verwende Hauptfälligkeit auf Verkaufsproduktebene + + + + + Möglichkeit eine Sicherstellung aus dem Antragsobjekt zu referenzieren. + + + + + + + + + + Basistyp für ein Elementarprodukt + + + + + + + + Möglichkeit eine Sicherstellung aus dem Antragsobjekt zu referenzieren. + + + + + + + + + + Basistyp für ein Zusatzprodukt + + + + + + + + + + + + + Basistyp für ein Produktbündel, 2. Generation + + + + + + + Ob dieser Produktbaustein eingeschlossen ist oder nicht + + + + + Ob der im Response vorgebene Einschluss änderbar ist. Optional + + + + + Optional Metadaten zu Attributen + + + + + Eine weitereführende Beschreibung des Bausteins für eine Anzeige. + + + + + + + + + Basistyp für ein Produkt, 2. Generation + + + + + + + Ob dieser Produktbaustein eingeschlossen ist oder nicht + + + + + Ob der im Response vorgebene Einschluss änderbar ist. Optional + + + + + Optional Metadaten zu Attributen + + + + + Eine weitereführende Beschreibung des Bausteins für eine Anzeige. + + + + + + + + + Basistyp für ein Elementarprodukt, 2. Generation + + + + + + + Ob dieser Produktbaustein eingeschlossen ist oder nicht + + + + + Ob der im Response vorgebene Einschluss änderbar ist. Optional + + + + + Optional Metadaten zu Attributen + + + + + Eine weitereführende Beschreibung des Bausteins für eine Anzeige. + + + + + + + + + + Basistyp für ein Zusatzprodukt, 2. Generation + + + + + + + Ob dieser Produktbaustein eingeschlossen ist oder nicht + + + + + Ob der im Response vorgebene Einschluss änderbar ist. Optional + + + + + Optional Metadaten zu Attributen + + + + + Eine weitereführende Beschreibung des Bausteins für eine Anzeige. + + + + + + + + + + Basistyp für ein Produkt vom Typ "Versicherte Person" für Personensparten + + + + + + + + Verpflichtende Referenz auf genau eine versicherte Person. + + + + + + + + + Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind + + + + + Vergabe einer laufenden Nummer ist Pflicht. Über die laufende Nummer kann die beteiligte Person innerhalb eines Requests (z.B. innerhalb einer Berechnungsanforderung) referenziert werden. + + + + + Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten. + + + + + + + + Typ Hauptfälligkeit + + + + + + + + + Darstellung einer Praemie + + + + + + + + + + + + Abschlag, z.B. bei jährlichem Zahlrhythmus in Prozent + + + + + Optional ein Bezug auf bestimmte Antragskomponenten, Tarifkomponenten, Deckungsarten usw. + + + + + Summe der Prämien exkl. Versicherungssteuer(n) im gesamten Jahr + + + + + Summe der Prämien inkl. Versicherungssteuer(n) im gesamten Jahr + + + + + + + Stellt die Versicherungsteuer einer Prämie dar + + + + + Betrag der Versicherungssteuer + + + + + VersicherungssteuerArt_Type ergänzt OMDS StArtCd_Type um den Wert 0 = Gesamtversicherungssteuer (Aggregation für Bündel- und Produktebenen) + + + + + Optional der Steuersatz in Prozent + + + + + + + Art Versicherungsteuer + + + + + + + Gesamtversicherungssteuer (Aggregation für Bündel und Produkteben) + + + + + + + + + Typ zur Vorgabe einer Berechnungsvariante + + + + + + + + + + Mögliche Antragsarten + + + + + Neuantrag + + + + + Fahrzeugwechsel + + + + + Versicherungswechsel + + + + + Wechselkennzeichen + + + + + Tarifumstellung + + + + + + + Bearbeitungsstand Schaden (eine Erweiterung von BearbStandCd im OMDS-Datensatz) + + + + + Input-Wert + + + + + Output-Wert + + + + + + + Definiert Arten eine Polizze zu versenden + + + + + 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie + + + + + 1fach Versicherungsnehmer: Kunde erhält Original + + + + + 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie + + + + + 1fach Makler: Makler erhält Original + + + + + + + Typ für nicht weiter spezifizierte technische Parameter + + + + + beliebiger Schlüssel + + + + + beliebiger Wert + + + + + + + VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt + + + + + VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt + + + + + VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt + + + + + VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt + + + + + Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle + + + + + Referenz auf eine Person + + + + + Rolle der Person als OMDS VtgRolleCd_Type + + + + + + + + Type Vinkulierung + + + + + + + + Typ zur Beschreibung einer Bank als Vinkulargläubiger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung. + + + + + + + + Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell + + + + + Bezugsrecht Erleben oder Ableben + + + + + + Bezugsrecht Erleben + + + + + Bezugsrecht Ableben + + + + + + + + + + Bezugsberechtigung gesetzliche Erben + + + + + + + + Bezugsberechtigung testamentarische Erben + + + + + + + + Bezugsberechtigung Überbringer + + + + + + + + Bezugsberechtigung namentlich + + + + + + + wahr, wenn das Bezugsrecht unwiderruflich ist. + + + + + Bezugsrecht für eine Person + + + + + + + + + + + + Referenz auf die Person, zu deren Gunsten das Betzugsrecht festgelegt ist + + + + + + + Bezugsberechtigung Versicherungsnehmer + + + + + + + + Bezugsberechtigung VersichertePerson + + + + + + + + Bezugsberechtigung Individuell + + + + + + + + + + + + + Type Bonus Malus System + + + + + Ich (Wir) war(en) innerhalb der letzten 12 Monate Versicherungsnehmer eines Fahrzeuges, das wieder versichert oder durch das hiermit zur Versicherung gelangende Fahrzeug ersetzt wird. + + + + + + + + + + + + + + + + + Type Bonus-Malus Vorversicherung + + + + + + + + + + + Type Offene Schäden + + + + + + + + + + Type einzelner offener Schaden + + + + + + + + + Abstrakter Typ zur Beschreibung abgelehnter Risiken + + + + + + Abstrakter Typ zur Beschreibung der Vorversicherungen, wird verwendet in SpezAntrag_Type. + Es gibt zwei Ableitungen im Standard: VorversicherungenKfz_Type und VorversicherungenImpl_Type (s.u.), jede VU kann aber auch eigene Implementierungen vornehmen. + + + + + Standardimplementierung Vorversicherungen: Eine Liste von Vorversicherung_Type-Objekten + + + + + + + + + + + + Angaben zu einer Vorversicherung in der Standardimplementierung, erweitert VorversicherungenDetail_Type + + + + + + + Optional Angabe einer Vertragssparte + + + + + Optional Angabe einer oder mehrerer Sparten + + + + + + + + + + Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz + + + + + Wurden für die beantragte Versicherung Vorversicherungen aufgelöst, oder wurden frühere Versicherungen abgelehnt oder gekündigt? + + + + + + + + + + + + + + + + + + + Referenz auf ein versichertes Interesse, z.B. ein Kfz oder eine versicherte Person, + falls die Angabe auf dieses Element eingeschränkt werden soll. + + + + + Erweiterungsmöglichkeit für VU-spezifische Daten + + + + + + + VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten + + + + + Type Datenverwendung + + + + + Zustimmung zur elektronischen Übermittlung vorvertraglicher Dokumente + + + + + + E-Mail Adresse zur Zusendung von vorvertraglichen Dokumenten + + + + + + Zustimmung zur Verwendung personenbezogener Daten: (Der Antragsteller stimmt im Sinne des Datenschutzgesetzes und des Telekommunikationsgesetzes zu, dass die Versicherun, deren Gesellschaften sowie deren Kooperationspartner (siehe dazu "Information zur Datenanwendung gem. §24 DSG") seine personenbezogenen Daten und seine Vertragsdaten (Name, Anschrift, E-Mailadresse, Telefonnummer, Produkt, Leistungsumfang, Vertragslaufzeit, nicht jedoch Gesundheitsdaten) für Zwecke der Zusendung von Informationen über bestehende und neue Produkte der Versicherung und ihrer Kooperationspartner, für Qualitäts- und Zufriedenheitsumfragen sowie Marketingaktionen verwenden und ihn zu diesem Zwecke per Telefon und E-Mail kontaktieren dürfen. Diese Zustimmung kann jederzeit widerrufen werden.) + + + + + + + + + OMDS VERS_UNTERNEHMEN VUNr - http://www.vvo.at/vvo/vvo.nsf/033bc38c04cb4a8bc12574dc005de1e4/751f64eedb80a61bc1257c3d007eaca2 - Kapitel 5 + + + + + + + + + + Typ für Ersatzpolizzen + + + + + + + + + + Beschreibung einer durch Konvertierung zu ersetzenden Polizze + + + + + Die Polizzennr der zu ersetzenden Polizze + + + + + Die OMDS VertragsID der zu ersetzenden Polizze + + + + + + + Einfache Implementierung einer zu ersetzenden Polizze mit Angabe eines Änderungsgrunds + + + + + + + + Optional die Angabe einer Zusatzinformation zum Aenderungsgrund + + + + + + + + + Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag + + + + + + + + + Möglichkeit zulässige Kombinationen von Baustein-Ids als Restriktion anzugeben. + + + + + + + + + Allgemeiner Typ um die Behandlung der Unterbausteine in der Konvertierung zu spezifizieren + + + + + Die Id des Bausteins im zu ersetzenden Vertrag + + + + + Optional die Id des Bausteins im Antrag + + + + + Darstellung des Bausteins für den User. + + + + + + + + + + Zulaessige Aktion bzw. zulaessige Aktionen in der Übermittlung vom Serviceprovider. + + + + + Gewaehlte Aktion in der Übermittlung der geplanten Konvertierung vom Client. + + + + + + + Ableitung für die Produktebene (Ebene 2) mit der zusätzlichen Möglichkeit die Sparte zu signalisieren + + + + + + + Der SpartenCd aus OMDS 2, welcher erlaubt die Ebene 2 eines Vertrags zu kategorisieren. + + + + + + + + + Abstrakte Aktion für einen Baustein. Konkrete Aktionen werden hiervon abgeleitet. + + + + + Nähere Spezifikation der Art der Aktion, falls notwendig. + + + + + + + + Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag) + + + + + + + + Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen) + + + + + + + Innerhalb dieser Aktion mögliche Unterelemente dieses Bausteins mit den Aktionen, die an diesen Unterelementen möglich sind. + + + + + Möglichkeit zulässige Kombinationen von Baustein-Ids als Restriktion anzugeben. + + + + + + + + + Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen) + + + + + + + + Definition des Rückegabestatus für eingespielte Anträge + + + + + Antrag angenommen + + + + + Antrag abgelehnt + + + + + Entwurf + + + + + Vorschlag + + + + + Antrag übertragungsfähig + + + + + Antrag abgebrochen + + + + + Verarbeitung gestartet + + + + + Antrag storniert + + + + + Gelöscht + + + + + Antrag ausgesteuert + + + + + Antrag ausgesteuert und wartet auf Rückmeldung vom Vermittler + + + + + + + Arten von Geschaeftsobjekten + + + + + Vertrag + + + + + Schaden + + + + + Antrag + + + + + Interventionsbericht + + + + + + + Arten von Geschaeftsfällen + + + + + + + Normierte Arten von Geschaeftsfaellen, für die es z.B. normierte Status und Statusübergänge gibt. + + + + + Antragsprozess + + + + + Schadenbearbeitung + + + + + + + Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten) + + + + + Optional das eigentliche Dokument als base64-Binary + + + + + Optional ein Dokumentenname + + + + + Der inhaltliche Dokumenten-Typ, z.B. Polizze + + + + + Optional der Mime-Type + + + + + Optional die Größe des Dokumentes in Bytes + + + + + Das technische Datum des Dokuments + + + + + Referenzen auf weitere Dokumente + + + + + Art der Ausfolgung an den Kunden: optional oder obligatorisch. Wenn das Element nicht enthalten ist, ist die Ausfolgung an den Kunden optional + + + + + + Dokument optional an Kunde zu uebergeben + + + + + Dokument muss an Kunde ausgefolgt werden, z.B. Produktinformationsblatt + + + + + Dokument muss an Kunde ausgefolgt werden und ist vom Kunden ausgefüllt zu retournieren, z.B. Antrag + + + + + Dokument ist vom Kunden beizubringen, z.B. Firmenbuchauszug, Ausweis + + + + + Dokument ist nur für den Vermittler bestimmt + + + + + + + + Wenn das Element vorhanden ist, ist eine Unterschrift zu leisten + + + + + + keine Unterschrift erforderlich + + + + + Unterschrift erforderlich + + + + + + + + + + Type für die Hauptfälligkeit + + + + + + + + + Beschreibt die Zahlungsdaten in Antragsservices + + + + + + Abhängig von der Zahlungsart soll im Feld 'Kontonummer' die Kundenkontonummer oder der IBAN befüllt werden. + + + + + + + + + + Typ Zahlweg + + + + + + + + + + + + + + + Typ Kreditkarte + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beschreibt eine Bankverbindug + + + + + + + + + + + beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist + + + + + + Herstellung einer Beziehung zu einer Person ueber diese laufende Nummer. + + + + + + + + BIC + + + + + + + + + IBAN + + + + + + + + + Enummeration für verschiedene Steuerungen in Zusammenhang mit dem SEPA Mandat + + + + + Bestehendes bei Versicherungsgesellschaft hinterlegtes SEPA-Mandat + + + + + SEPA-Mandat bei Makler hinterlegt (nur in Kombination mit entsprechender Vollmacht) + + + + + SEPA-Mandat wird anbei übermittelt + + + + + + + Abstrakter Obertyp für versicherte Interessen + + + + + Bei Konvertierung optional die Referenz auf die Id eines versicherten Interesses, welches abgelöst wird. + + + + + Erweiterung für individuelle Risikodaten, insb. auch für Risikomerkmale von versicherten Personen, falls das versicherte Interesse eine versicherte Person ist. + + + + + Eine oder mehrere Bewertungen oder Schätzungen als Betrag. + + + + + + Die laufende Nummer im Prozess. + + + + + + Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten + + + + + + + + + + + + Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. + + + + + + + + Risikomerkmale natürlicher Personen + + + + + + + + + + + Risikoattribute natürlicher Personen + + + + + + + + + + + + + + + + + + + + Deprecated: Künftig sollten ZusaetzlicheRisikodaten im Obertyp VersichertesInteresse_Type genutzt werden. + + + + + + + VU-spezifische Erweiterungsmöglichkeit für Risikodaten + + + + + Basisklasse für alle Fahrzeuge in der Kfz-Versicherung + + + + + + + Optional Zulassungsdaten. Wenn unter den Zulassungsdaten ein Fahrzeug gefunden wird, werden diese Daten verwendet. + + + + + Fahrzeugzustand als Schlüsselwerte + + + + + + + + + + + + + + + + Detaillierte Fahrzeugzustandsbeschreibung z.B. aus einer Besichtigung + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CO²-Emission g/km + NEFZ: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + + + + + CO²-Emission g/km + WLTP: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e) + + + + + Kraftstoffverbrauch + NEFZ: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + + + + + Kraftstoffverbrauch + WLTP: Messzyklus für PKW und leichte LKW (Klassen M1, N1) + WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Behandlung des Fahrzeugs im Wechselkennzeichen + + + + + Ergebnisse einer Besichtigung + + + + + Die Aufbauart als Code (wie in Zulassung AUFBAU_NAT_C) + + + + + Limousine + + + + + Schraeghecklimousine + + + + + Kombilimousine + + + + + Coupe + + + + + Kabrio-Limousine + + + + + Mehrzweckfahrzeug + + + + + PKW-Pick-up + + + + + Van + + + + + Sattelzugmaschine + + + + + Straßenzugmaschine + + + + + Pick-up + + + + + Fahrgestell mit Fuehrerhaus + + + + + Eindeckfahrzeug + + + + + Doppeldeckfahrzeug + + + + + Eindeck-Gelenkfahrzeug + + + + + Doppeldeck-Gelenkfahrzeug + + + + + Eindeck-Niederflurfahrzeug + + + + + Doppeldeck-Niederflurfahrzeug + + + + + Eindeck-Niederflur-Gelenkbus + + + + + Doppeldeck-Niederflur- Gelenkbus + + + + + Offenes Eindeckfahrzeug + + + + + Offenes Doppeldeckfahrzeug + + + + + Busfahrgestell + + + + + Plattform + + + + + offener Kasten + + + + + Geschlossener Kasten + + + + + Klimatisierter Aufbau mit Klimageraet + + + + + Klimatisierter Aufbau ohne Klimageraet + + + + + Seitenplanen (Curtainsider) + + + + + Wechselbruecke (austauschbarer Aufbau) + + + + + Containertraeger + + + + + Fahrzeuge mit Hakenlift + + + + + Kipper + + + + + Tank + + + + + Tank zur bef. gefährlicher Güter + + + + + Tiertransporter + + + + + Fahrzeugtransporter + + + + + Betonmischer + + + + + Betonpumpwagen + + + + + Langholz + + + + + Abfallsammelfahrzeug + + + + + Straßenkehrmaschine, Strassen- und Kanalreinigung + + + + + Kompressor + + + + + Bootstraeger + + + + + Traeger für Segelflugzeuge + + + + + Fahrzeuge für Verkaufs- und Werbezwecke + + + + + Abschleppwagen + + + + + Leiterfahrzeug + + + + + Kranwagen + + + + + Hubarbeitsbühne + + + + + Bohrfahrzeug + + + + + Niederfluranhänger + + + + + Glastransporter + + + + + Feuerwehrfahrzeug + + + + + Spezialaufbauten + + + + + Nachlaeufer + + + + + Ja + + + + + Nein + + + + + Wohnmobil + + + + + Beschussgeschuetzte Fahrzeuge + + + + + Krankenwagen + + + + + Leichenwagen + + + + + Wohnanhaenger + + + + + Mobilkran + + + + + Rollstuhlgerechte Fahrzeuge + + + + + Dolly + + + + + Anhaenger für Schwertransporte + + + + + KFZ für Schwertransport + + + + + Geraetetraeger + + + + + Sattelanhaenger + + + + + Deichselanhaenger + + + + + Zentralachsanhaenger + + + + + Starrdeichselanhaenger + + + + + + + Typ für Zulassungsdaten + + + + + Versicherungsbestätigungsnummer + + + + + Zulassungs-Kennzeichen + + + + + Zulassungs-Fahrgestellnummer + + + + + + + Versicherte Liegenschaft + + + + + + + + + + + + + + + Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert + + + + + + + + + + + Dient zur Abbildung eines Selbstbehalts + + + + + Art des Selbstbehalts, insb. können hier die dreistelligen Codes des OMDS 2 aus SbhArtCd_Type verwendet werden + + + + + Absoluter Betrag eines Selbstbehalts + + + + + Selbstbehalt in Prozent der Versicherungssumme + + + + + Minimalbetrag eines Selbstbehalts + + + + + Maximale Höhe eines Selbstbehalts + + + + + + + Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename + + + + + Der Name des Dokuments. + + + + + Der Mime-Type des Dokuments gemäß IANA + + + + + Das Dokument selbst als base64Binary + + + + + Der inhaltliche Typ des Dokuments, z.B. Polizze oder Finanzamtsbestätigung als Code + + + + + + + Information zu einem einzelnen Dokument + + + + + Die eindeutige Id des Dokuments und Details zur Verwendung + + + + + Der Name des Dokuments als String + + + + + Der inhaltliche Typ des Dokuments, z.B. "Polizze" oder "Finanzamtsbestätigung" als Integer-Code + + + + + Mime-Type des Dokuments + + + + + Größe des Dokuments in Byte + + + + + Erstellungszeitpunkt des Dokuments + + + + + Optional die Refernez auf ein Objekt, dem das Dokument zugeordnet ist. + + + + + Verweis auf weitere Dokumente, die inhaltlich zu diesem Dokument gehören, z.B. AVB zu einer Polizze + + + + + + + Dokumentenrefernz im Postservice + + + + + + + Ein MD5-Hash für den automatisierten Abgleich des Clients. + + + + + + + + + + + + + + + Typ für Zusatzdaten zum Dokument + + + + + Einfache Standardimplementierung für Ordnungsbegriffe als String + + + + + + + + + + Zuordnung zu einer Person + + + + + + + + + + + + + + Zuordnung zum Betreuer + + + + + + + + + + + + Zuordnung zu Vertrag + + + + + + + + + + + + + + + + Vertragsrolle + + + + + + + + + + + + Zuordnung Schaden + + + + + + + + + + + + + Vertragsrolle + + + + + + + + + + + + Zuordnung zu Antrag + + + + + + + + + + + + + + Zuordnung für Geschaeftsfallreferenzen + + + + + + + + + + + + + Zuordnung zu Provisionsnote + + + + + + + + + + + + + Zuordnung zu Mahnung + + + + + + + + + + + + + + Ein Zeitraum mit Beginn und Ende Datum + + + + + + + Eine abstrakte Spezifikation eines Objekts + + + + + Die Spezifikation eines Polizzenobjektes + + + + + + + die Polizzennummer als OMDS Polizzennr-Typ. + + + + + Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz + + + + + Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle + + + + + + + + + Die Spezifikation eines Schadenobjektes + + + + + + + Eine Geschaeftsfallnummer + + + + + Schadennummer als omds:Schadennr + + + + + + + + + Abstrakter Basistyp für Metadaten von Attributen + + + + + Name des Attributes, auf den sich diese Metadaten beziehen. + + + + + Ob das Attribut änderbar ist + + + + + Ein menschenverständlicher Text für das Attribut, der z.B. in einer Oberfläche verwendet werden kann. + + + + + Eine weiterführende Beschreibung des Attributs. + + + + + + + Message an einem Attribut + + + + + Fehlertyp ( 1 = Fehler, 2 = Warnung, 3 = Hinweis) + + + + + + + Fehler + + + + + Warnung + + + + + Hinweis + + + + + + + + Optional ein Fehlercode + + + + + + Eine ausgeschriebene Fehlermeldung, für den User + + + + + + + Typ mit Metadaten für xsd:string-Attribute + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + + Typ mit Metadaten für xsd:int-Attribute + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Typ mit Metadaten für omds:decimal-Attribute + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Typ mit Metadaten für xsd:date-Attribute + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Typ mit Metadaten für Schlüssellisten + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + Typ für einen einzelnen Eintrag einer Schlüsselliste + + + + + + + + + Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type) + + + + + Wahr, wenn das Attribut im aktuellen Zustand änderbar ist, sonst falsch. + + + + + Ein menschenverständlicher Text für das Attribut, der z.B. in einer Oberfläche verwendet werden kann. + + + + + Eine weiterführende Beschreibung des Attributs. + + + + + + + + Abstrakter Basistyp für Attribute mit einem Wert + + + + + + + Ob das Attribut als Pflichtfeld zu behandeln ist + + + + + + + + + Auf xsd:string basierendes Attribut mit Metadaten + + + + + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + Auf xsd:int basierendes Attribut mit Metadaten + + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Auf omds:decimal basierendes Attribut mit Metadaten + + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Auf xsd:double basierendes Attribut mit Metadaten + + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Auf xsd:date basierendes Attribut mit Metadaten + + + + + + + + + Optional Inhalte einer Werteliste + + + + + + + + + + + Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten + + + + + + + Optional die Vorgabe einer Werteliste, aus der die ausgewählten Schlüssel stammen müssen + + + + + Mindestanzahl zu selektierender Werte, z.B. 0 für optional oder 1 für obligatorisch oder auch mehrere, wenn Multiselect. + + + + + + + + + Attribut mit Metadaten für Schlüssellisten + + + + + + + Der ausgewählte Schlüssel + + + + + Optional ein Vorschlag für einen ausgewählten Schlüssel. + + + + + + + + + Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind. + + + + + + + Die ausgewählten Schlüssel + + + + + Optional eine Vorgabe von Schlüsseln als Default-Werte + + + + + Maximalanzahl zu selektierender Werte, muss größer gleich der Mindestanzahl sein. + + + + + + + + + Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben + + + + + + + + Abstrakter Typ fuer Sicherstellungen + + + + + Die laufende Nummer dieser Sicherstellung + + + + + Optional die Angabe des sichergestellten Betrags, wenn nicht die volle Summe sichergestellt werden soll + + + + + Optional die Angabe einer Unanfechtbarkeitssumme, wenn eine Unanfechtsbarkeitsklausel eingeschlossen wurde + + + + + + + Sicherstellung vom Typ Abtretung / Zession. Abtretung ist die umfassenste Form der + Sicherstellung der Zessionär (Abtretungsempfänger) kann den Vertrag an Stelle des VN (Zedent) nach + seinen Wünschen umgestalten. + + + + + + + + + + + + Sicherstellung vom Typ Verpfändung. Der VN und der Pfandgläubiger können Änderungen + im Vertrag nur gemeinsam durchführen, VN bleibt aber Träger der Rechte un Pflichten aus dem Versicherungsvertrag. + + + + + + + + + + + + Eigenschaften Pfandgläubiger + + + + + + + + + Sicherstellung vom Typ Vinkulierung. Der Vinkulargläubiger hat das Recht auf Auszahlungen + aus dem Versicherungsverhältnis. Die Versicherung ist verpflichtet den Vinkulargläubiger über Vertragsänderungen + oder Prämienrückstände zu informieren. Die Benennung VinkulierungPersonen_Type ist schlecht gewählt, + dieses Objekt ist für alle Vinkulierungen innerhalb des Konzepts "Sicherstellungen" vorgesehen. + + + + + + + + + + + + + Gläubiger einer Sicherstellung + + + + + + + + + + + Abstrakter Typ für Einwilligung + + + + + Die Bestätigung der Zustimmung + + + + + Optional der tatsächliche Text der Zustimmung + + + + + + + Abstrakter Typ für Einwilligung personenbezogene Daten + + + + + + + Referenz auf die Person + + + + + + + + + Einwilligung Verarbeitung Gesundheitsdaten + + + + + + + + Einwilligung Bekanntgabe Gesundheitsdaten an VN + + + + + + + + Einwilligung Sprachaufzeichnung + + + + + + + + Fragen gemäß FATCA + + + + + + + + + + Fragen FATCA bei natürlichen Personen + + + + + + + + + + Fragen FATCA bei sonstigen Personen + + + + + + + Konzession nach BWG, VAG, WAG, PKG, BMSVG, ZaDiG oder vergleichbare Konzession nach ausländischem Recht + + + + + Überwiegend eine aktive Geschäftstätigkeit in Produktion oder Handel + + + + + + + Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz + + + + + + + + + + + + + + + Beschreibung einer PEP + + + + + + + + + Details zur Treuhaenderfrage + + + + + + + + + Ein einzelnes Element einer Fondsauswahl + + + + + Angabe von ISIN oder WKN + + + + + + + Optional Angabe des Anteils dieses Wertpapiers am Gesamtportfolio + + + + + + + + + + + + Optional im Response die Bezeichnung des Fonds. Im Request wird ISIN oder WKN verwendet um den Fonds zu identifizieren und diese Angabe ignoriert. + + + + + + + + Abstrakter Basistyp fuer vorläufige Deckungen + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3ServiceTypes.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3ServiceTypes.xsd new file mode 100644 index 00000000..cea0f3af --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3ServiceTypes.xsd @@ -0,0 +1,688 @@ + + + + + + + + Das Request-Objekt für den Actionlink + + + + + Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg + + + + + + + + + Der Actionlink z.B. in das Maklerportal mit einem Token, der die Verbindung zur Session herstellt + + + + + + Das Request-Objekt fuer den Zugriff auf die Userdaten + + + + + + + Die VUNr des angefragten Unternehmens. Dies ermöglicht ggf. mehrere VUs über eine technische Lösung zu servicieren. Verwendet den Typ VUNr aus OMDS-Datensatz. + + + + + + + Das Ergebnisobjekt fuer die Userdaten + + + + + Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können + + + + + + BenutzerId + + + + + + + + + + Liste der für diesen User unterstützen Services + + + + + + Die ServiceId des jeweiligen Webservice als String + + + + + + + + Ist vom Typ PERSON_Type aus dem OMDS-Datensatz + + + + + + + + Inputobjekt zum Beziehen einer Liste verfuegbarer OMDS-Datensaetze + + + + + + + die VUNr aus OMDS als optionaler Filterparameter + + + + + Hier wird direkt ein agentFilter-Element verwendet und kein abstrakter authFilter, da dieser Service dezidiert auf Makler zugeschnitten ist und OMDS-Packages nach MaklerID und Vermittlernummer strukturiert sind und nicht nach anderen Filterkriterien. + + + + + von inkl. Datum + + + + + bis inkl. Datum + + + + + + + Rückgabeobjekt für eine Liste von OMDS-Datensätzen + + + + + Dieser Typ definiert eine Liste von OMDS-Datensaetzen + + + + + + Fachliche Fehlermeldungen + + + + + + + + Das Requestobjekt fuer die Abholung eines oder mehrerer OMDS-Datensatz-Packages + + + + + + + + Hier wird direkt ein agentFilter-Element verwendet und kein abstrakter authFilter, da dieser Service dezidiert auf Makler zugeschnitten ist und OMDS-Packages nach MaklerID und Vermittlernummer strukturiert sind und nicht nach anderen Filterkriterien. + + + + + Die Id des Datensatzes unter welcher er ueber Webservices referenziert werden kann. Es handelt sich nicht um eine Id aus dem OMDS-Datensatz + + + + + + + Gibt die Liste der angeforderten OMDS-Packages zurück oder entsprechende fachliche Fehlermeldungen + + + + + + + Liste der angeforderten Pakete + + + + + Fachliche Fehlermeldungen + + + + + + + Typ fuer ein OMDS-Datensatz-Package + + + + + Die angefragte Id des OMDS-Datenpakets, wobei dies kein Schlüssel aus dem Paket ist. + + + + + + + + + + + Nur enthalten, wenn es das angeforderte Paket tatsächlich gibt und der User darauf berechtigt ist. + + + + + + Meta-Informationen zu diesem Paket + + + + + Gezippte OMDS-Daten als base64Binary oder mit Binary mit MTOM + + + + + + + + Fachliche Fehlermeldungen + + + + + + + Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package + + + + + + Entspricht der MaklerID in OMDS 2.x. Die MaklerID (in Version 1.0.0 noch AgentID) ist eine übergeordnete ID des Vermittlers unter welcher mehrere Vermittlernummern zusammengefasst sein können. Diese ID ist in der Regel spezifisch für die jeweilige VU oder den jeweiligen Dienstleister, bei dem die Daten abgeholt werden. Ein zulässiger Spezialfall ist, dass die agentID mit der Vermittlernummer "Vermnr" (in Version 1.0.0 noch agentNumber) zusammenfällt. + + + + + Die Id des OMDS Pakets und Angaben zu ihrer Verwendbarkeit, wobei hier kein Schlüssel aus einem OMDS Paket selbst gemeint ist, sondern eine eigenständige Id, die das Abrufen des OMDS-Pakets ermöglicht. + + + + + Zeitstempel der Erstellung entsprechend dem Attribut PaketZpktErstell mit OMDS Datum-Zeit als Typ + + + + + Groesse der Datei in Byte, de facto beschränkt auf max. ca. 2 GB da vom Typ int + + + + + entspricht dem der Paketumfang wie er in OMDS 2.x im Typ PaketUmfCd_Type definiert ist: D = Differenz, G = Gesamtbestand + + + + + Liste von OMDS 2.x Elementen des Typs PaketInhCd_Type, die den Inhalt des Datenpakets beschreiben + + + + + + + + Anfrage Informationen zu vertragsbezogenen Dokumenten + + + + + Anfragetyp Informationen zu vertragsbezogenen Dokumenten + + + + + + ermöglicht "Super-Usern" die Abfrage von spezifischen Elementen + + + + + die Polizzennummer als OMDS Polizzennr-Typ. + + + + + Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz + + + + + Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle + + + + + Einschränkung der Anfrage auf bestimmte Dokumententypen. Es gibt 15 definierte vertragsbezogene Dokumententypen. + + + + + + + + + Rückgabe Informationen zu vertragsbezogenen Dokumenten + + + + + Rückgabetyp Informationen zu vertragsbezogenen Dokumenten + + + + + Informationen zu Dokumenten, wenn vorhanden + + + + + + + + Request zur Abholung eines einzelnen bekannten Dokuments + + + + + Requesttyp zur Abholung eines einzelnen bekannten Dokuments + + + + + + ermöglicht "Super-Usern" die Abfrage von spezifischen Elementen + + + + + Die Id des Dokuments vom Typ String + + + + + + + + + + + + + Responseobjekt zur Rückgabe eines einzelnen Dokumentes + + + + + Responsetyp zur Rückgabe eines einzelnen Dokumentes + + + + + Das Dokument und seine Meta-Informationen, wenn ein Dokument vorhanden war + + + + + + + + Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person + + + + + Die Partnernummer als OMDS-Personennr (String mit 1-26 Zeichen) + + + + + Partnerrollen im Vertrag als PartnerRoleType: String mit 2 Zeichen: VN, VP + + + + + + + Information zu einem einzelnen Dokument + + + + + Die eindeutige Id des Dokuments und Details zur Verwendung + + + + + Der Name des Dokuments als String + + + + + Der inhaltliche Typ des Dokuments, z.B. "Polizze" oder "Finanzamtsbestätigung" als Integer-Code + + + + + Mime-Type des Dokuments + + + + + Größe des Dokuments in Byte + + + + + Erstellungsdatum des Dokuments + + + + + Verweis auf weitere Dokumente, die inhaltlich zu diesem Dokument gehören, z.B. AVB zu einer Polizze + + + + + + + Informationen zu einem Dokument und das Dokument base64encoded + + + + + Meta-Informationen zum Dokument (Deprecated, die Daten sollten dem Aufrufer schon bekannt sein) + + + + + Das eigentliche Dokument als base64-Binary + + + + + + + + Deep-Link Schaden Anfrage + + + + + + + + + Schadennummer vom Typ OMDS Schadennr + + + + + + + + Responseobjekt Deep-Link Schaden + + + + + Deep-Link Partner Anfrage + + + + + + + + + Die Partnernummer als OMDS Personennr-Typ + + + + + + + + Deep-Link Partner Antwort + + + + + Deep-Link Angebot/ Antrag Anfrage + + + + + + + + + Die Nummer der Berechnung, des Angebots oder des Antrags. + + + + + + + + + + + + + + + Deep-Link Angebot / Antrag Antwort + + + + + Deep-Link Vertrag Anfrage + + + + + + + + + Die Nummer des Vertrags als OMDS Polizzennr-Typ + + + + + + + + Deep-Link Vertrag Antwort + + + + + Response Deep-Link auf Geschäftsobjekte + + + + + Soll ein Frame angezeigt werden oder nicht + + + + + + Definiert einen Deep-Link + + + + + String mit max. 1024 Zeichen + + + + + + + + + + Code für Art der URL, z.B. Verträge, Dokumente, Schäden, Schadenmeldung als int-Type. + + + + + + Einstiegsseite + + + + + + Suche Partner + + + + + + Suche Vertrag + + + + + + Suche Schaden + + + + + + Suche Angebot/Antrag + + + + + + Schadenübersicht + + + + + + Dokumente + + + + + + Anfrage + + + + + + Stammdaten + + + + + + Bearbeiten + + + + + + Verträge + + + + + + Schäden + + + + + + Angebote + + + + + + Angebots-/ Antragsübersicht + + + + + + Inkassostand + + + + + + Angebot + + + + + + Schadenmeldung + + + + + + Mahnungen + + + + + + + + + Ablaufzeitpunkt der Action-Links. Wenn Actionslinks vorhanden sind, dieses Element jedoch nicht oder mit dem Wert "null", so sind die ActionLinks zeitlich unbeschränkt gültig. + + + + + + + + + Linkbeschreibung vom Typ LinkType + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl new file mode 100644 index 00000000..e581a01d --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl @@ -0,0 +1,1248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON1_Basisfunktionen.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON1_Basisfunktionen.xsd new file mode 100644 index 00000000..09231114 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON1_Basisfunktionen.xsd @@ -0,0 +1,507 @@ + + + + + + + Requestobjekt um Dokument zu Geschäftsfall hinzuzufügen + + + + + Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen + + + + + + + + + + Response von der VU, wenn ein zusätzliches Dokument übergeben wurde + + + + + Response von der VU, wenn ein zusätzliches Dokument übergeben wurde + + + + + + + + + Request um eine Anzahl von Dokumenten zu einem fachlichen Objekt zu erhalten + + + + + Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten + + + + + + + ObjektSpezifikation kann ab Version 1.3 entfallen, es kann aber sein, dass das Versicherungsunternehmen einen Fehler meldet, weil es Anfragen nur mit Objektspezifikation unterstützt oder weil die Ergebnismenge zu groß wäre. + + + + + + Filter nach Art des Dokuments + + + + + + + Response mit einer Anzahl von Dokumenten zu einem fachlichen Objekt + + + + + Typ mit Informationen zu den Dokumenten eines fachlichen Objekts + + + + + + + + + Request um Informationen zu den Dokumenten eines fachlichen Objekts zu erhalten + + + + + Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt + + + + + + + + + Filter nach Art des Dokuments + + + + + + + + + + + + + + + + Response zu den Dokumenten eines fachlichen Objekts + + + + + Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. + + + + + + + + + Request um Informationen zu den Dokumenten eines Zeitraums zu erhalten + + + + + Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums + + + + + + + + + Filter nach Art des Dokuments + + + + + + + + + + + + + + + + Response zu den Dokumenten eines Zeitraums + + + + + Typ mit Informationen zu den Dokumenten eines Zeitraums + + + + + + + + + Informationen zu einem Dokument + + + + + Der tatsächliche Offset in der Ergebnisliste. + + + + + Tatsächliche Maximalanzahl der Ergebnisse, die der Provider auf eine Anfrage zurück gibt. Beispiel: Consumer fordert 1000 Ergebnisse an, Provider liefert aber maximal 100 zurück. In diesem Fall würde hier 100 zurückgegeben. + + + + + Gesamtzahl der Dokumente unter dem gewählten Filter. + + + + + Die Ergebnisliste + + + + + + + + Requestobjekt fuer die Bestätigung eines Posteingangs durch Vermittler bzw. seinen technischen Dienstleister + + + + + + + + Die Vermittlernummer oder die Vermittlernummern, für die der Posterhalt bestätigt werden soll. + + + + + Der Zeitpunkt, bis zu welchem der Erhalt der Post bestätigt werden soll. + + + + + + + + + + Responseobjekt fuer die Bestätigung eines Posteingangs durch den Makler + + + + + + + + + + State-Changes + + + + Typ des Requestobjektes um Geschäftsfalle abzuholen + + + + + + + Vorgabe einer Geschäftsobjektart, z.B. Vertrag, Schaden oder Antrag + + + + + + + + + Typ des Responseobjektes um Geschäftsfalle abzuholen + + + + + + + + + + + + Requestobjekt fuer die Abfrage von Statusänderungen + + + + + Responseobjekt fuer die Abfrage von Statusänderungen + + + + + Abstraktes Event einer Statusänderung + + + + + Ereignis in einem Geschäftsprozess, z.B. der Abschluss eines Arbeitsschritts im Prozess + + + + + + + Id des Ereignisses + + + + + + + + + Optional ein kurzer Text, welcher das Event beschreibt. Hinweis: Geschäftsfallereignisse müssen nicht gelesen werden. Die Verarbeitung von Hinweistexten durch den Vermittler ist optional. + + + + + + + + + + Bisheriger allgemeiner Status des Geschäftsfalls vor Eintreten des Ereignisses. + + + + + Aktueller allgemeiner Status des Geschäftsfalls durch Eintreten des Ereignisses. + + + + + Dokument, welches die Änderung belegt + + + + + + + + + + + Betroffene Objekte + + + + + + Die Art des Objekts, z.B. Vertrag + + + + + Die Id des Objekts als ObjektId_Type + + + + + Grundsätziche Art der Änderung: Angelegt, Geändert, Gelöscht, Unverändert + + + + + Das Datum ab welchem die Statusänderung wirksam wird. + + + + + Optional der bisherige Status + + + + + Aktueller Status des Geschäftsobjekts + + + + + Dokument, welches die Änderung belegt + + + + + + + + + + + + + + + + + + Ereignis in einem Geschäftsprozess vom Typ Antrag + + + + + + + AntragsId oder Antragsnummer + + + + + + + + + + + Ereignis in einem Geschäftsprozess vom Typ Schaden + + + + + + + + + + + + + Allgemeiner generischer Status für alle Arten von Geschäftsprozessen + + + + + Der Prozess wurde angelegt, aber noch nicht gestartet. + + + + + Der Prozess wird ausgeführt. + + + + + An dem Prozess wird nicht mehr gearbeitet. Die Arbeit kann später wieder aufgenommen werden. + + + + + An dem Prozess wird nicht gearbeitet, da auf Rückmeldung vom Vermittler gewartet wird. + + + + + Der Prozess wurde dauerhaft abgebrochen ohne ein Ergebnis zu erreichen. + + + + + Der Prozess wurde mit Ergebnis abgeschlossen. + + + + + + + Deprecated: Verwende statt dessen GeschaeftsfallEreignis_Type + + + + + + + Die Art des Objekts, z.B. Vertrag + + + + + Die Id des Objekts als ObjektId_Type + + + + + Eine Geschäftsfall-Id als String, wenn dem Servicenutzer eine solche zugeordnet ist. + + + + + Die Art des Geschaeftsfalls der zur Statusänderung geführt hat. + + + + + Das Datum ab wann die Statusänderung feststeht. + + + + + Das Datum ab welchem die Statusänderung wirksam wird. + + + + + Optional der bisherige Status + + + + + Der neue Status + + + + + + + + + Deprecated: Abstrakter Status eines Geschaeftsfalls + + + + + Deprecated: Status eines Antrags + + + + + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Common.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Common.xsd new file mode 100644 index 00000000..38d01b02 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Common.xsd @@ -0,0 +1,627 @@ + + + + + + + + + Abstrakter Basistyp für das Datenmodell aller BOA-Prozessschritte + + + + + Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist + + + + + + + Deprecated: Liste aller benötigten Personen, welche dann über ihre Rolle referenziert werden. In der Berechnung ist dies nicht mehr vorgesehen. + + + + + + + + + Abstrakter Basistyp Offert, der bei Request und Response gleich ist + + + + + + + + Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer. + + + + + Referenz auf die Person, die als Versicherungsnehmer fungiert. + + + + + + + + + Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist + + + + + + + Die Antragsart kann auch vom ServiceProvider automatisch bestimmt werden, dann bleibt sie im Request leer. + + + + + Liste aller benötigten Personen, welche dann über ihre Rolle referenziert werden. Die Personen können eine Adresse enthalten. + + + + + Referenz auf die Person, die als Versicherungsnehmer fungiert. + + + + + Referenz auf einen abweichenden Praemienzahler, wenn nicht der Versicherungsnehmer die Prämie zahlt + + + + + Referenz auf weitere Versicherungsnehmer + + + + + Weitere Personen in Vertragsrollen + + + + + Bestehen Ablehnungen zu den beantragten Risiken + + + + + Bestehende Vorversicherungen zu dem Antrag + + + + + Beschreibt die Art der Zahlung und enthält die zugehörigen Daten + + + + + SEPA-Mandat-Steuerung, wenn Zahlungsdaten ein SEPA-Mandat notwendig machen. + + + + + alternativer Polizzenversand + + + + + Allgemeine Datenschutzbestimmungen + + + + + + Ersatzpolizzennummern für eine manuelle Ablöse von Polizzen. Nicht für automatische Konvertierung oder Fahrzeugwechsel. + + + + + Sollen weitere Antragsdokumente zugestellt werden (z.B. IVK) + + + + + Moeglichkeit fuer die Erweitung des Standards um eigene Antragsdaten + + + + + Daten zu etwaigen Sicherstellungen + + + + + Zustimmung zu vorgegebenen Fragen, z.B. Datenverarbeitung von Gesundheitsdaten + + + + + Optional eine Polizzennr, z.B. als Response, wenn sofort polizziert wurde. + + + + + Optional eine VertragsID, z.B. als Response, wenn sofort polizziert wurde. + + + + + + + + + Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist + + + + + + + Informationen zu FATCA. + + + + + Informatiionen zum Gemeinsamer Meldestandard-Gesetz bzw. EU Richtlinie zum Austausch von Steuerinformationen. + + + + + Angabe PEP ist zwingend + + + + + Wird der Vertrag treuhänderisch gehalten. + + + + + + + + + + Abstraktes Zwischenelement für alle BOA-Request-Types + + + + + + + Deprecated - die Angabe eines Aenderungsgrunds. Künftig sollte der Aenderungsgrund im Element Ersatzpolizzen angegeben werden. + + + + + Polizzennummern beim gleichen Versicherer, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen. + + + + + + + + + Abstraktes Zwischenelement für alle BOA-Response-Types + + + + + + + Deprecated - die Angabe eines Aenderungsgrunds. Künftig sollte der Aenderungsgrund im Element Ersatzpolizzen angegeben werden. + + + + + Polizzennummern, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen. + + + + + + + + + Abstrakter Request für die Berechnung + + + + + + + Deprecated, es kommt ein neuer Service ProductPropsal, welcher diese Rolle übernimmt. Sollen Upselling-Vorschläge mitberechnet werden? Wenn ja kann dies zu einer längeren Berechnungsdauer führen. + + + + + + + + + Abstrakter Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen + + + + + + + + Abstrakter Request für das Offert + + + + + + + Anforderung optionaler Dokumente durch den Client + + + + + + + + + Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen + + + + + + + Deprecated, verwende statt dessen DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für den Antrag + + + + + + + + Deprecated: Verwende künftig Dokumente. + + + + + (Unterschriebene) Dokumente zum Antrag, möglicher Weise auf Anforderung hin. + + + + + + + + + Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen + + + + + + + optional ein aktueller Status des Antragsprozess + + + + + Wenn der Antrag fehlerfrei erstellt werden konnte, die Referenz auf diesen Antrag. Diese Referenz ist bei der Einreichung des Antrags anzugegeben. + + + + + Deprecated: Verwende künftig DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für die Antragsüberleitung + + + + + + + Deprecated: Verwende künftig Dokumente. + + + + + (Unterschriebene) Dokumente zum Antrag, möglicher Weise auf Anforderung hin. + + + + + Die Referenz auf einen zuvor mit CreateApplication erzeugten Antrag, welcher jetzt eingereicht werden soll. Diese Referenz wird durch CreateApplication erzeugt. Entweder ist solch ein Bezug zu einem vorangegangenen SubmitApplication mitzugeben oder nochmals die Daten. + + + + + + + + + Abstrakter Response der Antragsüberleitung + + + + + + + aktueller Status des eingespielten Antrages + + + + + + Deprecated, verwende künftig DokumenteAnforderungen. + + + + + Hier sind 3 Arten von Dokumenten enthalten: Solche, die der Kunde nur ausgefolgt bekommt, solche, die er unterschrieben zurück liefern soll und Anforderung von beizubringenden Dokumenten. + + + + + + + + + Abstrakter Request für die Berechnung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response Berechnung + + + + + + + + Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Offerterstellung + + + + + + + + Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Antragserzeugung + + + + + + + + Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen + + + + + + + Wenn "wahr", sollen im Response Produktmetadaten enthalten sein. + + + + + + + + + Abstrakter Response der Antragsüberleitung + + + + + + + + Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind + + + + + Typ um Offert- und Antragsdokumente zu beziehen + + + + + + + Eine DokumentenId als String + + + + + + + + + Typ um Offert- und Antragsdokumente zurückzugeben + + + + + + + + + + + + Element um Offert- und Antragsdokumente zu beziehen + + + + + Element um Offert- und Antragsdokumente zurückzugeben + + + + + Request um die Konvertierungsmöglichkeiten für einen oder mehrere Verträge zu erhalten + + + + + + + + Angabe für welche Verträge die Konvertierung geplant ist. + + + + + + + + + + Response mit den Konvertierungsmöglichkeiten + + + + + + + + Eine Konvertierungsmöglichkeit oder mehrere Möglichkeiten. + + + + + + + + + + Request um einen Konvertierungsvorschlag zu generieren + + + + + + + + Angabe auf welchem Vertrag oder welchen Verträgen der neue Vertrag aufgebaut werden soll. + + + + + + + + + + Response um mit einem Konvertierungsvorschlag + + + + + + + + Vorschlag für den Antrag des konvertierten Vertrags. + + + + + Möglichkeit um Konvertierungsübersicht (Gegenüberstellung von Deckungen) mitzugeben. + + + + + Polizzennummern, die im Rahmen der Konvertierung abgelöst werden sollen. + + + + + + + + + + Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kfz.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kfz.xsd new file mode 100644 index 00000000..a89a10b1 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kfz.xsd @@ -0,0 +1,715 @@ + + + + + + + Produktmodell Kfz + + + + Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht + + + + + + + Geburtsdatum als Tarifmerkmal + + + + + PLZ als Tarifmerkmal + + + + + + + + + + + PersonArtCd als Tarifmerkmal: N = nat. Person, S = sonst. Person + + + + + + + In Analogie zum OMDS-Datensatz befinden sich die Risikoobjekte als Element in der obersten Produktebene (OMDS Datensatz Element VERTRAG) + + + + + + + + + Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht + + + + + + + + Deprecated: Kann fuer Wechselkennzeichen nicht verwendet werden. Verwende statt dessen Elemente "Kasko". + + + + + + + + + + + + + + Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. + + + + + + + + + + + + Abstrakte Basisklasse für KFZ-Elementarprodukte + + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Haftpflicht + + + + + + + Nur KFZ-Haftpflicht erlaubt + + + + + Versicherungssumme Haftpflicht + + + + + + + + + + + + + Abstrakter Basistyp für die Kasko-Elementarprodukte + + + + + + + Nur KFZ-Teilkasko bzw. KFZ-Vollkasko erlaubt + + + + + + + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Teilkasko + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Vollkasko + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Insassenunfall + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Lenkerunfall + + + + + + + + Typ für das Elementarprodukt KFZ-Assistance + + + + + + + + Typ für eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht + + + + + + + + + + + + Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz + + + + + + + + + Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird + + + + + + + + + + + + Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird + + + + + + + + + + + + Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird + + + + + + + + BonusMalus beim Verband + + + + + Vinkulierungsdaten (deprecated, verwende Sicherstellung) + + + + + + Deprecated, verwende analoge Elemente an Fahrzeug_Type + + + + + + + + + + Response Upselling Alternativen + + + + + + + + Typ des Requestobjekts für eine Kfz-Berechnung + + + + + + + + + + + + Typ des Responseobjekts für eine Kfz-Berechnung + + + + + + + Bei erfolgreicher Berechnung die Details der Berechnung. + + + + + Response für das Upselling, wenn solche Ergebnisse angefordert wurden. + + + + + + + + + Typ des Request für ein Kfz-Offert + + + + + + + + + + + + Typ des Response für ein Kfz-Offert + + + + + + + Bei erfolgreicher Erstellung eines Offerts. + + + + + + + + + + + + + + + Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags + + + + + + + + + + + + Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags + + + + + + + + + + + + Typ des Requestobjekts für eine Antragseinreichung Kfz + + + + + + + Optional die Daten des Antrags, wenn nicht Bezug auf ein vorangegangenes SubmitApplication genommen wird. + + + + + + + + + Typ des Responseobjekts für eine Antragseinreichung Kfz + + + + + + + Hier werden nochmals alle Antragsdaten zur Verfügung gestellt. + + + + + + + + Konkrete Services (Request- und Responseobjekte) Kfz + + + + Requestobjekt für eine Kfz Berechnung + + + + + Response Berechnung Kfz + + + + + Requestobjekt für ein Kfz Offert + + + + + Response Offert Kfz + + + + + Requestobjekt für einen Kfz Antrag + + + + + Response Antrag Kfz + + + + + Requestobjekt fuer die Antragseinreichung Kfz + + + + + Responseobjekt fuer die Antragseinreichung Kfz + + + + + Referenziert auf ein versichertes Fahrzeug über die laufende Nummer innerhalb eines Elementarprodukts. + + + + + Vorversicherungen, Implementierung speziell für Kfz. Alternativ siehe auch allgemeine spartenübergreifende Implementierung cst:VorversicherungenImpl_Type. + + + + + + + + + + + + + + + + + + + + + Type System Insassenunfallversicherung + + + + + + + + + + + + + Type Variante Leihwagen (A, B) + + + + + ohne Leihwagen + + + + + mit Leihwagen + + + + + + + + Type zusätzliche Kfz-Daten; Deprecated, Elemente sind ab + Version 1.11 in Fahrzeug_Type enthalten. + + + + + + + + + + + + + + + + + Fahrzeugzustand als Schlüsselwerte + + + + + Detailierte Fahrzeugzustandsbeschreibung z.B. aus einer Besichtigung + + + + + + + + Standardimplementierung von AWechselkennzeichen_Type + + + + + + + + + + + + + + + + + + + + + Type Fahrgestellnummer FIN + + + + + + + + + Standardimplementierung des AFzZustandBesichtigung_Type + + + + + + + Zustandsbericht liegt als Formular bei bzw. Besichtigung durch externe Stelle veranlasst - muss dann als Attachment mitgeschickt werden. + + + + + Die Art der Besichtigung bzw. Quelle der Zustandsbeschreibung + + + + + + + + + + + + + + + + Type Zustandsbeschreibung + + + + + + + + + + + Type Beschreibung Schäden an Kleinglas + + + + + + + + + Type Schäden am Fahrzeug + + + + + + + + + Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag + + + + + Request um eine Versicherungsbestätigung zu generieren + + + + + + + + Vermittlernummer für welche die VB ausgestellt werden soll. + + + + + Neuanmeldung oder Wiederzulassung + + + + + + + + + + + Optional ein Kennzeichen, auf welches die VB beschränkt sein soll. + + + + + + Optional eine Liste von Fahrzeugen, auf deren Anmeldung die VB beschränkt sein soll. + + + + + + + + + + + + + + + + + + Spezifikation des Versicherungsnehmers + + + + + + Angaben zu gewünschten vorläufigen Deckungen (abseits von Haftpflicht) + + + + + Erweiterungsmöglichkeit für VU-spezifische Daten + + + + + + + + + + Response bei der Generierung einer Versicherungsbestätigung + + + + + + + + + + + + + + + Erweiterungsmöglichkeit für Versicherungsbestaetigung + + + \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kranken.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kranken.xsd new file mode 100644 index 00000000..0f0cc739 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Kranken.xsd @@ -0,0 +1,244 @@ + + + + + + + + Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung + + + + + + + Liste von Produkten + + + + + Möglichkeit Kranken-fremde Bausteine einzugliedern. + + + + + Die Risikodaten der versicherten Personen (als versicherte Interessen), die im Produktbaum über die Lfnr referenziert werden. + + + + + Referenz auf eine Gruppe + + + + + + + + + Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. + + + + + + + Liste der Elementarprodukte + + + + + Selbstbehalt über alle Elementarprodukte einheitlich. + + + + + + + + + Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. + + + + + + + + + + + + + Typ für den Schritt Berechnung + + + + + + + + + + + + Typ für den Schritt Offert-Erzeugung + + + + + + + + + + + + Typ für den Schritt Antrags-Erzeugung + + + + + + + + + + + + + Requestobjekt für die Berechnung Kranken + + + + Typ des Requestobjekts für eine Berechnung Kranken + + + + + + + + + + + + + Responseobjekt für die Berechnung Kranken + + + + Typ des Responseobjekts für eine Kranken-Berechnung + + + + + + + + + + + + + Requestobjekt für die Offerterstellung Kranken + + + + Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts + + + + + + + + + + + + + Responseobjekt für die Offerterstellung Kranken + + + + Type des Responseobjekts für eine Erstellung eines Kranken-Offerts + + + + + + + + + + + + + Requestobjekt für die Antragserzeugung Kranken + + + + Type des Requestobjekts für die Erstellung eines Krankenantrags + + + + + + + + + + + + + Responseobjekt für die Antragserzeugung Kranken + + + + Type des Responseobjekts für die Erstellung eines Krankenantrags + + + + + + + + + + + + + Requestobjekt für die Antragsüberleitung Kranken + + + + Type des Requests, um den Antrag einzureichen + + + + + + + + + + + + + Responseobjekt für die Antragsüberleitung Kranken + + + + Type des Response, um den Antrag einzureichen + + + + + + + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd new file mode 100644 index 00000000..e4f007f5 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd @@ -0,0 +1,335 @@ + + + + + + + + Typ für ein Verkaufsprodukt in der Sparte Leben + + + + + + + + Möglichkeit Zusatzprodukte anderer Sparten einzugliedern + + + + + Die Risikoeigenschaften der versicherten Personen, die im Produktbaum referenziert werden. + + + + + + + + + Typ für ein Produkt in der Sparte Leben. + + + + + + + Liste der Tarife + + + + + + + + + Typ für ein Elementarprodukt in der Sparte Leben. + + + + + + + + + Bei fondsgebundenen Produkten die Vorgabe der gewünschten Fonds. + + + + + Liste von Zusatzbausteinen + + + + + + + + + Typ für eine Zusatzversicherung in der Sparte Leben (unterhalb von Elementarprodukt) + + + + + + + + + Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit + + + + + + + + + + + + Vorgefertigter Typ für eine Zusatzversicherung Erwerbsunfähigkeit + + + + + + + + + + + + Vorgefertigter Typ für eine Praemienuebernahme im Ablebensfall + + + + + + + + + + + + Vorgefertigter Typ für eine Zusatzversicherung bei Unfalltod + + + + + + + + + + + + Vorgefertigter Typ für eine Zusatzversicherung bei Unfallinvaliditaet + + + + + + + + + + + + Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren + + + + + Vorgefertigter Typ für eine Rentenoption + + + + + Abstraktes Element zur Abbildung einer Wartefrist + + + + + Definition einer Versicherungssumme in einem Zusatzbaustein + + + + + + + + + + Typ für den Schritt Berechnung + + + + + + + + + + + + Typ für den Schritt Offert-Erzeugung + + + + + + + + + + + + Typ für den Schritt Antrags-Erzeugung + + + + + + + + + + + + + Typ des Requestobjekts für eine Berechnung Leben + + + + + + + + + + + + Typ des Responseobjekts für eine Leben-Berechnung + + + + + + + + + + + + + Typ des Requestobjekts für eine Erstellung eines Leben-Offerts + + + + + + + + + + + + Type des Responseobjekts für eine Erstellung eines Leben-Offerts + + + + + + + + + + + + Type des Requestobjekts für die Erstellung eines Leben-Antrags + + + + + + + + + + + + Type des Responseobjekts für die Erstellung eines Leben-Antrags + + + + + + + + + + + + Type des Requests, um den Antrag einzureichen + + + + + + + + + + + + Type des Response, um den Antrag einzureichen + + + + + + + + + + + + Requestobjekt für die Berechnung Leben + + + + + Responseobjekt für die Berechnung Leben + + + + + Requestobjekt für die Offerterstellung Leben + + + + + Responseobjekt für die Offerterstellung Leben + + + + + Requestobjekt für die Antragserzeugung Leben + + + + + Responseobjekt für die Antragserzeugung Leben + + + + + Requestobjekt für die Antragsüberleitung Leben + + + + + Responseobjekt für die Antragsüberleitung Leben + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_SachPrivat.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_SachPrivat.xsd new file mode 100644 index 00000000..5c6b57a7 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_SachPrivat.xsd @@ -0,0 +1,683 @@ + + + + + + + + Type für ein versichertes Objekt in der Sach-Privat-Versicherung + + + + + + + + + + + + + + + Type zur Beschreibung einer Risikoadresse + + + + + + + + + + + + + + + + Type zur Risikobeschreibung Haushalt + + + + + + + Wohnfläche in qm + + + + + zweckmäßig, standard, gehoben... + + + + + ständig bewohnt, nicht-ständig bewohnt, unbewohnt + + + + + Erweiterungsmöglichkeit für weitere benötigte Daten, die nicht im Standard enthalten sind. + + + + + + + + + Type zur Risikobeschreibung Gebäude + + + + + + + + + ständig bewohnt, nicht-ständig bewohnt, unbewohnt + + + + + Fertigteil, massiv, Holz... + + + + + hart, nicht-hart + + + + + Ebenerdig, 1 Stockwerk, 2 Stockwerke oder mehr als 2 Stockwerke + + + + + Jahreszahl + + + + + + + wenn Vorschäden vorhanden sind, Typ des Schadens definieren + + + + + zweckmäßig, standard, gehoben... (bei Gebäude oder nur in Haushalt?) + + + + + Eigentumsrechte einer Bank ja / nein + + + + + Gebäude oder doch Ausstattung? + + + + + Erweiterungsmöglichkeit für weitere benötigte Daten, die nicht im Standard enthalten sind. + + + + + + + + + Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten + + + + + Abstrakter Basistyp zur Definition zusätzlicher Gebäudedaten + + + + + Standardbaustein Wintergarten + + + + + + + + + + Strandardbaustein Solarthermie + + + + + + + + + + Standardbaustein Schwimmbad + + + + + + + + + + Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type + + + + + + + + + + Wurden die Gebäude/der Wohnungsinhalt/Keller in den letzten 7 Jahren durch Hochwasser, Überschwemmung, Muren oder Lawinen beschädigt? + + + + + + + + + + Typ für Nebengebäude + + + + + + + + + + + + + + + + + + + + + + + + + Typ für ein Besitz-Produktbündel, welches einem Vertrag entspricht + + + + + + + + + + + + + + Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen + + + + + + + Referenzen auf versicherte Interessen + + + + + + + + + + + Spezifischeres Element für Gebäudeversicherungs-Produkte + + + + + Spezifischeres Element für Gebäudeinhaltversicherungs-Produkte + + + + + Spezifischerer Typ für Gebaeudeversicherungs-Produkte + + + + + + + + + + + + Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte + + + + + + + + + + + + Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen + + + + + + + Referenzen auf versicherte Interessen + + + + + + + + + + + + + + + + Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird + + + + + + + + Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird + + + + + + + + Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. + + + + + + + + + + + + Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. + + + + + + + + + + + + Basiert auf den Werten des SpartenCd_Type, diese Liste ist nur eingeschränkt auf die möglichen Gebäude Sparten Werte dürfen nur nach Aufnahme in den Basis-Typ hinzugefügt werden. + + + + + sonstige + + + + + Assistance + + + + + Betriebs-Unterbrechung + + + + + Einbruchdiebstahl + + + + + Feuer + + + + + Glasbruch + + + + + Haftpflicht + + + + + Leitungswasser + + + + + Maschinen und Geräte + + + + + Sonstige SV + + + + + Sturm + + + + + Tierversicherung + + + + + + + Basiert auf den Werten des SpartenCd_Type, diese Liste ist nur eingeschränkt auf die möglichen Haushalt Sparten Werte dürfen nur nach Aufnahme in den Basis-Typ hinzugefügt werden. + + + + + sonstige + + + + + Assistance + + + + + Betriebs-Unterbrechung + + + + + Einbruchdiebstahl + + + + + Elektronik + + + + + + Elektronik pauschal + + + + + Feuer + + + + + Glasbruch + + + + + Haushalt bzw. Wohnungs-Versicherung + + + + + Haftpflicht + + + + + Leitungswasser + + + + + Maschinen und Geräte + + + + + Sonstige SV + + + + + Sturm + + + + + Tierversicherung + + + + + + + + Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird + + + + + + + + + + + + Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird + + + + + + + + + + + + Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird + + + + + + + + + + + + Response Upselling Sach-Privat + + + + + Typ des Requestobjekts für eine Berechnung Sach-Privat + + + + + + + + + + + + Typ des Responseobjekts für eine Berechnung Sach-Privat + + + + + + + + Response für das Upselling, wenn solche Ergebnisse angefordert wurden. + + + + + + + + + Typ des Requestobjekts für ein Offert Sach-Privat + + + + + + + + + + + + Typ des Responseobjekts für ein Offert Besitz + + + + + + + + + + + + Typ des Requestobjekts für einen Antrag Besitz + + + + + + + + + + + + Typ des Responseobjekts für einen Antrag Besitz + + + + + + + + + + + + Type des Requests, um den Antrag einzureichen + + + + + + + + + + + + Type des Response, um den Antrag einzureichen + + + + + + + + + + + + Request Berechnung Sach-Privat + + + + + Response Berechnung Sach-Privat + + + + + Request Offerterzeugung Sach-Privat + + + + + Response Offerterzeugung Sach-Privat + + + + + Request Antragserzeugung Sach-Privat + + + + + Response Antragserzeugung Sach-Privat + + + + + Request Antragseinreichung Sach-Privat + + + + + Response Antragseinreichung Sach-Privat + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Unfall.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Unfall.xsd new file mode 100644 index 00000000..61e27bfd --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Unfall.xsd @@ -0,0 +1,240 @@ + + + + + + + + Typ für ein Verkaufsprodukt in der Sparte Unfall + + + + + + + Liste von Produktbausteinen der Ebene 2, Produktbausteine von der Klasse "Versicherte Person" + + + + + Möglichkeit Unfall-fremde Bausteine einzugliedern, z.B. Produkte aus Sach-Privat. + + + + + Die Risikodaten der versicherten Personen. Diese werden im Produktbaum auf Ebene 2 referenziert. + + + + + + + + + Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten. + + + + + + + Liste der Elementarprodukte + + + + + Selbstbehalt über alle Elementarprodukte einheitlich. + + + + + + + + + Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet. + + + + + + + + + + + + + Typ für den Schritt Berechnung + + + + + + + + + + + + Typ für den Schritt Offert-Erzeugung + + + + + + + + + + + + Typ für den Schritt Antrags-Erzeugung + + + + + + + + + + + + + Typ des Requestobjekts für eine Berechnung Unfall + + + + + + + + + + + + Typ des Responseobjekts für eine Unfall-Berechnung + + + + + + + + + + + + + Typ des Requestobjekts für eine Erstellung eines Unfall-Offerts + + + + + + + + + + + + Type des Responseobjekts für eine Erstellung eines Unfall-Offerts + + + + + + + + + + + + Type des Requestobjekts für die Erstellung eines Unfallantrags + + + + + + + + + + + + Type des Responseobjekts für die Erstellung eines Unfallantrags + + + + + + + + + + + + Type des Requests, um den Antrag einzureichen + + + + + + + + + + + + Type des Response, um den Antrag einzureichen + + + + + + + + + + + + Requestobjekt für die Berechnung Unfall + + + + + Responseobjekt für die Berechnung Unfall + + + + + Requestobjekt für die Offerterstellung Unfall + + + + + Responseobjekt für die Offerterstellung Unfall + + + + + Requestobjekt für die Antragserzeugung Unfall + + + + + Responseobjekt für die Antragserzeugung Unfall + + + + + Requestobjekt für die Antragsüberleitung Unfall + + + + + Responseobjekt für die Antragsüberleitung Unfall + + + \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON7_Schaden.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON7_Schaden.xsd new file mode 100644 index 00000000..10b42b49 --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON7_Schaden.xsd @@ -0,0 +1,1043 @@ + + + + + + + + Typ für die probeweise Anlage einer Schadenmeldung + + + + + + + + Optional Dokumente die synchron im Request übermittelt werden. + + + + + + + + + Requestobjekt einer Schadenmeldung. Die Schadenmeldung muss alle Elemente beinhalten, so dass eine Schadennummer vergeben werden kann. Dennoch sind die meisten Felder hier optional, da die notwendigen Angaben sich je nach Sparte und Anwendungsbereich des Service unterscheiden können. Die Überprüfung auf fehlende Angaben muss zur Laufzeit erfolgen. + + + + + Anworttyp beim Erzeugen einer Schadenmeldung + + + + + + + Wenn kein Fehler aufgetreten ist, ist dieses Element vorhanden und enthält zumindest eine GeschäftsfallId. + + + + + + + + + Responseobjekt beim Erzeugen einer Schadenmeldung + + + + + Typ für die Durchführung einer Schadenmeldung + + + + + + + + Optional Dokumente die synchron im Request übermittelt werden. + + + + + + + + + Requestobjekt einer Schadenmeldung. Die Schadenmeldung muss alle Elemente beinhalten, so dass eine Schadennummer vergeben werden kann. Dennoch sind die meisten Felder hier optional, da die notwendigen Angaben sich je nach Sparte und Anwendungsbereich des Service unterscheiden können. Die Überprüfung auf fehlende Angaben muss zur Laufzeit erfolgen. + + + + + Anworttyp beim Erzeugen einer Schadenmeldung + + + + + + + Wenn kein Fehler aufgetreten ist, ist dieses Element vorhanden und enthält zumindest eine GeschäftsfallId. + + + + + + + + + Responseobjekt beim Erzeugen einer Schadenmeldung + + + + + Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId + + + + + + + + + + + Schadennummer als omds:Schadennr + + + + + + + + + + Requestobjekt für ein Schadenereignis + + + + + Response-Objekt für Schadenereignisse + + + + + + + + + + + + Rückgabeobjekt für die Abrage von Schäden nach Schadennummer oder GeschäftsfallId + + + + + Request-Type für die Suche nach einem Schaden + + + + + + + + Mögliche Einschränkung auf eine Polizzennr + + + + + Mögliche Einschränkung auf eine Person, die am Schaden beteiligt ist. + + + + + Mögliche Einschränkung auf einen Zeitraum + + + + + + Maximale Anzahl von Ergebnissen, die zurückgegeben werden sollen + + + + + Offset in der Ergebnisliste + + + + + + + + + + + + + + Request für die Suche nach einem Schaden + + + + + Response-Type der Suche nach einem Schaden + + + + + + + + + Response der Suche nach einem Schaden + + + + + Das Ergebnisobjekt der Schadensuche + + + + + Der tatsächliche Offset in der Ergebnisliste + + + + + Tatsächliche Maximalanzahl der Ergebnisse, die der Provider auf eine Anfrage zurück gibt. Beispiel: Consumer fordert 1000 Ergebnisse an, Provider liefert aber maximal 100 zurück. In diesem Fall würde hier 100 zurückgegeben. + + + + + Gesamtzahl der Ergebnisse unter dem verwendeten Filter + + + + + Leichtgewichtige Objektbäume zu den Schadenereignissen + + + + + + Schadenobjekte + + + + GeschäftsfallId der Anlage des Schadenereignis-Objektes + + + + + Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light + + + + + + + Ein Bezug auf eine andere Schadenmeldung bei Mehrfachmeldungen von Schäden. Wird nur im Response von GetClaim bzw. SearchClaim verwendet. + + + + + Ein Bezug auf eine vorangegangene Schadenmeldung bei Mehrfachmeldungen eines Schadenereignisses. Wird nur im Response von GetClaim bzw. SearchClaim verwendet. + + + + + Der Zeitpunkt als Datum-Zeit-Objekt + + + + + Die Beschreibung des Schadenereignis als Text + + + + + + + Moeglichkeit fuer die Erweitung des Standards um eigene Antragsdaten + + + + + Eine oder mehrere Meldungen zur Anfrage + + + + + + + Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. + + + + + + + + Hier wird bewusst nicht das OMDS-Objekt Schadenbeteiligter verwendet, da es bei der Meldung möglich sein muss, die Personendaten anzugeben und nicht nur auf Personen zu referenzieren. + + + + + Ein geschädigtes Interesse kann ein physisches Objekt, z.B. ein Kfz oder eine Immobilie sein. Es kann aber auch ein ideelles Gut sein. Geschädigte Interessen können im Schadenobjekt referenziert werden, müssen aber nicht referenziert werden. + + + + + Referenz auf Dokumente + + + + + Eine Kennung des Schadenmelders, z.B. eine Vermittlernummer im Falle eines Maklers + + + + + + Die Schadenobjekte sind auf Sparten bezogen, z.B. kann ein Schadenereignis zu einem Haftpflicht, einem Kasko-Schaden führen. + + + + + + + + + Typ zur leichtgewichtigen Abbildung von Schadenereignis-Objekten + + + + + + + Die eigentlichen Schadenobjekte, die typischer Weise zeitverzögert vom Versicherungsunternehmen angelegt werden + + + + + + + + + GeschäftfallId der Anlage des spartenbezogenen Schaden-Objektes + + + + + Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) + + + + + + + + + Kann auch längere Beschreibungen enthalten, ist daher nicht identisch mit SchadUrsTxt in OMDS-Datensatz + + + + + + + + + + Es kann entweder eine Vertragsrolle oder eine Schadensrolle verwendet werden. + + + + + + + Optional die Referenz auf ein geschädigtes Interesse. + + + + + + + Moeglichkeit fuer die Erweiterung des Standards um eigene Daten zur Rolle + + + + + + + + + + + + VU-übergreifende aber spartenspezifische Detailinformationen für bestimmte Sparten + + + + + + + + + Typ zur leichtgewichtigen Abbildung von Schadenobjekten + + + + + + + + + + + + + Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light + + + + + + + Seit wann der Bearbeitungsstand erreicht ist + + + + + + + + + + + + Moeglichkeit fuer die Erweitung des Standards um eigene Antragsdaten + + + + + Eine oder mehrere Meldungen zu diesem Objekt + + + + + + + Typ für die Meldung von Personen, die an einem Schaden beteiligt sind + + + + + Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld + + + + + + Vergabe einer laufenden Nummer ist Pflicht. Über die Laufende Nummer kann der Schadenbeteiligte innerhalb dieses Requests (z.B. innerhalb dieser Schadenmeldung) referenziert werden. + + + + + + Eine Erweiterung der Schadenmeldung fuer spezielle Sparten + + + + + Spartenerweiterung der Schadenmeldung für Kfz + + + + + + + + + + + + + + Spartenerweiterung der Schadenmeldung für Unfall + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spartenerweiterung der Schadenmeldung für Kranken + + + + + + + + + + + + + + + + + + + + Typ für den Schadenort + + + + + Im Regelfall gibt es eine Adresse + + + + + In bestimmten Fällen, gibt es keine postalische Adresse, z.B. bei "Kfz-Unfall auf der A1, km 123" oder die postalische Adresse soll ergänzt werden + + + + + + + + Geokoordinaten im Dezimalsystem + + + + Breite, Latitude + + + + + Länge, Longitude + + + + + + Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz + + + + + Eine fortlaufende Nummer, die in einem Request (z.B. einer Schadenmeldung) eindeutig ist und innerhalb dieses Requests referenziert werden kann. + + + + + Eine Beschreibung des Schadens am geschädigten Interesse und ggf. eine Beschreibung des geschädigten Interesses selbst. + + + + + + + + + + + + Erweiterung des geschädigten Interesses zu einem geschädigten Kfz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie + + + + + + + + + Freitext, max. 60 Zeichen + + + + + + + + + + + + + + Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln + + + + + Typ zur Angabe eines Vermittlers als Schadenmelder + + + + + + + + + + + + Bearbeitungsstand Schaden (eine Erweiterung von BearbStandCd im OMDS-Datensatz) + + + + + sonstiges + + + + + gemeldet - Schaden wurde gemeldet, eine Schadennummer ist noch nicht vergeben + + + + + abgeschlossen ohne Zahlung + + + + + Doppelanlage, bzw. irrtümlich angelegt + + + + + erledigt + + + + + im Klagzustand + + + + + offen - zur Bearbeitung angenommen, Schadennummer vergeben, aber noch nicht weiter bearbeitet + + + + + teilweise gezahlt + + + + + Schaden wiedereröffnet / reaktiviert + + + + + Kein Schaden, eine Schadennumer wird nicht vergeben + + + + + + + Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht + + + + Referenz auf eine beteiligte Person + + + + + Zusätzlicher kurzer Text zur Rolle der beteiligten Person + + + + + + + + + + + Die Schadenzuordnung enthält eine VU-spezifische Systematik, mit Hilfe derer die Schadenmeldung automatisch zugeordnet wird. Sie entspricht nicht dem SchadUrsCd aus dem OMDS Datensatz, da dieser allgemein über alle VUs gilt und damit keine ausreichend präzise Zuordnung zulässt. + + + + + Typ für die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind + + + + + + Nicht identisch mit OMDS SchadUrsCd + + + + + + + + + Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind + + + + + Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind + + + + + Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind + + + + + Abstrakter Typ fuer die Erweiterung von Anfragen zu Deckungsauskünften mit Datentypen, die nicht im Standard halten sind + + + + + Abstrakter Typ fuer die Erweiterung des Service zur Belegeinreichung mit Datentypen, die nicht im Standard halten sind + + + + + Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters + + + + + + + + + Natuerliche Person + + + + + + + + Request zum Einholen einer Deckungsauskunft + + + + + + + + Angaben zum Versicherungsnehmer + + + + + Die Polizzennummmer + + + + + Die OMDS VertragsID der zu ersetzenden Polizze + + + + + Angaben zum Versicherten Interesse, z.B. die FIN eines Kfz. + + + + + Ein Code für die Eigenschaft, die abgefragt werden soll. + + + + + + + + + + + Response einer Deckungsauskunft + + + + + + + + Angaben zum Versicherungsnehmer + + + + + Die Polizzennummmer + + + + + Die OMDS VertragsID der zu ersetzenden Polizze + + + + + Angaben zum Versicherten Interesse, z.B. die FIN eines Kfz. + + + + + + + + + + + + + + + + + + + Request zur Einreichung eines Belegs + + + + + + + + Die Polizzennr des Vertrags, auf dessen Grundlage der Betrag erstattet werden soll. + + + + + Optional die OMDS VertragsID der zu ersetzenden Polizze + + + + + Ein Betrag, der erstattet werden soll + + + + + Optional ein Grund oder eine Zuatzinformation als Text + + + + + Die Beschreibung des Zahlwegs. Lastschrift wird hier einfach als Bankverbindung verwendet. + + + + + Ein oder mehrere Dokumente als Beleg + + + + + + + + + + + Response einer Belegeinreichung + + + + + + + + + + Request Schadennachmeldung zur Ergänzung eines bestehenden Schadens- oder Leistungsfalls um zusätzliche Informationen + + + + + + + + + + + + + + Response einer Schadennachmeldung + + + + + + + + + + + + + + Objekt Nachmeldung zu Schadenereignis + + + + + Optional der Bezug zu einer konkreten Rückfrage oder Informationsanforderung der VU + + + + + Im Response optional eine Id für diese Ergänzung zum Schadenereignis + + + + + GeschäftsfallId der Anlage des ursprünglichen Schadenereignis-Objektes + + + + + Moeglichkeit fuer die Erweitung des Standards um eigene Antragsdaten + + + + + + + + Objekt Nachmeldung Schaden + + + + + Der Bezug zu einem bereits existierenden Schadens- oder Leistungsfall. + + + + + Im Response optional eine Id für diese Ergänzung + + + + + Die Polizzennr des Vertrags, auf dessen Grundlage der Betrag erstattet werden soll. + + + + + Optional die OMDS VertragsID des Vertrags + + + + + Kurztext + + + + + Kann auch längere Beschreibungen enthalten + + + + + Optional Dokumente als Beleg + + + + + Moeglichkeit fuer die Erweitung des Standards um VU-spezifische Daten + + + + + diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds_binding.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds_binding.xml new file mode 100644 index 00000000..b723295e --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds_binding.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + Die Liste der zulässigen Kombinationen.

]]>
+
+
+ + + + Die Liste der zulässigen Baustein-Ids.

]]>
+
+
+ + + + Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.

]]>
+
+
+ + + + Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind. + Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden. + Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben.

]]>
+
+
+ + + + Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.

]]>
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + Die Liste der Verträge, die in der Konvertierung behandelt werden sollen.

]]>
+
+
+ + + + Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.

]]>
+
+
+ + + + Die Dokumente, welche der Vermittler für den Response anfordert.

]]>
+
+
+ + + Die Dokumente, welche der Vermittler für den Response anfordert.

]]>
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_11_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/wsdl_binding.xml new file mode 100644 index 00000000..f01dc63d --- /dev/null +++ b/OMDSServiceDefinition/src/main/resources/def/r1_11_0/wsdl_binding.xml @@ -0,0 +1,15 @@ + + + + + true + false + + + + + +